Skip to content

Commit b54de86

Browse files
committed
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
1 parent 9a54c8f commit b54de86

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

docs/add_ons.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ A framework for generating syndication feeds, in RSS and Atom, quite easily.
214214

215215
See the `syndication documentation`_.
216216

217-
.. _syndication documentation: ../syndication/
217+
.. _syndication documentation: ../syndication_feeds/
218218

219219
Other add-ons
220220
=============

docs/api_stability.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ change:
114114
.. _sending email: ../email/
115115
.. _sessions: ../sessions/
116116
.. _settings: ../settings/
117-
.. _syndication: ../syndication/
117+
.. _syndication: ../syndication_feeds/
118118
.. _template language: ../templates/
119119
.. _transactions: ../transactions/
120120
.. _url dispatch: ../url_dispatch/

docs/model-api.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1942,10 +1942,12 @@ Django uses this in its admin interface. If an object defines
19421942
link that will jump you directly to the object's public view, according to
19431943
``get_absolute_url()``.
19441944

1945-
Also, a couple of other bits of Django, such as the syndication-feed framework,
1945+
Also, a couple of other bits of Django, such as the `syndication feed framework`_,
19461946
use ``get_absolute_url()`` as a convenience to reward people who've defined the
19471947
method.
19481948

1949+
.. syndication feed framework: ../syndication_feeds/
1950+
19491951
It's good practice to use ``get_absolute_url()`` in templates, instead of
19501952
hard-coding your objects' URLs. For example, this template code is bad::
19511953

docs/overview.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,13 @@ This has been only a quick overview of Django's functionality. Some more useful
288288
features:
289289

290290
* A caching framework that integrates with memcached or other backends.
291-
* A syndication framework that makes creating RSS and Atom feeds as easy as
291+
* A `syndication framework`_ that makes creating RSS and Atom feeds as easy as
292292
writing a small Python class.
293293
* More sexy automatically-generated admin features -- this overview barely
294294
scratched the surface.
295295

296+
.. _syndication framework: ../syndication_feeds/
297+
296298
The next obvious steps are for you to `download Django`_, read `the tutorial`_
297299
and join `the community`_. Thanks for your interest!
298300

docs/sitemaps.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ you express this information in Python code.
2121
It works much like Django's `syndication framework`_. To create a sitemap, just
2222
write a ``Sitemap`` class and point to it in your URLconf_.
2323

24-
.. _syndication framework: ../syndication/
24+
.. _syndication framework: ../syndication_feeds/
2525
.. _URLconf: ../url_dispatch/
2626

2727
Installation

docs/sites.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ Here's how Django uses the sites framework:
318318

319319
.. _redirects framework: ../redirects/
320320
.. _flatpages framework: ../flatpages/
321-
.. _syndication framework: ../syndication/
321+
.. _syndication framework: ../syndication_feeds/
322322
.. _authentication framework: ../authentication/
323323

324324
``RequestSite`` objects

docs/url_dispatch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ This technique is used in `generic views`_ and in the `syndication framework`_
404404
to pass metadata and options to views.
405405

406406
.. _generic views: ../generic_views/
407-
.. _syndication framework: ../syndication/
407+
.. _syndication framework: ../syndication_feeds/
408408

409409
.. admonition:: Dealing with conflicts
410410

0 commit comments

Comments
 (0)