[Python-modules-commits] [python-django] branch upstream/1.9.x updated (6e04957 -> b849285)
Luke Faraone
lfaraone at moszumanska.debian.org
Mon Mar 7 17:05:01 UTC 2016
This is an automated email from the git hooks/post-receive script.
lfaraone pushed a change to branch upstream/1.9.x
in repository python-django.
from 6e04957 Import python-django_1.9.2.orig.tar.gz
adds b849285 Import python-django_1.9.4.orig.tar.gz
No new revisions were added by this update.
Summary of changes:
Django.egg-info/PKG-INFO | 2 +-
Django.egg-info/SOURCES.txt | 5 +
PKG-INFO | 2 +-
django/__init__.py | 2 +-
django/contrib/admin/templates/admin/login.html | 2 +-
django/contrib/auth/base_user.py | 2 +-
django/contrib/auth/hashers.py | 77 +++++++++----
django/contrib/contenttypes/models.py | 20 ++--
django/contrib/postgres/fields/array.py | 7 +-
django/contrib/postgres/fields/ranges.py | 8 +-
django/core/checks/urls.py | 10 +-
django/core/validators.py | 9 +-
django/db/backends/base/operations.py | 2 +-
django/db/backends/postgresql/base.py | 2 +-
django/db/migrations/state.py | 2 +-
django/db/models/expressions.py | 2 +-
django/db/models/fields/__init__.py | 2 +-
django/db/models/fields/related.py | 50 ++++----
django/db/models/fields/related_descriptors.py | 2 +-
django/db/models/query.py | 8 +-
django/db/models/query_utils.py | 2 +-
django/db/models/sql/query.py | 2 +-
django/forms/boundfield.py | 2 +-
django/middleware/common.py | 2 +-
django/template/loaders/cached.py | 2 +-
django/template/response.py | 6 +-
django/test/signals.py | 2 +-
django/utils/http.py | 13 ++-
django/utils/translation/__init__.py | 7 ++
docs/conf.py | 9 ++
docs/faq/general.txt | 2 +-
docs/howto/custom-model-fields.txt | 3 +-
docs/howto/deployment/checklist.txt | 5 +-
docs/howto/deployment/wsgi/apache-auth.txt | 4 +-
docs/howto/deployment/wsgi/modwsgi.txt | 4 +-
docs/howto/outputting-pdf.txt | 6 +-
docs/internals/deprecation.txt | 3 +
docs/internals/release-process.txt | 5 +-
docs/intro/reusable-apps.txt | 6 +-
docs/intro/tutorial02.txt | 13 ++-
docs/intro/tutorial04.txt | 2 +-
docs/ref/applications.txt | 12 +-
docs/ref/class-based-views/generic-date-based.txt | 32 ++++--
docs/ref/contrib/admin/admindocs.txt | 9 --
docs/ref/contrib/admin/index.txt | 16 ++-
docs/ref/contrib/gis/feeds.txt | 4 +-
docs/ref/contrib/gis/geos.txt | 2 +-
docs/ref/contrib/gis/testing.txt | 4 +-
docs/ref/contrib/gis/tutorial.txt | 8 +-
docs/ref/csrf.txt | 61 ++++++++--
docs/ref/models/expressions.txt | 37 +++++-
docs/ref/models/fields.txt | 29 +++++
docs/ref/models/meta.txt | 4 +-
docs/ref/settings.txt | 75 +++++++-----
docs/ref/templates/builtins.txt | 5 +-
docs/ref/validators.txt | 6 +-
docs/releases/1.6.txt | 4 +-
docs/releases/1.8.10.txt | 80 +++++++++++++
docs/releases/1.8.11.txt | 8 ++
docs/releases/1.8.txt | 7 +-
docs/releases/1.9.1.txt | 2 +-
docs/releases/1.9.3.txt | 107 +++++++++++++++++
docs/releases/1.9.4.txt | 8 ++
docs/releases/index.txt | 4 +
docs/releases/security.txt | 38 ++++++
docs/spelling_wordlist | 2 +
docs/topics/auth/customizing.txt | 128 ++++++---------------
docs/topics/auth/default.txt | 2 +-
docs/topics/auth/passwords.txt | 114 ++++++++++++++++++
docs/topics/db/models.txt | 11 +-
docs/topics/db/multi-db.txt | 4 +-
docs/topics/email.txt | 2 +
docs/topics/i18n/translation.txt | 24 +---
docs/topics/security.txt | 3 +-
docs/topics/settings.txt | 11 ++
docs/topics/testing/tools.txt | 96 +++++++---------
setup.cfg | 2 +-
tests/admin_filters/tests.py | 19 ++-
tests/auth_tests/test_forms.py | 34 ++++++
tests/auth_tests/test_handlers.py | 7 +-
tests/auth_tests/test_hashers.py | 58 +++++++++-
tests/backends/tests.py | 5 +
tests/check_framework/test_urls.py | 7 ++
tests/contenttypes_tests/test_models.py | 14 ++-
tests/foreign_object/models/article.py | 13 +++
tests/foreign_object/tests.py | 13 +++
tests/forms_tests/tests/test_fields.py | 3 +
tests/forms_tests/tests/test_forms.py | 14 +++
tests/i18n/tests.py | 8 ++
tests/invalid_models_tests/test_relative_fields.py | 36 +++++-
tests/model_fields/tests.py | 66 ++++++-----
tests/postgres_tests/test_array.py | 6 +-
tests/postgres_tests/test_hstore.py | 9 +-
tests/postgres_tests/test_json.py | 6 +-
tests/postgres_tests/test_ranges.py | 11 ++
tests/queries/tests.py | 12 ++
tests/raw_query/models.py | 1 +
tests/raw_query/tests.py | 6 +
tests/requests/tests.py | 8 +-
tests/template_tests/test_loaders.py | 12 ++
tests/template_tests/test_response_deprecations.py | 42 +++++++
tests/utils_tests/test_http.py | 24 ++++
tests/validators/invalid_urls.txt | 4 +-
tests/validators/valid_urls.txt | 4 +
104 files changed, 1277 insertions(+), 442 deletions(-)
create mode 100644 docs/releases/1.8.10.txt
create mode 100644 docs/releases/1.8.11.txt
create mode 100644 docs/releases/1.9.3.txt
create mode 100644 docs/releases/1.9.4.txt
create mode 100644 tests/template_tests/test_response_deprecations.py
--
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