Author: adrian
Date: 2008-09-07 17:56:03 -0500 (Sun, 07 Sep 2008)
New Revision: 8981
Modified:
django/trunk/docs/ref/contrib/sitemaps.txt
Log:
Small wording improvements to sitemaps.txt
Modified: django/trunk/docs/ref/contrib/sitemaps.txt
===================================================================
--- django/trunk/docs/ref/contrib/sitemaps.txt 2008-09-07 22:55:31 UTC (rev
8980)
+++ django/trunk/docs/ref/contrib/sitemaps.txt 2008-09-07 22:56:03 UTC (rev
8981)
@@ -278,7 +278,7 @@
* The :func:`django.contrib.sitemaps.views.sitemap` view should take a
:data:`section` keyword argument.
-Here is what the relevant URLconf lines would look like for the example above::
+Here's what the relevant URLconf lines would look like for the example above::
(r'^sitemap.xml$', 'django.contrib.sitemaps.views.index', {'sitemaps':
sitemaps})
(r'^sitemap-(?P<section>.+)\.xml$',
'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps})
@@ -288,9 +288,9 @@
:class:`~django.contrib.sitemaps.Sitemap` classes and the :data:`sitemaps` dict
don't change at all.
-If one of your sitemaps is going to have more than 50,000 URLs you should
-create an index file. Your sitemap will be paginated and the index will
-reflect that.
+You should create an index file if one of your sitemaps has more than 50,000
+URLs. In this case, Django will automatically paginate the sitemap, and the
+index will reflect that.
Pinging Google
==============
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---