Fixed #8804: corrected URL example in sitemaps docs

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8905 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-09-03 04:42:49 +00:00
parent 87da9cd759
commit a92d511a17
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ references individual sitemap files, one per each section defined in your
Here is what the relevant URLconf lines would look like for the example above:: Here is what the relevant URLconf lines would look like for the example above::
(r'^sitemap.xml$', 'django.contrib.sitemaps.views.index', {'sitemaps': sitemaps}) (r'^sitemap.xml$', 'django.contrib.sitemaps.views.index', {'sitemaps': sitemaps})
(r'^sitemap-(?P<section>.+).xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}) (r'^sitemap-(?P<section>.+)\.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps})
This will automatically generate a :file:`sitemap.xml` file that references both This will automatically generate a :file:`sitemap.xml` file that references both
:file:`sitemap-flatpages.xml` and :file:`sitemap-blog.xml`. The :file:`sitemap-flatpages.xml` and :file:`sitemap-blog.xml`. The