[Python-modules-commits] [django-polymorphic] branch master updated (7f2d64b -> 93ce802)

Michael Fladischer fladi at moszumanska.debian.org
Sun Sep 4 07:30:00 UTC 2016


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

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

      from  7f2d64b   change version to 0.9.2-2 (UNRELEASED) Add patch to use local objects.inv files for intersphinx mappings (Closes: #830414). change urgency to medium
       new  7364449   Update homepage URL.
       new  26e1b38   Use new repository URL in d/watch.
       new  73c370a   record new upstream branch created by importing django-polymorphic_1.0.orig.tar.gz
       new  9394337   Import django-polymorphic_1.0.orig.tar.gz
       new  1b07f0f   use local objects.inv where possible
       new  df831dc   merge patched into master
       new  5ef1af3   record new upstream branch created by importing django-polymorphic_1.0.orig.tar.gz
       new  9cbbfe8   Import django-polymorphic_1.0.orig.tar.gz
       new  7c06e18   use local objects.inv where possible
       new  2115dd4   change version to 1.0-1 New upstream release. change urgency to low
       new  6b4c202   Inheriting managers only works for abstract classes.
       new  9bb78ab   merge patched into master
       new  09afc3b   Use https:// for copyright-format 1.0 URL.
       new  93ce802   change target to unstable New upstream release (Closes: #828654). change urgency to medium

The 14 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:
 .travis.yml                                        |  67 ++--
 MANIFEST.in                                        |   3 +-
 README.rst                                         |  27 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   8 +-
 debian/control                                     |   2 +-
 debian/copyright                                   |   2 +-
 ...parate-test-configuration-for-Django-1.10.patch | 124 -------
 ...001-use-local-objects.inv-where-possible.patch} |   4 +-
 ...-managers-only-works-for-abstract-classes.patch |  25 ++
 debian/patches/series                              |   4 +-
 debian/watch                                       |   4 +-
 docs/admin.rst                                     | 232 ++++++++++---
 docs/changelog.rst                                 |  32 +-
 docs/conf.py                                       |   4 +-
 docs/contributing.rst                              |   2 +-
 docs/formsets.rst                                  |  44 +++
 docs/index.rst                                     |  19 +-
 docs/third-party.rst                               |  30 +-
 example/example/settings.py                        |   1 +
 example/{example => orders}/__init__.py            |   0
 example/orders/admin.py                            |  43 +++
 example/orders/migrations/0001_initial.py          |  88 +++++
 example/{example => orders/migrations}/__init__.py |   0
 example/orders/models.py                           |  78 +++++
 example/pexp/admin.py                              |  74 ++---
 example/pexp/management/commands/p2cmd.py          |  58 ++--
 example/pexp/management/commands/pcmd.py           |  19 +-
 example/pexp/management/commands/polybench.py      |   7 +-
 .../commands/polymorphic_create_test_data.py       |  14 -
 example/pexp/migrations/0001_initial.py            | 124 +++----
 example/pexp/migrations/0002_modelc_field4.py      |  20 --
 example/pexp/models.py                             |  69 ++--
 polymorphic/__init__.py                            |   2 +-
 polymorphic/admin/__init__.py                      |  46 +++
 polymorphic/admin/childadmin.py                    | 194 +++++++++++
 polymorphic/admin/filters.py                       |  35 ++
 polymorphic/admin/forms.py                         |  18 +
 polymorphic/admin/generic.py                       |  61 ++++
 polymorphic/admin/helpers.py                       | 139 ++++++++
 polymorphic/admin/inlines.py                       | 248 ++++++++++++++
 polymorphic/{admin.py => admin/parentadmin.py}     | 267 +++------------
 polymorphic/base.py                                | 180 +++++-----
 polymorphic/formsets/__init__.py                   |  53 +++
 polymorphic/formsets/generic.py                    | 112 +++++++
 polymorphic/formsets/models.py                     | 369 +++++++++++++++++++++
 polymorphic/formsets/utils.py                      |  10 +
 polymorphic/managers.py                            |  16 +-
 polymorphic/models.py                              |  16 +-
 polymorphic/query.py                               |  16 +-
 polymorphic/query_translate.py                     |  37 ++-
 polymorphic/showfields.py                          |  28 +-
 .../static/polymorphic/css/polymorphic_inlines.css |  32 ++
 .../static/polymorphic/js/polymorphic_inlines.js   | 334 +++++++++++++++++++
 .../admin/polymorphic/edit_inline/stacked.html     |  36 ++
 polymorphic/tests.py                               | 241 +++++++++++---
 runtests.py                                        | 116 +++----
 setup.py                                           |  14 +-
 tox.ini                                            |   7 +-
 59 files changed, 2891 insertions(+), 978 deletions(-)
 delete mode 100644 debian/patches/0001-Add-separate-test-configuration-for-Django-1.10.patch
 rename debian/patches/{0002-use-local-objects.inv-where-possible.patch => 0001-use-local-objects.inv-where-possible.patch} (94%)
 create mode 100644 debian/patches/0002-Inheriting-managers-only-works-for-abstract-classes.patch
 create mode 100644 docs/formsets.rst
 copy example/{example => orders}/__init__.py (100%)
 create mode 100644 example/orders/admin.py
 create mode 100644 example/orders/migrations/0001_initial.py
 copy example/{example => orders/migrations}/__init__.py (100%)
 create mode 100644 example/orders/models.py
 delete mode 100644 example/pexp/migrations/0002_modelc_field4.py
 create mode 100644 polymorphic/admin/__init__.py
 create mode 100644 polymorphic/admin/childadmin.py
 create mode 100644 polymorphic/admin/filters.py
 create mode 100644 polymorphic/admin/forms.py
 create mode 100644 polymorphic/admin/generic.py
 create mode 100644 polymorphic/admin/helpers.py
 create mode 100644 polymorphic/admin/inlines.py
 rename polymorphic/{admin.py => admin/parentadmin.py} (67%)
 create mode 100644 polymorphic/formsets/__init__.py
 create mode 100644 polymorphic/formsets/generic.py
 create mode 100644 polymorphic/formsets/models.py
 create mode 100644 polymorphic/formsets/utils.py
 create mode 100644 polymorphic/static/polymorphic/css/polymorphic_inlines.css
 create mode 100644 polymorphic/static/polymorphic/js/polymorphic_inlines.js
 create mode 100644 polymorphic/templates/admin/polymorphic/edit_inline/stacked.html

-- 
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