summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
commit644ad9073f1e488fa0cc8dd9fa6d59c6bd504da9 (patch)
tree0f9eed3b18aa9cf08fde728fafeb0914c51d1f67 /docs/ref/contrib
parent06f89325e152f1d7084f6d200d6879ffa940fd44 (diff)
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. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/syndication.txt9
1 files changed, 1 insertions, 8 deletions
diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt
index a75f736e6b..e467a9396b 100644
--- a/docs/ref/contrib/syndication.txt
+++ b/docs/ref/contrib/syndication.txt
@@ -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