Commit c0feb2fa authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[1.0.x] 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.

Backport of r9454 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9455 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a4782f05
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -94,10 +94,3 @@ site is built using semantic HTML and plenty of CSS hooks, so any changes you'd
like to make should be possible by editing the stylesheet. We've got a
:ref:`guide to the CSS used in the admin <obsolete-admin-css>` to get you started.
How do I create users without having to edit password hashes?
-------------------------------------------------------------

If you'd like to use the admin site to create users, upgrade to the Django
development version, where this problem was fixed on Aug. 4, 2006.

You can also use the Python API. See :ref:`creating users <topics-auth-creating-users>` for full info.
+1 −8
Original line number Diff line number Diff line
@@ -36,12 +36,6 @@ class and point to it in your :ref:`URLconf <topics-http-urls>`.
Initialization
--------------

If you're not using the latest Django development version, you'll need to make
sure Django's sites framework is installed -- including its database table. (See
the :mod:`sites framework documentation <django.contrib.sites>` for more
information.) This has changed in the Django development version; the
syndication feed framework no longer requires the sites framework.

To activate syndication feeds on your Django site, add this line to your
:ref:`URLconf <topics-http-urls>`::

@@ -152,8 +146,7 @@ into those elements.
         
         * ``{{ site }}`` -- A :class:`django.contrib.sites.models.Site` object
           representing the current site. This is useful for ``{{ site.domain
           }}`` or ``{{ site.name }}``. Note that if you're using the latest
           Django development version and do *not* have the Django sites
           }}`` or ``{{ site.name }}``. If you do *not* have the Django sites
           framework installed, this will be set to a
           :class:`django.contrib.sites.models.RequestSite` object. See the
           :ref:`RequestSite section of the sites framework documentation
+3 −14
Original line number Diff line number Diff line
@@ -51,13 +51,9 @@ Getting runtime help

.. django-admin-option:: --help

In Django 0.96, run ``django-admin.py --help`` to display a help message that
includes a terse list of all available subcommands and options.

In the Django development version, run ``django-admin.py help`` to display a
list of all available subcommands. Run ``django-admin.py help <subcommand>``
to display a description of the given subcommand and a list of its available
options.
Run ``django-admin.py help`` to display a list of all available subcommands.
Run ``django-admin.py help <subcommand>`` to display a description of the
given subcommand and a list of its available options.

App names
---------
@@ -246,13 +242,6 @@ executed. This means that all data will be removed from the database, any
post-synchronization handlers will be re-executed, and the ``initial_data``
fixture will be re-installed.

The behavior of this command has changed in the Django development version.
Previously, this command cleared *every* table in the database, including any
table that Django didn't know about (i.e., tables that didn't have associated
models and/or weren't in ``INSTALLED_APPS``). Now, the command only clears
tables that are represented by Django models and are activated in
``INSTALLED_APPS``.

.. django-admin-option:: --noinput

    Use the ``--noinput`` option to suppress all user prompting, such as "Are
+3 −2
Original line number Diff line number Diff line
@@ -316,8 +316,9 @@ For each field, we describe the default widget used if you don't specify
    * Error message keys: ``required``

.. versionchanged:: 1.0
   The empty value for a ``CheckboxInput`` (and hence the standard ``BooleanField``)
   has changed to return ``False`` instead of ``None`` in the development version.
   The empty value for a ``CheckboxInput`` (and hence the standard
   ``BooleanField``) has changed to return ``False`` instead of ``None`` in
   the Django 1.0.

.. note::

+0 −10
Original line number Diff line number Diff line
@@ -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``
--------------

Loading