]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/sitemap.py
Replace deprecated mimetype with content_type
[osqa.git] / forum / sitemap.py
index 26e9d18b443fba9230e6e10ab67e4de67c9341aa..0ba045b7bb025e4ede91b6b6c097d74c266e79a8 100644 (file)
@@ -25,7 +25,7 @@ def index(request, sitemaps):
         sites.append(final_url)
 
     xml = loader.render_to_string('sitemap_index.xml', {'sitemaps': sites})
-    return HttpResponse(xml, mimetype='application/xml')
+    return HttpResponse(xml, content_type='application/xml')
 
 def sitemap_section_index(request, section, sitemaps):
     try:
@@ -46,7 +46,7 @@ def sitemap_section_index(request, section, sitemaps):
         locations.append(location)
 
     xml = loader.render_to_string('sitemap_section_index.xml', { 'locations' : locations, })
-    return HttpResponse(xml, mimetype='application/xml')
+    return HttpResponse(xml, content_type='application/xml')
 
 def sitemap(request, sitemaps, section=None, page=1):
     maps, urls = [], []
@@ -68,7 +68,7 @@ def sitemap(request, sitemaps, section=None, page=1):
         except PageNotAnInteger:
             raise Http404("No page '%s'" % page)
     xml = smart_str(loader.render_to_string('sitemap.xml', {'urlset': urls}))
-    return HttpResponse(xml, mimetype='application/xml')
+    return HttpResponse(xml, content_type='application/xml')
 
 class OsqaSitemap(Sitemap):
     limit = QUESTIONS_SITEMAP_LIMIT