Fixed ReST indentation errors introduced in [16983]. Grr.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16984 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d1e5c55258
commit
d1e7409278
|
@ -726,11 +726,11 @@ some limitations on the usage of such LOB columns in general:
|
||||||
* LOB columns may not be used in indexes.
|
* LOB columns may not be used in indexes.
|
||||||
|
|
||||||
* LOB columns may not be used in a ``SELECT DISTINCT`` list. This means that
|
* LOB columns may not be used in a ``SELECT DISTINCT`` list. This means that
|
||||||
attempting to use the ``QuerySet.distinct`` method on a model that
|
attempting to use the ``QuerySet.distinct`` method on a model that
|
||||||
includes ``TextField`` columns will result in an error when run against
|
includes ``TextField`` columns will result in an error when run against
|
||||||
Oracle. As a workaround, use the ``QuerySet.defer`` method in conjunction
|
Oracle. As a workaround, use the ``QuerySet.defer`` method in conjunction
|
||||||
with ``distinct()`` to prevent ``TextField`` columns from being included in
|
with ``distinct()`` to prevent ``TextField`` columns from being included in
|
||||||
the ``SELECT DISTINCT`` list.
|
the ``SELECT DISTINCT`` list.
|
||||||
|
|
||||||
.. _third-party-notes:
|
.. _third-party-notes:
|
||||||
|
|
||||||
|
|
|
@ -101,24 +101,24 @@ desired outside the use of the optional :mod:`~django.contrib.staticfiles` app.
|
||||||
As a result, we took the following steps to rectify the issue:
|
As a result, we took the following steps to rectify the issue:
|
||||||
|
|
||||||
* Two new global settings were added that will be used by, **but are not
|
* Two new global settings were added that will be used by, **but are not
|
||||||
limited to**, the :doc:`staticfiles</ref/contrib/staticfiles>` app:
|
limited to**, the :doc:`staticfiles</ref/contrib/staticfiles>` app:
|
||||||
|
|
||||||
* :setting:`STATIC_ROOT` (formally ``STATICFILES_ROOT``)
|
* :setting:`STATIC_ROOT` (formally ``STATICFILES_ROOT``)
|
||||||
|
|
||||||
* :setting:`STATIC_URL` (formally ``STATICFILES_URL``)
|
* :setting:`STATIC_URL` (formally ``STATICFILES_URL``)
|
||||||
|
|
||||||
* The ``django.contrib.staticfiles.templatetags.staticfiles.get_staticfiles_prefix``
|
* The ``django.contrib.staticfiles.templatetags.staticfiles.get_staticfiles_prefix``
|
||||||
template tag was moved to Django's core (``django.templatetags.static``) and
|
template tag was moved to Django's core (``django.templatetags.static``) and
|
||||||
renamed to :ttag:`get_static_prefix`.
|
renamed to :ttag:`get_static_prefix`.
|
||||||
|
|
||||||
* The ``django.contrib.staticfiles.context_processors.staticfiles``
|
* The ``django.contrib.staticfiles.context_processors.staticfiles``
|
||||||
context processor was moved to Django's core
|
context processor was moved to Django's core
|
||||||
(``django.core.context_processors.static``) and renamed to
|
(``django.core.context_processors.static``) and renamed to
|
||||||
:func:`~django.core.context_processors.static`.
|
:func:`~django.core.context_processors.static`.
|
||||||
|
|
||||||
* :ref:`form-media-paths` now uses :setting:`STATIC_URL` as the prefix
|
* :ref:`form-media-paths` now uses :setting:`STATIC_URL` as the prefix
|
||||||
**if the value is not None**, and falls back to the previously used
|
**if the value is not None**, and falls back to the previously used
|
||||||
:setting:`MEDIA_URL` setting otherwise.
|
:setting:`MEDIA_URL` setting otherwise.
|
||||||
|
|
||||||
Changes to the login methods of the admin
|
Changes to the login methods of the admin
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
Loading…
Reference in New Issue