X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/8207ad88d61b2db53c3a636b24413efdf0929553..f8e781a472502ff7f6ef1b2b279d752f4fa8620f:/forum/sitemap.py diff --git a/forum/sitemap.py b/forum/sitemap.py index 4478176..0bf8538 100644 --- a/forum/sitemap.py +++ b/forum/sitemap.py @@ -1,5 +1,8 @@ +import re + from django.contrib.sitemaps import Sitemap from forum.models import Question +from forum.settings import QUESTIONS_SITEMAP_LIMIT, QUESTIONS_SITEMAP_CHANGEFREQ from django.conf import settings from django.http import HttpResponse, Http404 from django.template import loader @@ -15,7 +18,14 @@ def index(request, sitemaps): else: pages = site.paginator.num_pages sitemap_url = urlresolvers.reverse('sitemap_section_index', kwargs={'section': section}) - sites.append('%s%s' % (settings.APP_URL, sitemap_url)) + + # Replace double forward slashes with single ones + final_url = '%s%s' % (settings.APP_URL, sitemap_url) + final_url = re.sub("/+", "/", final_url) + final_url = final_url.replace('http:/', 'http://') + final_url = final_url.replace('https:/', 'https://') + + sites.append(final_url) xml = loader.render_to_string('sitemap_index.xml', {'sitemaps': sites}) return HttpResponse(xml, mimetype='application/xml') @@ -33,6 +43,9 @@ def sitemap_section_index(request, section, sitemaps): for page in paginator.page_range: location = urlresolvers.reverse('sitemap_section_page', kwargs={ 'page' : page, 'section' : section }) location = '%s%s' % (settings.APP_URL, location) + location = re.sub("/+", "/", location) + location = location.replace('http:/', 'http://') + location = location.replace('https:/', 'https://') locations.append(location) xml = loader.render_to_string('sitemap_section_index.xml', { 'locations' : locations, }) @@ -61,8 +74,8 @@ def sitemap(request, sitemaps, section=None, page=1): return HttpResponse(xml, mimetype='application/xml') class OsqaSitemap(Sitemap): - limit = 2500 - changefreq = 'daily' + limit = QUESTIONS_SITEMAP_LIMIT + changefreq = QUESTIONS_SITEMAP_CHANGEFREQ priority = 0.5 def items(self): return Question.objects.filter_state(deleted=False).order_by('id')