[Python-modules-commits] [django-polymorphic] branch master updated (abc7c0a -> 91d6c07)

Michael Fladischer fladi at moszumanska.debian.org
Thu Jul 13 20:59:51 UTC 2017


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

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

      from  abc7c0a   change target to unstable
      adds  92903e0   record new upstream branch created by importing django-polymorphic_1.1.orig.tar.gz
      adds  9e36e07   Import django-polymorphic_1.1.orig.tar.gz
      adds  bb7145f   use local objects.inv where possible
      adds  541cfd1   merge patched-experimental into experimental
      adds  d437882   change version to 1.1-1~exp1 (UNRELEASED) New upstream release.
      adds  9a31c10   use local objects.inv where possible
      adds  c81226b   merge patched-experimental into experimental
      adds  b03e249   Replace force_unicode with force_text.
      adds  6482fb7   merge patched-experimental into experimental
      adds  e8bafe7   Install django.contrib.contenttypes in sphinx documentation settings.
      adds  33099cb   merge patched-experimental into experimental
      adds  1f882ea   Add python3-sphinx-rtd-theme to Build-Depends.
      adds  f3066f1   Add extensions to PYTHONPATH so sphinx can find them during documentation build.
      adds  23ffdc5   Add python3-django-extra-views to Build-Depends so sphinx can use it.
      adds  9d1ff69   Add python(3)-django-extra-views to Recommends.
      adds  50d6f8a   Use correct python3:Depends helper for Python3 package.
      adds  87bf5df   change target to experimental
      adds  d306d51   record new upstream branch created by importing django-polymorphic_1.2.orig.tar.gz
      adds  5147ba1   Import django-polymorphic_1.2.orig.tar.gz
      adds  cb5b5d9   use local objects.inv where possible
      adds  30b2631   merge patched-experimental into experimental
      adds  fa9c8ae   change version to 1.2-1~exp1 (UNRELEASED) New upstream release.
      adds  cffc0c0   change target to experimental
       new  0a4b3fc   change version to 1.2-1~exp2 (UNRELEASED) Bump Standards-Version to 4.0.0. change urgency to medium
       new  91d6c07   change version to 1.2-1 (unstable) Upload to unstable (Closes: #865935). change urgency to low

The 2 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                                        | 133 +++--
 README.rst                                         |   2 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  24 +
 debian/control                                     |  10 +-
 ...0001-use-local-objects.inv-where-possible.patch |  33 +-
 debian/rules                                       |   2 +-
 .../example => docs/_ext/djangodummy}/__init__.py  |   0
 docs/_ext/djangodummy/requirements.txt             |   4 +
 docs/_ext/djangodummy/settings.py                  |  15 +
 .../example => docs/_ext/djangoext}/__init__.py    |   0
 docs/_ext/djangoext/docstrings.py                  |  47 ++
 docs/_ext/djangoext/roles.py                       |   8 +
 docs/advanced.rst                                  |   3 +-
 docs/api/index.rst                                 |  13 +
 docs/api/polymorphic.admin.rst                     |  93 ++++
 docs/api/polymorphic.contrib.extra_views.rst       |   7 +
 docs/api/polymorphic.contrib.guardian.rst          |   7 +
 docs/api/polymorphic.formsets.rst                  |  41 ++
 docs/api/polymorphic.managers.rst                  |  21 +
 docs/api/polymorphic.models.rst                    |   8 +
 docs/api/polymorphic.templatetags.rst              |   4 +
 docs/api/polymorphic.utils.rst                     |   5 +
 docs/changelog.rst                                 |  20 +
 docs/conf.py                                       |  37 +-
 docs/index.rst                                     |  10 +-
 docs/migrating.rst                                 |  19 +-
 docs/third-party.rst                               |  52 +-
 polymorphic/__init__.py                            |   5 +-
 polymorphic/admin/__init__.py                      |   1 +
 polymorphic/admin/childadmin.py                    |   3 -
 polymorphic/admin/generic.py                       |   8 +-
 polymorphic/admin/inlines.py                       |  10 +-
 polymorphic/admin/parentadmin.py                   |   6 +-
 polymorphic/contrib/extra_views.py                 | 126 +++++
 polymorphic/formsets/__init__.py                   |  17 -
 polymorphic/formsets/generic.py                    |  19 +-
 polymorphic/formsets/models.py                     |  14 +-
 polymorphic/formsets/utils.py                      |   1 +
 polymorphic/manager.py                             |   2 +-
 polymorphic/managers.py                            |  10 +-
 polymorphic/models.py                              |  62 +--
 polymorphic/query.py                               | 155 ++++--
 polymorphic/query_translate.py                     |   8 +-
 polymorphic/showfields.py                          |   2 +-
 .../static/polymorphic/css/polymorphic_inlines.css |   1 +
 polymorphic/templatetags/__init__.py               |  77 +++
 .../templatetags/polymorphic_formset_tags.py       |  79 +++
 polymorphic/tests/__init__.py                      | 419 +++++++++++++++
 polymorphic/tests/test_admin.py                    |  31 ++
 polymorphic/tests/test_multidb.py                  | 106 ++++
 polymorphic/{tests.py => tests/test_orm.py}        | 564 +--------------------
 polymorphic/tests/test_regression.py               |  24 +
 polymorphic/utils.py                               |  29 ++
 setup.cfg                                          |   4 +
 tox.ini                                            |  14 +-
 57 files changed, 1624 insertions(+), 806 deletions(-)
 copy {example/example => docs/_ext/djangodummy}/__init__.py (100%)
 create mode 100644 docs/_ext/djangodummy/requirements.txt
 create mode 100644 docs/_ext/djangodummy/settings.py
 copy {example/example => docs/_ext/djangoext}/__init__.py (100%)
 create mode 100644 docs/_ext/djangoext/docstrings.py
 create mode 100644 docs/_ext/djangoext/roles.py
 create mode 100644 docs/api/index.rst
 create mode 100644 docs/api/polymorphic.admin.rst
 create mode 100644 docs/api/polymorphic.contrib.extra_views.rst
 create mode 100644 docs/api/polymorphic.contrib.guardian.rst
 create mode 100644 docs/api/polymorphic.formsets.rst
 create mode 100644 docs/api/polymorphic.managers.rst
 create mode 100644 docs/api/polymorphic.models.rst
 create mode 100644 docs/api/polymorphic.templatetags.rst
 create mode 100644 docs/api/polymorphic.utils.rst
 create mode 100644 polymorphic/contrib/extra_views.py
 create mode 100644 polymorphic/templatetags/polymorphic_formset_tags.py
 create mode 100644 polymorphic/tests/__init__.py
 create mode 100644 polymorphic/tests/test_admin.py
 create mode 100644 polymorphic/tests/test_multidb.py
 rename polymorphic/{tests.py => tests/test_orm.py} (72%)
 create mode 100644 polymorphic/tests/test_regression.py
 create mode 100644 polymorphic/utils.py

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



More information about the Python-modules-commits mailing list