[Python-modules-commits] [django-guardian] branch master updated (421899f -> 4fa194f)

Brian May bam at moszumanska.debian.org
Sun Apr 3 01:55:20 UTC 2016


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

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

      from  421899f   Fixed homepage (https)
       new  c098b9d   record new upstream branch created by importing django-guardian_1.4.3.orig.tar.gz
       new  1bd34f4   Import django-guardian_1.4.3.orig.tar.gz
       new  1c3eaf5   Append uncompressed JavaScript libraries
       new  2e72565   Remove nonlocal image for Travis-ci.
       new  16c2fc5   merge patched into master
       new  4fa194f   New changelog

The 6 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                                         |   2 +
 .travis.yml                                        |  72 ++--
 CHANGES                                            |  36 +-
 MANIFEST.in                                        |  31 +-
 PKG-INFO                                           |   4 +-
 README.rst                                         |   4 -
 VERSION.txt                                        |   1 -
 {guardian/migrations => benchmarks}/__init__.py    |   0
 benchmarks/models.py                               |  19 +
 benchmarks/run_benchmarks.py                       | 190 ++++++++++
 benchmarks/settings.py                             |  30 ++
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   8 +-
 ...-Append-uncompressed-JavaScript-libraries.patch |   2 +-
 .../0002-Remove-nonlocal-image-for-Travis-ci.patch |  14 +-
 debian/patches/0003-Use-local-js-files.patch       |  22 --
 debian/patches/series                              |   1 -
 django_guardian.egg-info/PKG-INFO                  |   4 +-
 django_guardian.egg-info/SOURCES.txt               |  65 ++--
 docs/__pycache__/exts.cpython-33.pyc               | Bin 952 -> 0 bytes
 docs/__pycache__/exts.cpython-34.pyc               | Bin 791 -> 0 bytes
 docs/__pycache__/exts.cpython-35.pyc               | Bin 791 -> 0 bytes
 docs/api/guardian.shortcuts.rst                    |  16 +
 docs/conf.py                                       |  40 +--
 docs/configuration.rst                             |  34 +-
 docs/exts.py                                       |  49 ++-
 docs/exts.pyc                                      | Bin 922 -> 0 bytes
 docs/theme/rtd_theme/breadcrumbs.html              |  11 -
 docs/theme/rtd_theme/footer.html                   |  16 -
 docs/theme/rtd_theme/layout.html                   | 137 -------
 docs/theme/rtd_theme/layout_old.html               | 205 -----------
 docs/theme/rtd_theme/sass/_badge.sass              |  84 -----
 .../rtd_theme/sass/_badge_font_awesome_mini.sass   |  53 ---
 docs/theme/rtd_theme/sass/_breadcrumbs.sass        |  25 --
 docs/theme/rtd_theme/sass/_nav.sass                | 260 --------------
 docs/theme/rtd_theme/sass/badge_only.sass          |   9 -
 docs/theme/rtd_theme/sass/config.rb                |  38 --
 docs/theme/rtd_theme/sass/theme.sass               |  57 ---
 docs/theme/rtd_theme/search.html                   |  50 ---
 docs/theme/rtd_theme/searchbox.html                |   5 -
 docs/theme/rtd_theme/static/badge_only.css         |   1 -
 .../rtd_theme/static/font/fontawesome_webfont.eot  | Bin 37405 -> 0 bytes
 .../rtd_theme/static/font/fontawesome_webfont.svg  | 399 ---------------------
 .../rtd_theme/static/font/fontawesome_webfont.ttf  | Bin 79076 -> 0 bytes
 .../rtd_theme/static/font/fontawesome_webfont.woff | Bin 43572 -> 0 bytes
 docs/theme/rtd_theme/static/theme.css              |   1 -
 docs/theme/rtd_theme/static/theme.js               |  16 -
 docs/theme/rtd_theme/theme.conf                    |   7 -
 docs/theme/rtd_theme/versions.html                 |  38 --
 docs/userguide/assign.rst                          |   4 +-
 docs/userguide/check.rst                           |   8 +
 docs/userguide/example_project.rst                 |  13 +-
 docs/userguide/performance.rst                     |  30 ++
 .../migrations => example_project}/__init__.py     |   0
 example_project/context_processors.py              |   5 +
 .../core}/__init__.py                              |   0
 example_project/core/admin.py                      |   5 +
 example_project/core/migrations/0001_initial.py    |  57 +++
 .../core}/migrations/__init__.py                   |   0
 example_project/core/models.py                     |  14 +
 example_project/manage.py                          |  17 +
 .../posts}/__init__.py                             |   0
 example_project/posts/admin.py                     |  15 +
 example_project/posts/migrations/0001_initial.py   |  29 ++
 .../posts}/migrations/__init__.py                  |   0
 example_project/posts/models.py                    |  21 ++
 .../posts/templates/posts/post_detail.html         |  41 +++
 .../posts/templates/posts/post_list.html           |  36 ++
 example_project/posts/urls.py                      |   8 +
 example_project/posts/views.py                     |  29 ++
 example_project/requirements.txt                   |   6 +
 example_project/settings.py                        | 102 ++++++
 example_project/static/css/bootstrap.min.css       |   9 +
 .../static/img/glyphicons-halflings-white.png      | Bin 0 -> 8777 bytes
 .../static/img/glyphicons-halflings.png            | Bin 0 -> 12799 bytes
 example_project/static/js/bootstrap.min.js         |   6 +
 example_project/templates/403.html                 |  17 +
 example_project/templates/404.html                 |  18 +
 example_project/templates/500.html                 |  16 +
 example_project/templates/base.html                |  58 +++
 example_project/templates/home.html                |  15 +
 example_project/urls.py                            |  22 ++
 extras.py                                          |  14 +-
 guardian/__init__.py                               |  21 +-
 guardian/admin.py                                  |  61 ++--
 guardian/backends.py                               |  13 +-
 guardian/checks.py                                 |   4 -
 guardian/compat.py                                 |  36 +-
 guardian/conf/__init__.py                          |   1 -
 guardian/conf/settings.py                          |  20 +-
 guardian/core.py                                   | 213 ++++++++---
 guardian/decorators.py                             |  20 +-
 guardian/exceptions.py                             |   5 +-
 guardian/forms.py                                  |  10 +-
 guardian/management/__init__.py                    |  11 +-
 guardian/management/commands/__init__.py           |   1 -
 .../management/commands/clean_orphan_obj_perms.py  |   9 +-
 guardian/managers.py                               |  12 +-
 guardian/migrations/0001_initial.py                |  12 +-
 guardian/mixins.py                                 |  40 ++-
 guardian/models.py                                 |  11 +-
 guardian/shortcuts.py                              | 159 +++++---
 guardian/templatetags/__init__.py                  |   1 -
 guardian/templatetags/guardian_tags.py             |   9 +-
 guardian/testapp/__init__.py                       |   1 -
 .../testapp/migrations/0006_auto_20160221_1054.py  |  30 ++
 .../testapp/migrations/0007_auto_20160309_0245.py  |  46 +++
 guardian/testapp/models.py                         |  29 +-
 guardian/testapp/tests/conf.py                     |  16 +-
 guardian/testapp/tests/test_admin.py               | 115 +++---
 guardian/testapp/tests/test_checks.py              |   9 +-
 guardian/testapp/tests/test_conf.py                |   5 +-
 guardian/testapp/tests/test_core.py                | 148 ++++++--
 guardian/testapp/tests/test_custompkmodel.py       |  10 +-
 guardian/testapp/tests/test_decorators.py          |  48 +--
 guardian/testapp/tests/test_direct_rel.py          |  62 ++--
 guardian/testapp/tests/test_forms.py               |   7 +-
 guardian/testapp/tests/test_management.py          |  25 +-
 guardian/testapp/tests/test_managers.py            |   3 +-
 guardian/testapp/tests/test_mixins.py              |  17 +-
 guardian/testapp/tests/test_orphans.py             |  12 +-
 guardian/testapp/tests/test_other.py               | 131 ++++---
 guardian/testapp/tests/test_shortcuts.py           | 278 +++++++++-----
 guardian/testapp/tests/test_tags.py                |  44 +--
 guardian/testapp/tests/test_utils.py               |  30 +-
 guardian/testapp/testsettings.py                   |  22 +-
 guardian/utils.py                                  |  35 +-
 guardian/version.py                                |   4 +
 manage.py                                          |   3 +-
 pytest.ini                                         |   2 +
 requirements.txt                                   |   1 +
 setup.cfg                                          |   3 +
 setup.py                                           |  76 ++--
 tests.py                                           |  43 ---
 tox.ini                                            |   7 +-
 utils.py                                           |   3 +-
 136 files changed, 2324 insertions(+), 2295 deletions(-)
 delete mode 100644 VERSION.txt
 copy {guardian/migrations => benchmarks}/__init__.py (100%)
 create mode 100644 benchmarks/models.py
 create mode 100644 benchmarks/run_benchmarks.py
 create mode 100644 benchmarks/settings.py
 delete mode 100644 debian/patches/0003-Use-local-js-files.patch
 delete mode 100644 docs/__pycache__/exts.cpython-33.pyc
 delete mode 100644 docs/__pycache__/exts.cpython-34.pyc
 delete mode 100644 docs/__pycache__/exts.cpython-35.pyc
 delete mode 100644 docs/exts.pyc
 delete mode 100644 docs/theme/rtd_theme/breadcrumbs.html
 delete mode 100644 docs/theme/rtd_theme/footer.html
 delete mode 100644 docs/theme/rtd_theme/layout.html
 delete mode 100644 docs/theme/rtd_theme/layout_old.html
 delete mode 100644 docs/theme/rtd_theme/sass/_badge.sass
 delete mode 100644 docs/theme/rtd_theme/sass/_badge_font_awesome_mini.sass
 delete mode 100644 docs/theme/rtd_theme/sass/_breadcrumbs.sass
 delete mode 100644 docs/theme/rtd_theme/sass/_nav.sass
 delete mode 100644 docs/theme/rtd_theme/sass/badge_only.sass
 delete mode 100644 docs/theme/rtd_theme/sass/config.rb
 delete mode 100644 docs/theme/rtd_theme/sass/theme.sass
 delete mode 100644 docs/theme/rtd_theme/search.html
 delete mode 100644 docs/theme/rtd_theme/searchbox.html
 delete mode 100644 docs/theme/rtd_theme/static/badge_only.css
 delete mode 100755 docs/theme/rtd_theme/static/font/fontawesome_webfont.eot
 delete mode 100755 docs/theme/rtd_theme/static/font/fontawesome_webfont.svg
 delete mode 100755 docs/theme/rtd_theme/static/font/fontawesome_webfont.ttf
 delete mode 100755 docs/theme/rtd_theme/static/font/fontawesome_webfont.woff
 delete mode 100644 docs/theme/rtd_theme/static/theme.css
 delete mode 100644 docs/theme/rtd_theme/static/theme.js
 delete mode 100644 docs/theme/rtd_theme/theme.conf
 delete mode 100644 docs/theme/rtd_theme/versions.html
 copy {guardian/migrations => example_project}/__init__.py (100%)
 create mode 100644 example_project/context_processors.py
 copy {guardian/migrations => example_project/core}/__init__.py (100%)
 create mode 100644 example_project/core/admin.py
 create mode 100644 example_project/core/migrations/0001_initial.py
 copy {guardian => example_project/core}/migrations/__init__.py (100%)
 create mode 100644 example_project/core/models.py
 create mode 100755 example_project/manage.py
 copy {guardian/migrations => example_project/posts}/__init__.py (100%)
 create mode 100644 example_project/posts/admin.py
 create mode 100644 example_project/posts/migrations/0001_initial.py
 copy {guardian => example_project/posts}/migrations/__init__.py (100%)
 create mode 100644 example_project/posts/models.py
 create mode 100644 example_project/posts/templates/posts/post_detail.html
 create mode 100644 example_project/posts/templates/posts/post_list.html
 create mode 100644 example_project/posts/urls.py
 create mode 100644 example_project/posts/views.py
 create mode 100644 example_project/requirements.txt
 create mode 100644 example_project/settings.py
 create mode 100644 example_project/static/css/bootstrap.min.css
 create mode 100644 example_project/static/img/glyphicons-halflings-white.png
 create mode 100644 example_project/static/img/glyphicons-halflings.png
 create mode 100644 example_project/static/js/bootstrap.min.js
 create mode 100644 example_project/templates/403.html
 create mode 100644 example_project/templates/404.html
 create mode 100644 example_project/templates/500.html
 create mode 100644 example_project/templates/base.html
 create mode 100644 example_project/templates/home.html
 create mode 100644 example_project/urls.py
 create mode 100644 guardian/testapp/migrations/0006_auto_20160221_1054.py
 create mode 100644 guardian/testapp/migrations/0007_auto_20160309_0245.py
 create mode 100644 guardian/version.py
 create mode 100644 pytest.ini
 delete mode 100644 tests.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