├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── docs ├── Makefile ├── api.rst ├── api │ ├── clients.rst │ ├── clients │ │ ├── base.rst │ │ ├── oauth.rst │ │ └── oauth2.rst │ ├── mixins.rst │ ├── signals.rst │ ├── tests.rst │ └── views.rst ├── conf.py ├── contrib │ ├── facebook.rst │ ├── foursquare.rst │ ├── github.rst │ ├── linkedin.rst │ ├── openid.rst │ ├── tumblr.rst │ └── twitter.rst ├── index.rst ├── installation.rst ├── services.rst ├── settings.rst ├── socialregistration.clients.rst ├── socialregistration.contrib.facebook.rst ├── socialregistration.contrib.foursquare.rst ├── socialregistration.contrib.github.rst ├── socialregistration.contrib.linkedin.rst ├── socialregistration.contrib.openid.rst ├── socialregistration.contrib.tumblr.rst ├── socialregistration.contrib.twitter.rst ├── socialregistration.rst └── socialregistration.templatetags.rst ├── manage.py ├── readthedocs.txt ├── requirements.txt ├── setup.py ├── socialregistration ├── __init__.py ├── auth.py ├── clients │ ├── __init__.py │ └── oauth.py ├── compat │ ├── __init__.py │ └── urls.py ├── contrib │ ├── __init__.py │ ├── facebook │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── middleware.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── facebook │ │ │ │ ├── facebook.html │ │ │ │ └── facebook_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── facebook.py │ │ │ └── facebook_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── foursquare │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── foursquare │ │ │ │ ├── foursquare.html │ │ │ │ └── foursquare_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── foursquare.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── github │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── github │ │ │ │ ├── github.html │ │ │ │ └── github_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── github.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── google │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── google │ │ │ │ ├── google.html │ │ │ │ └── google_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── google.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── instagram │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── instagram │ │ │ │ ├── instagram.html │ │ │ │ └── instagram_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── instagram.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── linkedin │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── linkedin │ │ │ │ ├── linkedin.html │ │ │ │ └── linkedin_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── linkedin.py │ │ │ └── linkedin_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── openid │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── storage.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── openid │ │ │ │ ├── form.html │ │ │ │ └── openid.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── openid.py │ │ │ └── openid_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── tumblr │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ │ └── socialregistration │ │ │ │ └── tumblr │ │ │ │ ├── tumblr.html │ │ │ │ └── tumblr_button.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── tumblr.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── twitter │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── models.py │ │ ├── templates │ │ └── socialregistration │ │ │ └── twitter │ │ │ ├── twitter.html │ │ │ └── twitter_button.html │ │ ├── templatetags │ │ ├── __init__.py │ │ ├── twitter.py │ │ └── twitter_tags.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── forms.py ├── middleware.py ├── mixins.py ├── models.py ├── settings.py ├── signals.py ├── templates │ └── socialregistration │ │ ├── setup.error.html │ │ └── setup.html ├── templatetags │ └── __init__.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── test.sh ├── tests ├── __init__.py ├── app │ ├── __init__.py │ ├── fixtures │ │ └── initial_data.json │ ├── models.py │ ├── tests.py │ └── views.py ├── settings.py ├── templates │ ├── index.html │ └── socialregistration │ │ └── openid_form.html └── urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- 1 | API 2 | === 3 | 4 | .. toctree:: 5 | :glob: 6 | 7 | api/* -------------------------------------------------------------------------------- /docs/api/clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/clients.rst -------------------------------------------------------------------------------- /docs/api/clients/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/clients/base.rst -------------------------------------------------------------------------------- /docs/api/clients/oauth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/clients/oauth.rst -------------------------------------------------------------------------------- /docs/api/clients/oauth2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/clients/oauth2.rst -------------------------------------------------------------------------------- /docs/api/mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/mixins.rst -------------------------------------------------------------------------------- /docs/api/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/signals.rst -------------------------------------------------------------------------------- /docs/api/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/tests.rst -------------------------------------------------------------------------------- /docs/api/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/api/views.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contrib/facebook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/facebook.rst -------------------------------------------------------------------------------- /docs/contrib/foursquare.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/foursquare.rst -------------------------------------------------------------------------------- /docs/contrib/github.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/github.rst -------------------------------------------------------------------------------- /docs/contrib/linkedin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/linkedin.rst -------------------------------------------------------------------------------- /docs/contrib/openid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/openid.rst -------------------------------------------------------------------------------- /docs/contrib/tumblr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/tumblr.rst -------------------------------------------------------------------------------- /docs/contrib/twitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/contrib/twitter.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/services.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/socialregistration.clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.clients.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.facebook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.facebook.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.foursquare.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.foursquare.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.github.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.github.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.linkedin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.linkedin.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.openid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.openid.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.tumblr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.tumblr.rst -------------------------------------------------------------------------------- /docs/socialregistration.contrib.twitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.contrib.twitter.rst -------------------------------------------------------------------------------- /docs/socialregistration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.rst -------------------------------------------------------------------------------- /docs/socialregistration.templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/docs/socialregistration.templatetags.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/manage.py -------------------------------------------------------------------------------- /readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/readthedocs.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/setup.py -------------------------------------------------------------------------------- /socialregistration/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.10' 2 | -------------------------------------------------------------------------------- /socialregistration/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/auth.py -------------------------------------------------------------------------------- /socialregistration/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/clients/__init__.py -------------------------------------------------------------------------------- /socialregistration/clients/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/clients/oauth.py -------------------------------------------------------------------------------- /socialregistration/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/compat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/compat/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/middleware.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/templates/socialregistration/facebook/facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/templates/socialregistration/facebook/facebook.html -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/templates/socialregistration/facebook/facebook_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/templates/socialregistration/facebook/facebook_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/templatetags/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/templatetags/facebook.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/templatetags/facebook_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/templatetags/facebook_tags.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/facebook/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/facebook/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/templates/socialregistration/foursquare/foursquare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/templates/socialregistration/foursquare/foursquare.html -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/templates/socialregistration/foursquare/foursquare_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/templates/socialregistration/foursquare/foursquare_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/templatetags/foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/templatetags/foursquare.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/foursquare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/foursquare/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/github/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/templates/socialregistration/github/github.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/templates/socialregistration/github/github.html -------------------------------------------------------------------------------- /socialregistration/contrib/github/templates/socialregistration/github/github_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/templates/socialregistration/github/github_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/github/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/github/templatetags/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/templatetags/github.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/github/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/github/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/google/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/templates/socialregistration/google/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/templates/socialregistration/google/google.html -------------------------------------------------------------------------------- /socialregistration/contrib/google/templates/socialregistration/google/google_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/templates/socialregistration/google/google_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/google/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/google/templatetags/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/templatetags/google.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/google/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/google/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/google/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/templates/socialregistration/instagram/instagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/templates/socialregistration/instagram/instagram.html -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/templates/socialregistration/instagram/instagram_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/templates/socialregistration/instagram/instagram_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/templatetags/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/templatetags/instagram.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/instagram/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/instagram/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/templates/socialregistration/linkedin/linkedin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/templates/socialregistration/linkedin/linkedin.html -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/templates/socialregistration/linkedin/linkedin_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/templates/socialregistration/linkedin/linkedin_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/templatetags/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/templatetags/linkedin.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/templatetags/linkedin_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/templatetags/linkedin_tags.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/linkedin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/linkedin/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/openid/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/storage.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/templates/socialregistration/openid/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/templates/socialregistration/openid/form.html -------------------------------------------------------------------------------- /socialregistration/contrib/openid/templates/socialregistration/openid/openid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/templates/socialregistration/openid/openid.html -------------------------------------------------------------------------------- /socialregistration/contrib/openid/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/openid/templatetags/openid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/templatetags/openid.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/templatetags/openid_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/templatetags/openid_tags.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/openid/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/openid/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/templates/socialregistration/tumblr/tumblr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/templates/socialregistration/tumblr/tumblr.html -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/templates/socialregistration/tumblr/tumblr_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/templates/socialregistration/tumblr/tumblr_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/templatetags/tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/templatetags/tumblr.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/tumblr/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/tumblr/views.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/admin.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/auth.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/client.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/models.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/templates/socialregistration/twitter/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/templates/socialregistration/twitter/twitter.html -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/templates/socialregistration/twitter/twitter_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/templates/socialregistration/twitter/twitter_button.html -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/templatetags/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/templatetags/twitter.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/templatetags/twitter_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/templatetags/twitter_tags.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/tests.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/urls.py -------------------------------------------------------------------------------- /socialregistration/contrib/twitter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/contrib/twitter/views.py -------------------------------------------------------------------------------- /socialregistration/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/forms.py -------------------------------------------------------------------------------- /socialregistration/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/middleware.py -------------------------------------------------------------------------------- /socialregistration/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/mixins.py -------------------------------------------------------------------------------- /socialregistration/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socialregistration/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/settings.py -------------------------------------------------------------------------------- /socialregistration/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/signals.py -------------------------------------------------------------------------------- /socialregistration/templates/socialregistration/setup.error.html: -------------------------------------------------------------------------------- 1 | {{ error }} 2 | -------------------------------------------------------------------------------- /socialregistration/templates/socialregistration/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/templates/socialregistration/setup.html -------------------------------------------------------------------------------- /socialregistration/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/templatetags/__init__.py -------------------------------------------------------------------------------- /socialregistration/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/tests.py -------------------------------------------------------------------------------- /socialregistration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/urls.py -------------------------------------------------------------------------------- /socialregistration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/utils.py -------------------------------------------------------------------------------- /socialregistration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/socialregistration/views.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/app/fixtures/initial_data.json -------------------------------------------------------------------------------- /tests/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/app/models.py -------------------------------------------------------------------------------- /tests/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/app/tests.py -------------------------------------------------------------------------------- /tests/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/app/views.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/templates/index.html -------------------------------------------------------------------------------- /tests/templates/socialregistration/openid_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/templates/socialregistration/openid_form.html -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashingpumpkin/django-socialregistration/HEAD/tox.ini --------------------------------------------------------------------------------