├── .gitignore ├── AUTHORS ├── LICENSE ├── README.rst ├── example_project ├── LICENSE ├── __init__.py ├── commentor │ ├── __init__.py │ ├── models.py │ ├── templates │ │ └── commentor │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── example │ ├── README │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── templates │ │ ├── comments │ │ │ └── example │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ └── example │ │ │ ├── post_detail.html │ │ │ └── post_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── example_comments │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── localsettings.example.py ├── manage.py ├── media │ ├── css │ │ ├── openid.css │ │ └── socialauth.css │ ├── images │ │ ├── aol.gif │ │ ├── blogger.ico │ │ ├── claimid.ico │ │ ├── facebook.gif │ │ ├── flickr.ico │ │ ├── google.gif │ │ ├── linkedin.jpg │ │ ├── livejournal.ico │ │ ├── myopenid.ico │ │ ├── openid-inputicon.gif │ │ ├── openid.gif │ │ ├── technorati.ico │ │ ├── twitter.png │ │ ├── verisign.ico │ │ ├── vidoop.ico │ │ ├── wordpress.ico │ │ └── yahoo.gif │ └── js │ │ ├── jquery-1.2.6.min.js │ │ └── openid-jquery.js ├── openid_consumer ├── settings.py ├── socialauth └── urls.py ├── ez_setup.py ├── openid_consumer ├── __init__.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── sl │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── middleware.py ├── models.py ├── templates │ └── openid_consumer │ │ ├── failure.html │ │ ├── openid_consumer_base.html │ │ └── signin.html ├── util.py └── views.py ├── requirements.txt ├── setup.py └── socialauth ├── __init__.py ├── admin.py ├── auth_backends.py ├── context_processors.py ├── forms.py ├── lib ├── __init__.py ├── facebook.py ├── foursquare.py ├── github.py ├── linkedin.py ├── oauth1.py ├── oauth2.py ├── oauthgoogle.py ├── oauthtwitter.py ├── oauthtwitter2.py ├── oauthyahoo.py └── twitter.py ├── models.py ├── templates ├── openid │ └── index.html └── socialauth │ ├── base.html │ ├── editprofile.html │ ├── login_page.html │ ├── signin_complete.html │ ├── socialauth_base.html │ └── xd_receiver.htm ├── templatetags ├── __init__.py └── socialauth_tags.py ├── test_data.py.example ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/README.rst -------------------------------------------------------------------------------- /example_project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/LICENSE -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/commentor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/commentor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/commentor/models.py -------------------------------------------------------------------------------- /example_project/commentor/templates/commentor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/commentor/templates/commentor/index.html -------------------------------------------------------------------------------- /example_project/commentor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/commentor/tests.py -------------------------------------------------------------------------------- /example_project/commentor/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/commentor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/commentor/views.py -------------------------------------------------------------------------------- /example_project/example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/README -------------------------------------------------------------------------------- /example_project/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/admin.py -------------------------------------------------------------------------------- /example_project/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/models.py -------------------------------------------------------------------------------- /example_project/example/templates/comments/example/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/templates/comments/example/form.html -------------------------------------------------------------------------------- /example_project/example/templates/comments/example/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/templates/comments/example/list.html -------------------------------------------------------------------------------- /example_project/example/templates/example/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/templates/example/post_detail.html -------------------------------------------------------------------------------- /example_project/example/templates/example/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/templates/example/post_list.html -------------------------------------------------------------------------------- /example_project/example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/tests.py -------------------------------------------------------------------------------- /example_project/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/urls.py -------------------------------------------------------------------------------- /example_project/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example/views.py -------------------------------------------------------------------------------- /example_project/example_comments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example_comments/__init__.py -------------------------------------------------------------------------------- /example_project/example_comments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example_comments/models.py -------------------------------------------------------------------------------- /example_project/example_comments/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example_comments/tests.py -------------------------------------------------------------------------------- /example_project/example_comments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/example_comments/views.py -------------------------------------------------------------------------------- /example_project/localsettings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/localsettings.example.py -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/media/css/openid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/css/openid.css -------------------------------------------------------------------------------- /example_project/media/css/socialauth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/css/socialauth.css -------------------------------------------------------------------------------- /example_project/media/images/aol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/aol.gif -------------------------------------------------------------------------------- /example_project/media/images/blogger.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/blogger.ico -------------------------------------------------------------------------------- /example_project/media/images/claimid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/claimid.ico -------------------------------------------------------------------------------- /example_project/media/images/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/facebook.gif -------------------------------------------------------------------------------- /example_project/media/images/flickr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/flickr.ico -------------------------------------------------------------------------------- /example_project/media/images/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/google.gif -------------------------------------------------------------------------------- /example_project/media/images/linkedin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/linkedin.jpg -------------------------------------------------------------------------------- /example_project/media/images/livejournal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/livejournal.ico -------------------------------------------------------------------------------- /example_project/media/images/myopenid.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/myopenid.ico -------------------------------------------------------------------------------- /example_project/media/images/openid-inputicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/openid-inputicon.gif -------------------------------------------------------------------------------- /example_project/media/images/openid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/openid.gif -------------------------------------------------------------------------------- /example_project/media/images/technorati.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/technorati.ico -------------------------------------------------------------------------------- /example_project/media/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/twitter.png -------------------------------------------------------------------------------- /example_project/media/images/verisign.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/verisign.ico -------------------------------------------------------------------------------- /example_project/media/images/vidoop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/vidoop.ico -------------------------------------------------------------------------------- /example_project/media/images/wordpress.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/wordpress.ico -------------------------------------------------------------------------------- /example_project/media/images/yahoo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/images/yahoo.gif -------------------------------------------------------------------------------- /example_project/media/js/jquery-1.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/js/jquery-1.2.6.min.js -------------------------------------------------------------------------------- /example_project/media/js/openid-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/media/js/openid-jquery.js -------------------------------------------------------------------------------- /example_project/openid_consumer: -------------------------------------------------------------------------------- 1 | /home/tuxcanfly/Work/Django-Socialauth/openid_consumer -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/socialauth: -------------------------------------------------------------------------------- 1 | /home/tuxcanfly/Work/Django-Socialauth/socialauth -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/ez_setup.py -------------------------------------------------------------------------------- /openid_consumer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openid_consumer/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openid_consumer/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openid_consumer/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /openid_consumer/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /openid_consumer/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/middleware.py -------------------------------------------------------------------------------- /openid_consumer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/models.py -------------------------------------------------------------------------------- /openid_consumer/templates/openid_consumer/failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/templates/openid_consumer/failure.html -------------------------------------------------------------------------------- /openid_consumer/templates/openid_consumer/openid_consumer_base.html: -------------------------------------------------------------------------------- 1 | {% extends 'socialauth/base.html' %} 2 | -------------------------------------------------------------------------------- /openid_consumer/templates/openid_consumer/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/templates/openid_consumer/signin.html -------------------------------------------------------------------------------- /openid_consumer/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/util.py -------------------------------------------------------------------------------- /openid_consumer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/openid_consumer/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/setup.py -------------------------------------------------------------------------------- /socialauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialauth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/admin.py -------------------------------------------------------------------------------- /socialauth/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/auth_backends.py -------------------------------------------------------------------------------- /socialauth/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/context_processors.py -------------------------------------------------------------------------------- /socialauth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/forms.py -------------------------------------------------------------------------------- /socialauth/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialauth/lib/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/facebook.py -------------------------------------------------------------------------------- /socialauth/lib/foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/foursquare.py -------------------------------------------------------------------------------- /socialauth/lib/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/github.py -------------------------------------------------------------------------------- /socialauth/lib/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/linkedin.py -------------------------------------------------------------------------------- /socialauth/lib/oauth1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauth1.py -------------------------------------------------------------------------------- /socialauth/lib/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauth2.py -------------------------------------------------------------------------------- /socialauth/lib/oauthgoogle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauthgoogle.py -------------------------------------------------------------------------------- /socialauth/lib/oauthtwitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauthtwitter.py -------------------------------------------------------------------------------- /socialauth/lib/oauthtwitter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauthtwitter2.py -------------------------------------------------------------------------------- /socialauth/lib/oauthyahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/oauthyahoo.py -------------------------------------------------------------------------------- /socialauth/lib/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/lib/twitter.py -------------------------------------------------------------------------------- /socialauth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/models.py -------------------------------------------------------------------------------- /socialauth/templates/openid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/openid/index.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/base.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/editprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/editprofile.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/login_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/login_page.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/signin_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/signin_complete.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/socialauth_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/socialauth_base.html -------------------------------------------------------------------------------- /socialauth/templates/socialauth/xd_receiver.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templates/socialauth/xd_receiver.htm -------------------------------------------------------------------------------- /socialauth/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialauth/templatetags/socialauth_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/templatetags/socialauth_tags.py -------------------------------------------------------------------------------- /socialauth/test_data.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/test_data.py.example -------------------------------------------------------------------------------- /socialauth/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/tests.py -------------------------------------------------------------------------------- /socialauth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/urls.py -------------------------------------------------------------------------------- /socialauth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/Django-Socialauth/HEAD/socialauth/views.py --------------------------------------------------------------------------------