From e17f75551491f5b864c1fc8a97c21d0b2bbf0bcd Mon Sep 17 00:00:00 2001
From: Boulder Sprinters
Date: Fri, 2 Feb 2007 17:35:55 +0000
Subject: [PATCH] boulder-oracle-sprint: Merged to trunk [4455].
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4456 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
.../admin/auth/user/change_password.html | 2 +-
.../contrib/admin/templatetags/admin_list.py | 14 +-
django/contrib/contenttypes/models.py | 14 +-
django/contrib/sessions/middleware.py | 3 +-
django/core/cache/backends/dummy.py | 6 +-
django/core/management.py | 4 +-
django/core/serializers/python.py | 2 +-
django/db/backends/ado_mssql/creation.py | 1 -
django/db/backends/mysql/creation.py | 1 -
django/db/backends/postgresql/creation.py | 1 -
django/db/backends/sqlite3/creation.py | 1 -
django/db/models/fields/__init__.py | 71 ++-
django/db/models/fields/related.py | 49 +-
django/db/models/manager.py | 8 +-
django/db/models/query.py | 114 +++-
django/newforms/fields.py | 210 +++++--
django/newforms/forms.py | 60 +-
django/newforms/models.py | 79 ++-
django/newforms/util.py | 5 +
django/newforms/widgets.py | 136 ++++-
django/oldforms/__init__.py | 6 +-
django/utils/datastructures.py | 6 +-
django/utils/simplejson/LICENSE.txt | 2 +-
django/utils/simplejson/__init__.py | 47 +-
django/utils/simplejson/decoder.py | 6 +-
django/utils/simplejson/encoder.py | 98 +++-
django/utils/simplejson/jsonfilter.py | 40 ++
django/utils/simplejson/scanner.py | 3 +-
docs/add_ons.txt | 16 +-
docs/apache_auth.txt | 4 +-
docs/api_stability.txt | 46 +-
docs/authentication.txt | 22 +-
docs/cache.txt | 2 +-
docs/contributing.txt | 85 ++-
docs/db-api.txt | 15 +
docs/design_philosophies.txt | 2 +-
docs/django-admin.txt | 10 +-
docs/email.txt | 8 +-
docs/faq.txt | 24 +-
docs/fastcgi.txt | 2 +-
docs/flatpages.txt | 14 +-
docs/forms.txt | 8 +-
docs/generic_views.txt | 54 +-
docs/i18n.txt | 20 +-
docs/install.txt | 6 +-
docs/legacy_databases.txt | 18 +-
docs/middleware.txt | 15 +-
docs/model-api.txt | 27 +-
docs/modpython.txt | 2 +-
docs/newforms.txt | 525 +++++++++++++++++-
docs/outputting_csv.txt | 6 +-
docs/outputting_pdf.txt | 2 +-
docs/overview.txt | 2 +-
docs/redirects.txt | 12 +-
docs/request_response.txt | 4 +-
docs/sessions.txt | 4 +-
docs/settings.txt | 41 +-
docs/sitemaps.txt | 20 +-
docs/sites.txt | 12 +-
docs/static_files.txt | 6 +-
docs/syndication_feeds.txt | 14 +-
docs/templates.txt | 4 +-
docs/templates_python.txt | 24 +-
docs/testing.txt | 12 +-
docs/tutorial01.txt | 10 +-
docs/tutorial02.txt | 10 +-
docs/tutorial03.txt | 13 +-
docs/tutorial04.txt | 6 +-
docs/url_dispatch.txt | 14 +-
tests/modeltests/custom_columns/models.py | 94 +++-
tests/modeltests/generic_relations/models.py | 34 +-
tests/modeltests/lookup/models.py | 15 +
tests/modeltests/many_to_many/models.py | 14 +-
tests/modeltests/model_forms/models.py | 135 +++--
tests/modeltests/or_lookups/models.py | 15 +
tests/modeltests/serializers/models.py | 21 +
tests/modeltests/test_client/views.py | 2 +-
tests/regressiontests/forms/tests.py | 521 ++++++++++++++++-
78 files changed, 2389 insertions(+), 592 deletions(-)
create mode 100644 django/utils/simplejson/jsonfilter.py
diff --git a/django/contrib/admin/templates/admin/auth/user/change_password.html b/django/contrib/admin/templates/admin/auth/user/change_password.html
index 80990faa24..3d359ecf8f 100644
--- a/django/contrib/admin/templates/admin/auth/user/change_password.html
+++ b/django/contrib/admin/templates/admin/auth/user/change_password.html
@@ -25,7 +25,7 @@
{% endif %}
-{% blocktrans with original.username|escape as username %}Enter a new username and password for the user {{ username }}.{% endblocktrans %}
+{% blocktrans with original.username|escape as username %}Enter a new password for the user {{ username }}.{% endblocktrans %}