From 8207ad88d61b2db53c3a636b24413efdf0929553 Mon Sep 17 00:00:00 2001 From: jordan Date: Mon, 11 Apr 2011 13:15:02 +0000 Subject: [PATCH] OSQA-561, Changing the Questions sitemap limit from 250 to 2500. This would be more reasonable for websites with a lot of questions. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@963 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- forum/sitemap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forum/sitemap.py b/forum/sitemap.py index e225d00..4478176 100644 --- a/forum/sitemap.py +++ b/forum/sitemap.py @@ -61,7 +61,7 @@ def sitemap(request, sitemaps, section=None, page=1): return HttpResponse(xml, mimetype='application/xml') class OsqaSitemap(Sitemap): - limit = 250 + limit = 2500 changefreq = 'daily' priority = 0.5 def items(self): -- 2.39.5