[Python-modules-commits] [django-oauth-toolkit] branch upstream updated (b9b658c -> 1f492d0)

Michael Fladischer fladi at moszumanska.debian.org
Fri Dec 25 13:53:55 UTC 2015


This is an automated email from the git hooks/post-receive script.

fladi pushed a change to branch upstream
in repository django-oauth-toolkit.

      from  b9b658c   Imported Upstream version 0.9.0
       new  1f492d0   Import django-oauth-toolkit_0.10.0.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 .travis.yml                                        |  24 +--
 AUTHORS                                            |   3 +
 README.rst                                         |  20 ++-
 docs/changelog.rst                                 |  20 ++-
 docs/index.rst                                     |   5 +-
 docs/install.rst                                   |   1 -
 docs/management_commands.rst                       |  20 +++
 docs/rest-framework/permissions.rst                |  15 ++
 docs/settings.rst                                  |  21 ++-
 docs/tutorial/tutorial_01.rst                      |  22 +--
 docs/tutorial/tutorial_03.rst                      |   6 +-
 docs/tutorial/tutorial_04.rst                      |   2 +-
 docs/views/token.rst                               |  15 ++
 docs/views/views.rst                               |   1 +
 oauth2_provider/__init__.py                        |   4 +-
 oauth2_provider/apps.py                            |   6 +
 oauth2_provider/compat.py                          |   6 +
 oauth2_provider/compat_handlers.py                 |   5 +
 oauth2_provider/ext/rest_framework/__init__.py     |   2 +-
 oauth2_provider/ext/rest_framework/permissions.py  |  25 +++
 oauth2_provider/forms.py                           |  13 +-
 oauth2_provider/{ext => management}/__init__.py    |   0
 .../{ext => management/commands}/__init__.py       |   0
 oauth2_provider/management/commands/cleartokens.py |   9 ++
 oauth2_provider/migrations/0001_initial.py         |   1 +
 oauth2_provider/models.py                          |  38 ++++-
 oauth2_provider/oauth2_backends.py                 |  21 ++-
 oauth2_provider/oauth2_validators.py               |   8 +-
 oauth2_provider/settings.py                        |  20 ++-
 .../application_confirm_delete.html                |   2 +-
 .../oauth2_provider/application_detail.html        |   2 +-
 .../oauth2_provider/application_form.html          |   2 +-
 .../oauth2_provider/application_list.html          |   2 +-
 .../application_registration_form.html             |   2 +-
 .../oauth2_provider/authorized-token-delete.html   |   9 ++
 .../oauth2_provider/authorized-tokens.html         |  24 +++
 oauth2_provider/{ext => templatetags}/__init__.py  |   0
 oauth2_provider/templatetags/compat.py             |  10 ++
 oauth2_provider/tests/settings.py                  |   2 +-
 oauth2_provider/tests/test_application_views.py    |  20 +++
 oauth2_provider/tests/test_auth_backends.py        |   2 +-
 oauth2_provider/tests/test_authorization_code.py   |  32 ++++
 oauth2_provider/tests/test_client_credential.py    |   1 +
 oauth2_provider/tests/test_implicit.py             |  21 +++
 oauth2_provider/tests/test_models.py               |  40 +++++
 oauth2_provider/tests/test_oauth2_backends.py      |  35 ++++
 oauth2_provider/tests/test_password.py             |   1 +
 oauth2_provider/tests/test_rest_framework.py       |  51 +++++-
 oauth2_provider/tests/test_scopes.py               |   1 +
 oauth2_provider/tests/test_token_view.py           | 178 +++++++++++++++++++++
 oauth2_provider/tests/urls.py                      |   5 +-
 oauth2_provider/urls.py                            |  14 +-
 oauth2_provider/views/__init__.py                  |   1 +
 oauth2_provider/views/application.py               |  13 +-
 oauth2_provider/views/base.py                      |   8 +-
 oauth2_provider/views/generic.py                   |   4 +-
 oauth2_provider/views/token.py                     |  36 +++++
 requirements/base.txt                              |   7 +-
 requirements/optional.txt                          |   2 +-
 requirements/project.txt                           |   2 +-
 requirements/testing.txt                           |   7 +-
 runtests.py                                        |  10 +-
 setup.py                                           |  14 +-
 tox.ini                                            | 124 ++------------
 65 files changed, 806 insertions(+), 212 deletions(-)
 create mode 100644 docs/management_commands.rst
 create mode 100644 docs/views/token.rst
 create mode 100644 oauth2_provider/apps.py
 create mode 100644 oauth2_provider/compat_handlers.py
 copy oauth2_provider/{ext => management}/__init__.py (100%)
 copy oauth2_provider/{ext => management/commands}/__init__.py (100%)
 create mode 100644 oauth2_provider/management/commands/cleartokens.py
 create mode 100644 oauth2_provider/templates/oauth2_provider/authorized-token-delete.html
 create mode 100644 oauth2_provider/templates/oauth2_provider/authorized-tokens.html
 copy oauth2_provider/{ext => templatetags}/__init__.py (100%)
 create mode 100644 oauth2_provider/templatetags/compat.py
 create mode 100644 oauth2_provider/tests/test_token_view.py
 create mode 100644 oauth2_provider/views/token.py
 mode change 100644 => 100755 runtests.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-oauth-toolkit.git



More information about the Python-modules-commits mailing list