Ticket #12497: docs-xref-links-typos.diff

File docs-xref-links-typos.diff, 2.3 KB (added by Ramiro Morales, 14 years ago)
  • docs/faq/admin.txt

    diff --git a/docs/faq/admin.txt b/docs/faq/admin.txt
    a b  
    5454My admin-site CSS and images showed up fine using the development server, but they're not displaying when using mod_python.
    5555---------------------------------------------------------------------------------------------------------------------------
    5656
    57 See :ref:`serving the admin files <howto-deployment-modpython-serving-the-admin-files`
     57See :ref:`serving the admin files <howto-deployment-modpython-serving-the-admin-files>`
    5858in the "How to use Django with mod_python" documentation.
    5959
    6060My "list_filter" contains a ManyToManyField, but the filter doesn't display.
  • docs/ref/contrib/contenttypes.txt

    diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt
    a b  
    342342Generic relations and aggregation
    343343---------------------------------
    344344
    345 :ref:`Django's database aggregation API <topics-db-aggregation`
     345:ref:`Django's database aggregation API <topics-db-aggregation>`
    346346doesn't work with a
    347347:class:`~django.contrib.contenttypes.generic.GenericRelation`. For example, you
    348348might be tempted to try something like::
  • docs/ref/templates/api.txt

    diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
    a b  
    380380.. versionchanged:: 1.2
    381381   Prior to version 1.2, the ``messages`` variable was a lazy accessor for
    382382   ``user.get_and_delete_messages()``. It has been changed to include any
    383    messages added via the :ref:`messages framework <ref-contrib-messages`.
     383   messages added via the :ref:`messages framework <ref-contrib-messages>`.
    384384
    385385django.core.context_processors.debug
    386386~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • docs/topics/db/aggregation.txt

    diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt
    a b  
    88
    99.. currentmodule:: django.db.models
    1010
    11 The topic guide on :ref:`Django's database-abstraction API <topics-db-queries`
     11The topic guide on :ref:`Django's database-abstraction API <topics-db-queries>`
    1212described the way that you can use Django queries that create,
    1313retrieve, update and delete individual objects. However, sometimes you will
    1414need to retrieve values that are derived by summarizing or *aggregating* a
Back to Top