summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-26 05:07:16 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-26 05:07:16 +0000
commitbadde8a7e5090347feea0b39221dbdea428582b8 (patch)
tree11cc9f8fc35d281ec8305c1ae0f526c34632cfe5 /docs
parenta26ba33111a41d87eaea23b4ba2ae48be4e08b18 (diff)
Fixed #7793 -- Handle sitemaps with more than 50,000 URLs in them (by using
pagination). Patch from Julian Bez. The docs patch here could probably do with some rewording. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8088 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/sitemaps.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/sitemaps.txt b/docs/sitemaps.txt
index 6a16e61879..3e7411c168 100644
--- a/docs/sitemaps.txt
+++ b/docs/sitemaps.txt
@@ -282,6 +282,10 @@ This will automatically generate a ``sitemap.xml`` file that references
both ``sitemap-flatpages.xml`` and ``sitemap-blog.xml``. The ``Sitemap``
classes and the ``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.
+
Pinging Google
==============