[Python-modules-commits] [django-oauth-toolkit] branch master updated (9ebfdfa -> f1a1c25)

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


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

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

      from  9ebfdfa   Update changelog.
       new  4b5d4f3   Replace CDN URL with a local bootstrap CSS file
       new  e28b5c3   Initialize git-dpm
       new  525ca75   record new upstream branch created by importing django-oauth-toolkit_0.10.0.orig.tar.gz
       new  1f492d0   Import django-oauth-toolkit_0.10.0.orig.tar.gz
       new  e9e48b6   Replace CDN URL with a local bootstrap CSS file
       new  1c4eda6   merge patched into master
       new  c8c8a15   Clean up files to allow two builds in a row.
       new  b901590   Add python(3)-pytest and python(3)-pytest-django to Build-Depends to allow tests to run.
       new  f1a1c25   Update changelog.

The 9 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 ++-
 debian/.git-dpm                                    |   8 +
 debian/changelog                                   |  10 ++
 debian/clean                                       |   8 +
 debian/control                                     |   4 +
 ...e-CDN-URL-with-a-local-bootstrap-CSS-file.patch |  26 +++
 debian/patches/series                              |   2 +-
 debian/patches/use_local_bootstrap.patch           |  19 ---
 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 +++
 .../templates/oauth2_provider/base.html            |   3 +-
 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 ++------------
 73 files changed, 865 insertions(+), 233 deletions(-)
 create mode 100644 debian/.git-dpm
 create mode 100644 debian/clean
 create mode 100644 debian/patches/0001-Replace-CDN-URL-with-a-local-bootstrap-CSS-file.patch
 delete mode 100644 debian/patches/use_local_bootstrap.patch
 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