Fixed #17063 -- Fixed visibility of a few version-dependant notes in our documentation.

Thanks jifeng.yin AT gmail DOT com for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17057 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ramiro Morales 2011-10-30 12:59:59 +00:00
parent d17bc72880
commit 576e681302
7 changed files with 0 additions and 8 deletions

View File

@ -315,7 +315,6 @@ parameter to the ``sitemap`` and ``index`` views via the URLconf::
.. versionchanged:: 1.4 .. versionchanged:: 1.4
In addition, these views also return In addition, these views also return
:class:`~django.template.response.TemplateResponse` :class:`~django.template.response.TemplateResponse`
instances which allow you to easily customize the response data before instances which allow you to easily customize the response data before

View File

@ -353,7 +353,6 @@ If you need to accept :attr:`~Field.null` values then use
:class:`NullBooleanField` instead. :class:`NullBooleanField` instead.
.. versionchanged:: 1.2 .. versionchanged:: 1.2
In previous versions of Django when running under MySQL ``BooleanFields`` In previous versions of Django when running under MySQL ``BooleanFields``
would return their data as ``ints``, instead of true ``bools``. See the would return their data as ``ints``, instead of true ``bools``. See the
release notes for a complete description of the change. release notes for a complete description of the change.
@ -879,7 +878,6 @@ shortcuts.
A :class:`CharField` for a URL. Has one extra optional argument: A :class:`CharField` for a URL. Has one extra optional argument:
.. deprecated:: 1.4 .. deprecated:: 1.4
``verify_exists`` is deprecated for security reasons as of 1.4 and will be ``verify_exists`` is deprecated for security reasons as of 1.4 and will be
removed in Django 1.5. Prior to 1.3.1, the default value was ``True``. removed in Django 1.5. Prior to 1.3.1, the default value was ``True``.

View File

@ -636,7 +636,6 @@ Manually managing a user's password
.. currentmodule:: django.contrib.auth.utils .. currentmodule:: django.contrib.auth.utils
.. versionadded:: 1.4 .. versionadded:: 1.4
The :mod:`django.contrib.auth.utils` module provides a set of functions The :mod:`django.contrib.auth.utils` module provides a set of functions
to create and validate hashed password. You can use them independently to create and validate hashed password. You can use them independently
from the ``User`` model. from the ``User`` model.

View File

@ -375,7 +375,6 @@ translates (roughly) into the following SQL::
.. _`Keyword Arguments`: http://docs.python.org/tutorial/controlflow.html#keyword-arguments .. _`Keyword Arguments`: http://docs.python.org/tutorial/controlflow.html#keyword-arguments
.. versionchanged:: 1.4 .. versionchanged:: 1.4
The field specified in a lookup has to be the name of a model field. The field specified in a lookup has to be the name of a model field.
There's one exception though, in case of a There's one exception though, in case of a
:class:`~django.db.models.fields.ForeignKey` you can specify the field :class:`~django.db.models.fields.ForeignKey` you can specify the field

View File

@ -29,7 +29,6 @@ mappings. And, because it's pure Python code, it can be constructed
dynamically. dynamically.
.. versionadded:: 1.4 .. versionadded:: 1.4
Django also allows to translate URLs according to the active language. Django also allows to translate URLs according to the active language.
This process is described in the This process is described in the
:ref:`internationalization docs <url-internationalization>`. :ref:`internationalization docs <url-internationalization>`.

View File

@ -1496,7 +1496,6 @@ translations for the same literal:
is used as a fallback. is used as a fallback.
.. deprecated:: 1.3 .. deprecated:: 1.3
Lookup in the ``locale`` subdirectory of the directory containing your Lookup in the ``locale`` subdirectory of the directory containing your
settings file (item 3 above) is deprecated since the 1.3 release and will be settings file (item 3 above) is deprecated since the 1.3 release and will be
removed in Django 1.5. You can use the :setting:`LOCALE_PATHS` setting removed in Django 1.5. You can use the :setting:`LOCALE_PATHS` setting

View File

@ -198,7 +198,6 @@ Natural keys
------------ ------------
.. versionadded:: 1.2 .. versionadded:: 1.2
The ability to use natural keys when serializing/deserializing data was The ability to use natural keys when serializing/deserializing data was
added in the 1.2 release. added in the 1.2 release.