Fixed #5078 -- Fixed several broken links to the syndication documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5796 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9a54c8f2d4
commit
b54de86010
|
@ -214,7 +214,7 @@ A framework for generating syndication feeds, in RSS and Atom, quite easily.
|
||||||
|
|
||||||
See the `syndication documentation`_.
|
See the `syndication documentation`_.
|
||||||
|
|
||||||
.. _syndication documentation: ../syndication/
|
.. _syndication documentation: ../syndication_feeds/
|
||||||
|
|
||||||
Other add-ons
|
Other add-ons
|
||||||
=============
|
=============
|
||||||
|
|
|
@ -114,7 +114,7 @@ change:
|
||||||
.. _sending email: ../email/
|
.. _sending email: ../email/
|
||||||
.. _sessions: ../sessions/
|
.. _sessions: ../sessions/
|
||||||
.. _settings: ../settings/
|
.. _settings: ../settings/
|
||||||
.. _syndication: ../syndication/
|
.. _syndication: ../syndication_feeds/
|
||||||
.. _template language: ../templates/
|
.. _template language: ../templates/
|
||||||
.. _transactions: ../transactions/
|
.. _transactions: ../transactions/
|
||||||
.. _url dispatch: ../url_dispatch/
|
.. _url dispatch: ../url_dispatch/
|
||||||
|
|
|
@ -1942,10 +1942,12 @@ Django uses this in its admin interface. If an object defines
|
||||||
link that will jump you directly to the object's public view, according to
|
link that will jump you directly to the object's public view, according to
|
||||||
``get_absolute_url()``.
|
``get_absolute_url()``.
|
||||||
|
|
||||||
Also, a couple of other bits of Django, such as the syndication-feed framework,
|
Also, a couple of other bits of Django, such as the `syndication feed framework`_,
|
||||||
use ``get_absolute_url()`` as a convenience to reward people who've defined the
|
use ``get_absolute_url()`` as a convenience to reward people who've defined the
|
||||||
method.
|
method.
|
||||||
|
|
||||||
|
.. syndication feed framework: ../syndication_feeds/
|
||||||
|
|
||||||
It's good practice to use ``get_absolute_url()`` in templates, instead of
|
It's good practice to use ``get_absolute_url()`` in templates, instead of
|
||||||
hard-coding your objects' URLs. For example, this template code is bad::
|
hard-coding your objects' URLs. For example, this template code is bad::
|
||||||
|
|
||||||
|
|
|
@ -288,11 +288,13 @@ This has been only a quick overview of Django's functionality. Some more useful
|
||||||
features:
|
features:
|
||||||
|
|
||||||
* A caching framework that integrates with memcached or other backends.
|
* A caching framework that integrates with memcached or other backends.
|
||||||
* A syndication framework that makes creating RSS and Atom feeds as easy as
|
* A `syndication framework`_ that makes creating RSS and Atom feeds as easy as
|
||||||
writing a small Python class.
|
writing a small Python class.
|
||||||
* More sexy automatically-generated admin features -- this overview barely
|
* More sexy automatically-generated admin features -- this overview barely
|
||||||
scratched the surface.
|
scratched the surface.
|
||||||
|
|
||||||
|
.. _syndication framework: ../syndication_feeds/
|
||||||
|
|
||||||
The next obvious steps are for you to `download Django`_, read `the tutorial`_
|
The next obvious steps are for you to `download Django`_, read `the tutorial`_
|
||||||
and join `the community`_. Thanks for your interest!
|
and join `the community`_. Thanks for your interest!
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ you express this information in Python code.
|
||||||
It works much like Django's `syndication framework`_. To create a sitemap, just
|
It works much like Django's `syndication framework`_. To create a sitemap, just
|
||||||
write a ``Sitemap`` class and point to it in your URLconf_.
|
write a ``Sitemap`` class and point to it in your URLconf_.
|
||||||
|
|
||||||
.. _syndication framework: ../syndication/
|
.. _syndication framework: ../syndication_feeds/
|
||||||
.. _URLconf: ../url_dispatch/
|
.. _URLconf: ../url_dispatch/
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
|
@ -318,7 +318,7 @@ Here's how Django uses the sites framework:
|
||||||
|
|
||||||
.. _redirects framework: ../redirects/
|
.. _redirects framework: ../redirects/
|
||||||
.. _flatpages framework: ../flatpages/
|
.. _flatpages framework: ../flatpages/
|
||||||
.. _syndication framework: ../syndication/
|
.. _syndication framework: ../syndication_feeds/
|
||||||
.. _authentication framework: ../authentication/
|
.. _authentication framework: ../authentication/
|
||||||
|
|
||||||
``RequestSite`` objects
|
``RequestSite`` objects
|
||||||
|
|
|
@ -404,7 +404,7 @@ This technique is used in `generic views`_ and in the `syndication framework`_
|
||||||
to pass metadata and options to views.
|
to pass metadata and options to views.
|
||||||
|
|
||||||
.. _generic views: ../generic_views/
|
.. _generic views: ../generic_views/
|
||||||
.. _syndication framework: ../syndication/
|
.. _syndication framework: ../syndication_feeds/
|
||||||
|
|
||||||
.. admonition:: Dealing with conflicts
|
.. admonition:: Dealing with conflicts
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue