gitextract_g8s7pbgi/ ├── .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 │ │ └── js/ │ │ └── openid-jquery.js │ ├── settings.py │ └── 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 │ ├── 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