summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
commit644ad9073f1e488fa0cc8dd9fa6d59c6bd504da9 (patch)
tree0f9eed3b18aa9cf08fde728fafeb0914c51d1f67 /docs/ref/models
parent06f89325e152f1d7084f6d200d6879ffa940fd44 (diff)
Fixed #9477 -- Removed and edited a bunch of references to "development
version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt10
-rw-r--r--docs/ref/models/querysets.txt8
2 files changed, 4 insertions, 14 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index ac1e2ffffb..4f2a92a66b 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -413,11 +413,6 @@ The admin represents this as an ``<input type="text">`` (a single-line input).
A :class:`CharField` that checks that the value is a valid e-mail address.
-In Django 0.96, this doesn't accept :attr:`~CharField.max_length`; its
-:class:`~CharField.max_length` is automatically set to 75. In the Django
-development version, :class:`~CharField.max_length` is set to 75 by default, but
-you can specify it to override default behavior.
-
``FileField``
-------------
@@ -577,11 +572,6 @@ A floating-point number represented in Python by a ``float`` instance.
The admin represents this as an ``<input type="text">`` (a single-line input).
-**NOTE:** The semantics of :class:`FloatField` have changed in the Django
-development version. See the `Django 0.96 documentation`_ for the old behavior.
-
-.. _Django 0.96 documentation: http://www.djangoproject.com/documentation/0.96/model-api/#floatfield
-
``ImageField``
--------------
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index c1fbdce5ca..3525865ac6 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -959,10 +959,10 @@ SQL equivalents::
SELECT ... WHERE id IS NULL;
.. versionchanged:: 1.0
- The semantics of ``id__exact=None`` have
- changed in the development version. Previously, it was (intentionally)
- converted to ``WHERE id = NULL`` at the SQL level, which would never match
- anything. It has now been changed to behave the same as ``id__isnull=True``.
+ The semantics of ``id__exact=None`` have changed in Django 1.0. Previously,
+ it was (intentionally) converted to ``WHERE id = NULL`` at the SQL level,
+ which would never match anything. It has now been changed to behave the
+ same as ``id__isnull=True``.
.. admonition:: MySQL comparisons