[Python-modules-commits] [python-django] branch upstream/1.9.x updated (b849285 -> 2d44413)

Raphaël Hertzog hertzog at moszumanska.debian.org
Mon Apr 4 14:51:39 UTC 2016


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

hertzog pushed a change to branch upstream/1.9.x
in repository python-django.

      from  b849285   Import python-django_1.9.4.orig.tar.gz
       new  2d44413   Import python-django_1.9.5.orig.tar.gz

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:
 Django.egg-info/PKG-INFO                           |  2 +-
 Django.egg-info/SOURCES.txt                        |  2 +
 PKG-INFO                                           |  2 +-
 django/__init__.py                                 |  2 +-
 .../static/admin/js/admin/RelatedObjectLookups.js  |  8 ++++
 .../contrib/admin/templates/admin/change_form.html |  8 ----
 django/contrib/auth/forms.py                       |  9 +++-
 .../contrib/gis/db/backends/postgis/operations.py  |  2 +-
 .../gis/db/backends/spatialite/operations.py       |  2 +-
 django/contrib/gis/sitemaps/views.py               |  3 +-
 django/contrib/postgres/forms/jsonb.py             | 15 ++++++
 django/contrib/sitemaps/__init__.py                |  2 +-
 .../management/commands/collectstatic.py           | 14 ++++--
 django/core/cache/backends/base.py                 | 10 ++--
 django/core/management/base.py                     |  2 +-
 django/db/backends/sqlite3/schema.py               | 10 +++-
 django/db/migrations/autodetector.py               |  2 +-
 django/db/models/__init__.py                       |  4 +-
 django/db/models/base.py                           | 10 +++-
 django/db/models/fields/__init__.py                |  3 +-
 django/db/models/query.py                          |  6 +--
 django/db/models/sql/query.py                      |  2 +-
 django/http/multipartparser.py                     |  5 +-
 django/middleware/common.py                        | 21 ++++----
 django/template/backends/django.py                 | 17 +++++--
 django/template/loaders/cached.py                  | 27 +++++++++--
 docs/howto/deployment/wsgi/modwsgi.txt             |  7 ++-
 docs/howto/error-reporting.txt                     | 10 ++--
 .../contributing/writing-documentation.txt         |  6 +--
 docs/internals/howto-release-django.txt            |  2 +-
 docs/intro/reusable-apps.txt                       |  4 +-
 docs/intro/tutorial01.txt                          | 14 ++++++
 docs/intro/tutorial02.txt                          |  2 +-
 docs/intro/tutorial03.txt                          | 28 ++---------
 docs/intro/tutorial07.txt                          |  3 +-
 docs/ref/class-based-views/generic-date-based.txt  |  2 +-
 docs/ref/class-based-views/generic-editing.txt     |  2 +-
 docs/ref/class-based-views/mixins-simple.txt       |  2 +-
 docs/ref/contrib/gis/geoquerysets.txt              |  7 +--
 docs/ref/contrib/gis/install/index.txt             |  2 +-
 docs/ref/contrib/postgres/aggregates.txt           |  2 +-
 docs/ref/contrib/postgres/fields.txt               | 14 +++++-
 docs/ref/contrib/sitemaps.txt                      | 37 +++++++-------
 docs/ref/django-admin.txt                          |  9 +++-
 docs/ref/forms/api.txt                             |  5 ++
 docs/ref/forms/widgets.txt                         |  8 ++--
 docs/ref/models/fields.txt                         |  6 +++
 docs/ref/settings.txt                              |  4 +-
 docs/ref/utils.txt                                 |  2 +-
 docs/ref/views.txt                                 |  2 +-
 docs/releases/1.0.txt                              |  2 +-
 docs/releases/1.8.12.txt                           | 20 ++++++++
 docs/releases/1.9.5.txt                            | 51 ++++++++++++++++++++
 docs/releases/index.txt                            |  2 +
 docs/releases/security.txt                         |  2 +-
 docs/topics/auth/default.txt                       |  2 +-
 docs/topics/conditional-view-processing.txt        |  2 +-
 docs/topics/db/aggregation.txt                     |  2 +-
 docs/topics/db/optimization.txt                    |  2 +-
 docs/topics/pagination.txt                         |  7 ++-
 docs/topics/performance.txt                        |  2 +-
 docs/topics/serialization.txt                      |  3 +-
 docs/topics/templates.txt                          | 18 +++++--
 docs/topics/testing/advanced.txt                   |  2 +-
 tests/admin_views/admin.py                         |  8 ++++
 tests/admin_views/tests.py                         | 17 +++++++
 tests/aggregation/tests.py                         |  2 +-
 tests/aggregation_regress/tests.py                 |  2 +-
 tests/annotations/tests.py                         |  2 +-
 tests/auth_tests/test_forms.py                     | 56 ++++++++++++++++++++++
 tests/cache/tests.py                               | 11 ++++-
 tests/delete/tests.py                              |  4 +-
 tests/expressions/tests.py                         |  2 +-
 tests/expressions_case/tests.py                    |  2 +-
 tests/file_uploads/tests.py                        | 35 ++++++++++++++
 tests/fixtures/tests.py                            |  1 +
 tests/generic_relations_regress/tests.py           |  2 +-
 tests/gis_tests/geo3d/models.py                    |  2 -
 tests/gis_tests/geoadmin/models.py                 |  2 -
 tests/gis_tests/geoapp/models.py                   |  8 ----
 tests/gis_tests/inspectapp/models.py               |  4 --
 tests/gis_tests/layermap/models.py                 |  2 -
 tests/gis_tests/models.py                          |  1 -
 tests/gis_tests/relatedapp/models.py               |  3 --
 tests/gis_tests/relatedapp/tests.py                |  8 ++--
 tests/gis_tests/test_measure.py                    |  2 +-
 tests/middleware/tests.py                          |  7 +--
 tests/model_fields/test_durationfield.py           |  6 +++
 tests/model_inheritance/tests.py                   | 29 +++++++++--
 tests/postgres_tests/test_json.py                  | 21 ++++++++
 tests/queries/tests.py                             | 10 ++--
 tests/schema/models.py                             |  5 ++
 tests/schema/tests.py                              | 19 +++++++-
 tests/select_related_regress/tests.py              |  2 +-
 tests/signing/tests.py                             |  2 +-
 tests/staticfiles_tests/storage.py                 | 37 ++++++++++++++
 tests/staticfiles_tests/test_management.py         |  5 ++
 tests/template_tests/test_loaders.py               | 43 +++++++++++++++--
 tests/update/tests.py                              |  2 +-
 99 files changed, 642 insertions(+), 209 deletions(-)
 create mode 100644 docs/releases/1.8.12.txt
 create mode 100644 docs/releases/1.9.5.txt

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



More information about the Python-modules-commits mailing list