[Python-modules-commits] [django-guardian] branch upstream updated (7b851ba -> 0033bf7)

Brian May bam at moszumanska.debian.org
Sun Jun 25 03:12:48 UTC 2017


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

bam pushed a change to branch upstream
in repository django-guardian.

      from  7b851ba   Import django-guardian_1.4.4.orig.tar.gz
       new  0033bf7   New upstream version 1.4.8

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 +
 .isort.cfg                                         |   4 +
 .travis.yml                                        |  60 +++-----
 AUTHORS                                            |   1 +
 CHANGES                                            |  48 +++++++
 LICENSE                                            |   2 +-
 MANIFEST.in                                        |  10 +-
 PKG-INFO                                           | 118 +++++++++++++++-
 README.rst                                         |  73 ++++++----
 benchmarks/models.py                               |   4 +-
 django_guardian.egg-info/PKG-INFO                  | 118 +++++++++++++++-
 django_guardian.egg-info/SOURCES.txt               |  28 ++--
 django_guardian.egg-info/requires.txt              |   1 -
 docs/api/guardian.mixins.rst                       |   5 +
 docs/conf.py                                       |   7 +-
 docs/configuration.rst                             |  18 +++
 docs/overview.rst                                  |   4 +-
 docs/userguide/admin-integration.rst               |   1 -
 docs/userguide/assign.rst                          |   7 +-
 docs/userguide/custom-user-model.rst               |   2 +-
 docs/userguide/performance.rst                     |   6 +-
 .../articles}/__init__.py                          |   0
 example_project/articles/admin.py                  |  10 ++
 example_project/articles/apps.py                   |   7 +
 .../articles/migrations/0001_initial.py            |  66 +++++++++
 .../articles/migrations/0002_auto_20160622_1050.py |  19 +++
 .../articles/migrations}/__init__.py               |   0
 example_project/articles/models.py                 |  34 +++++
 .../templates/articles/article_confirm_delete.html |  13 ++
 .../templates/articles/article_detail.html         |  28 ++++
 .../articles/templates/articles/article_form.html  |  18 +++
 .../articles/templates/articles/article_list.html  |  25 ++++
 example_project/articles/tests.py                  |  98 +++++++++++++
 example_project/articles/urls.py                   |  18 +++
 example_project/articles/views.py                  |  42 ++++++
 example_project/{ => core}/context_processors.py   |   0
 example_project/core/migrations/0001_initial.py    |  15 +-
 example_project/manage.py                          |   2 +-
 example_project/settings.py                        |  17 ++-
 example_project/templates/base.html                |   3 +-
 example_project/urls.py                            |   2 +-
 guardian/__init__.py                               |  19 +--
 guardian/admin.py                                  |  71 ++++++----
 guardian/apps.py                                   |   3 +-
 guardian/backends.py                               |  19 ++-
 guardian/checks.py                                 |   3 +-
 guardian/compat.py                                 |  56 ++++++--
 guardian/conf/settings.py                          |   5 +
 guardian/core.py                                   |  43 +++---
 guardian/ctypes.py                                 |  16 +++
 guardian/decorators.py                             |  31 ++++-
 guardian/forms.py                                  |   8 +-
 guardian/managers.py                               | 152 ++++++++++++---------
 guardian/migrations/0001_initial.py                |  12 +-
 guardian/mixins.py                                 |  98 +++++++++++--
 guardian/models.py                                 |  29 ++--
 guardian/shortcuts.py                              | 140 +++++++++++--------
 .../admin/guardian/contrib/grappelli/field.html    |   7 -
 .../contrib/grappelli/obj_perms_manage.html        |  30 ++--
 .../contrib/grappelli/obj_perms_manage_group.html  |  29 +++-
 .../contrib/grappelli/obj_perms_manage_user.html   |  29 +++-
 guardian/templatetags/guardian_tags.py             |   5 +-
 guardian/testapp/migrations/0001_initial.py        | 117 +++++++++++-----
 .../testapp/migrations/0002_logentrywithgroup.py   |  13 +-
 .../testapp/migrations/0003_auto_20141124_0729.py  |  30 ----
 .../testapp/migrations/0004_auto_20151112_2209.py  |  36 -----
 .../testapp/migrations/0005_auto_20151217_2344.py  |  22 ---
 .../testapp/migrations/0006_auto_20160221_1054.py  |  30 ----
 .../testapp/migrations/0007_auto_20160309_0245.py  |  46 -------
 guardian/testapp/models.py                         |  25 ++--
 guardian/testapp/tests/templates/dummy404.html     |   1 +
 guardian/testapp/tests/templates/list.html         |   5 +
 guardian/testapp/tests/test_admin.py               |  16 ++-
 guardian/testapp/tests/test_conf.py                |  10 ++
 guardian/testapp/tests/test_core.py                | 105 +++++++++-----
 guardian/testapp/tests/test_custompkmodel.py       |   2 +-
 guardian/testapp/tests/test_decorators.py          |  51 ++++++-
 guardian/testapp/tests/test_direct_rel.py          |  72 ++++++----
 guardian/testapp/tests/test_managers.py            |  21 ++-
 guardian/testapp/tests/test_mixins.py              |  56 +++++++-
 guardian/testapp/tests/test_shortcuts.py           |  51 ++++++-
 guardian/testapp/tests/urls.py                     |   2 +-
 guardian/testapp/testsettings.py                   |  19 ++-
 guardian/utils.py                                  |  44 +++---
 guardian/version.py                                |   4 -
 requirements.txt                                   |   4 +-
 setup.cfg                                          |  13 +-
 setup.py                                           |  18 +--
 tox.ini                                            |  58 ++++----
 89 files changed, 1860 insertions(+), 751 deletions(-)
 create mode 100644 .isort.cfg
 copy {benchmarks => example_project/articles}/__init__.py (100%)
 create mode 100644 example_project/articles/admin.py
 create mode 100644 example_project/articles/apps.py
 create mode 100644 example_project/articles/migrations/0001_initial.py
 create mode 100644 example_project/articles/migrations/0002_auto_20160622_1050.py
 copy {benchmarks => example_project/articles/migrations}/__init__.py (100%)
 create mode 100644 example_project/articles/models.py
 create mode 100644 example_project/articles/templates/articles/article_confirm_delete.html
 create mode 100644 example_project/articles/templates/articles/article_detail.html
 create mode 100644 example_project/articles/templates/articles/article_form.html
 create mode 100644 example_project/articles/templates/articles/article_list.html
 create mode 100644 example_project/articles/tests.py
 create mode 100644 example_project/articles/urls.py
 create mode 100644 example_project/articles/views.py
 rename example_project/{ => core}/context_processors.py (100%)
 create mode 100644 guardian/ctypes.py
 delete mode 100644 guardian/testapp/migrations/0003_auto_20141124_0729.py
 delete mode 100644 guardian/testapp/migrations/0004_auto_20151112_2209.py
 delete mode 100644 guardian/testapp/migrations/0005_auto_20151217_2344.py
 delete mode 100644 guardian/testapp/migrations/0006_auto_20160221_1054.py
 delete mode 100644 guardian/testapp/migrations/0007_auto_20160309_0245.py
 create mode 100644 guardian/testapp/tests/templates/dummy404.html
 create mode 100644 guardian/testapp/tests/templates/list.html
 delete mode 100644 guardian/version.py

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



More information about the Python-modules-commits mailing list