[Python-modules-commits] [python-social-auth] 02/08: Merge tag 'upstream/0.2.19'
Tiago Ilieve
myhro-guest at moszumanska.debian.org
Tue May 17 05:06:10 UTC 2016
This is an automated email from the git hooks/post-receive script.
myhro-guest pushed a commit to branch master
in repository python-social-auth.
commit 693b9f1c8186f128f3f4582d16cbba938301516d
Merge: 3644f64 f7f85a4
Author: Tiago Ilieve <tiago.myhro at gmail.com>
Date: Fri May 13 03:23:51 2016 -0300
Merge tag 'upstream/0.2.19'
Upstream version 0.2.19
Conflicts:
.gitignore
.travis.yml
Changelog
MANIFEST.in
README.rst
docs/backends/github_enterprise.rst
docs/backends/google.rst
docs/backends/index.rst
docs/configuration/django.rst
docs/configuration/settings.rst
docs/intro.rst
docs/logging_out.rst
docs/use_cases.rst
requirements-python3.txt
requirements.txt
setup.cfg
setup.py
social/__init__.py
social/apps/django_app/default/migrations/0001_initial.py
social/apps/django_app/default/migrations/0003_alter_email_max_length.py
social/apps/django_app/default/models.py
social/apps/django_app/urls.py
social/backends/azuread.py
social/backends/base.py
social/backends/evernote.py
social/backends/open_id.py
social/backends/salesforce.py
social/backends/saml.py
social/backends/weibo.py
social/backends/weixin.py
social/pipeline/user.py
social/tests/backends/open_id.py
social/tests/backends/test_evernote.py
social/tests/backends/test_facebook.py
social/tests/backends/test_saml.py
social/utils.py
tox.ini
.gitignore | 5 +
.travis.yml | 22 +-
CHANGELOG.md | 979 +++++
Changelog | 3893 --------------------
MANIFEST.in | 2 +-
README.rst | 10 +-
docs/backends/arcgis.rst | 25 +
docs/backends/drip.rst | 14 +
docs/backends/fitbit.rst | 43 +-
docs/backends/github_enterprise.rst | 6 +-
docs/backends/google.rst | 2 +-
docs/backends/index.rst | 7 +
docs/backends/instagram.rst | 8 +
docs/backends/itembase.rst | 51 +
docs/backends/justgiving.rst | 23 +
docs/backends/naver.rst | 27 +
docs/backends/ngpvan_actionid.rst | 36 +
docs/backends/odnoklassnikiru.rst | 8 +-
docs/backends/pinterest.rst | 29 +
docs/backends/pixelpin.rst | 7 +-
docs/backends/qq.rst | 5 +
docs/configuration/django.rst | 9 +-
docs/configuration/index.rst | 4 +-
docs/configuration/settings.rst | 31 +-
docs/exceptions.rst | 3 +
docs/index.rst | 2 +-
docs/intro.rst | 8 +-
docs/logging_out.rst | 10 +-
docs/pipeline.rst | 18 +-
docs/strategies.rst | 2 +-
docs/thanks.rst | 2 +
docs/use_cases.rst | 15 +-
.../cherrypy_example/local_settings.py.template | 2 +-
examples/django_example/example/settings.py | 3 +-
examples/django_me_example/example/settings.py | 2 +-
examples/flask_example/settings.py | 2 +-
examples/flask_me_example/settings.py | 2 +-
examples/pyramid_example/example/settings.py | 2 +-
examples/tornado_example/settings.py | 2 +-
examples/webpy_example/app.py | 2 +-
requirements-python3.txt | 12 +-
requirements.txt | 12 +-
run_tox.sh | 12 +
setup.cfg | 2 +-
setup.py | 1 -
social/__init__.py | 2 +-
social/apps/django_app/default/fields.py | 7 +-
.../django_app/default/migrations/0001_initial.py | 37 +-
.../migrations/0003_alter_email_max_length.py | 8 +-
.../default/migrations/0004_auto_20160423_0400.py | 20 +
social/apps/django_app/default/models.py | 3 +-
social/apps/django_app/urls.py | 19 +-
social/apps/pyramid_app/models.py | 2 +-
social/apps/tornado_app/routes.py | 2 +-
social/backends/amazon.py | 2 +-
social/backends/arcgis.py | 33 +
social/backends/azuread.py | 6 +-
social/backends/base.py | 4 +-
social/backends/classlink.py | 44 +
social/backends/deezer.py | 49 +
social/backends/drip.py | 25 +
social/backends/evernote.py | 4 +-
social/backends/facebook.py | 8 +-
social/backends/fitbit.py | 45 +-
social/backends/instagram.py | 20 +-
social/backends/itembase.py | 85 +
social/backends/justgiving.py | 56 +
social/backends/naver.py | 59 +
social/backends/ngpvan.py | 66 +
social/backends/oauth.py | 4 +-
social/backends/odnoklassniki.py | 16 +-
social/backends/open_id.py | 33 +-
social/backends/pinterest.py | 46 +
social/backends/pocket.py | 4 +-
social/backends/qq.py | 19 +-
social/backends/salesforce.py | 2 +-
social/backends/saml.py | 11 +-
social/backends/shopify.py | 1 +
social/backends/spotify.py | 3 +-
social/backends/twilio.py | 2 +-
social/backends/twitter.py | 3 +-
social/backends/vk.py | 3 -
social/backends/weibo.py | 2 +-
social/backends/weixin.py | 2 +-
social/backends/yandex.py | 4 +-
social/exceptions.py | 4 +
social/pipeline/__init__.py | 2 +-
social/pipeline/user.py | 5 +-
social/storage/base.py | 12 +-
social/storage/sqlalchemy_orm.py | 3 +-
social/tests/backends/open_id.py | 25 +-
social/tests/backends/test_arcgis.py | 29 +
social/tests/backends/test_deezer.py | 36 +
social/tests/backends/test_drip.py | 29 +
social/tests/backends/test_evernote.py | 6 +-
social/tests/backends/test_facebook.py | 24 +-
social/tests/backends/test_fitbit.py | 2 +-
social/tests/backends/test_itembase.py | 45 +
social/tests/backends/test_naver.py | 41 +
social/tests/backends/test_ngpvan.py | 196 +
social/tests/backends/test_pinterest.py | 49 +
social/tests/backends/test_saml.py | 10 +-
social/tests/backends/test_spotify.py | 34 +
social/tests/models.py | 9 +-
social/tests/requirements-pypy.txt | 8 +
social/utils.py | 4 +-
tox.ini | 5 +-
107 files changed, 2589 insertions(+), 4112 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-social-auth.git
More information about the Python-modules-commits
mailing list