summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2011-09-10 03:26:13 +0000
committerCarl Meyer <carl@oddbird.net>2011-09-10 03:26:13 +0000
commit84e0055e8df00ff7406f424b39ce6a86f648b51f (patch)
tree7882aa1267f9a9ea7b28f057f718cebac2a431ec /docs/internals
parenteaea9deca849262a677fec0f0d74495bb146f691 (diff)
Corrected documentation inconsistencies regarding deprecation of URLField.verify_exists.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16776 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 8d5baaf407..14004b034a 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -115,10 +115,6 @@ their deprecation, as per the :ref:`deprecation policy
beyond that of a simple ``TextField`` since the removal of oldforms.
All uses of ``XMLField`` can be replaced with ``TextField``.
- * ``django.db.models.fields.URLField.verify_exists`` has been
- deprecated due to intractable security and performance
- issues. Validation behavior has been removed in 1.4, and the
- argument will be removed in 1.5.
1.5
---
@@ -185,6 +181,10 @@ their deprecation, as per the :ref:`deprecation policy
required to end with a trailing slash to ensure there is a consistent
way to combine paths in templates.
+ * ``django.db.models.fields.URLField.verify_exists`` was deprecated in 1.4
+ due to intractable security and performance issues. The argument will be
+ removed in 1.5.
+
1.6
---