2006-09-01 07:13:59 +08:00
|
|
|
from django.http import HttpResponse, Http404
|
|
|
|
from django.template import loader
|
|
|
|
from django.contrib.sites.models import Site
|
|
|
|
from django.core import urlresolvers
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.encoding import smart_str
|
2006-09-01 07:13:59 +08:00
|
|
|
|
|
|
|
def index(request, sitemaps):
|
|
|
|
current_site = Site.objects.get_current()
|
|
|
|
sites = []
|
|
|
|
protocol = request.is_secure() and 'https' or 'http'
|
|
|
|
for section in sitemaps.keys():
|
2006-09-03 02:10:00 +08:00
|
|
|
sitemap_url = urlresolvers.reverse('django.contrib.sitemaps.views.sitemap', kwargs={'section': section})
|
2006-09-01 07:13:59 +08:00
|
|
|
sites.append('%s://%s%s' % (protocol, current_site.domain, sitemap_url))
|
|
|
|
xml = loader.render_to_string('sitemap_index.xml', {'sitemaps': sites})
|
|
|
|
return HttpResponse(xml, mimetype='application/xml')
|
|
|
|
|
|
|
|
def sitemap(request, sitemaps, section=None):
|
|
|
|
maps, urls = [], []
|
|
|
|
if section is not None:
|
2007-04-26 21:30:48 +08:00
|
|
|
if section not in sitemaps:
|
2006-09-01 07:13:59 +08:00
|
|
|
raise Http404("No sitemap available for section: %r" % section)
|
|
|
|
maps.append(sitemaps[section])
|
|
|
|
else:
|
|
|
|
maps = sitemaps.values()
|
|
|
|
for site in maps:
|
|
|
|
if callable(site):
|
|
|
|
urls.extend(site().get_urls())
|
|
|
|
else:
|
|
|
|
urls.extend(site.get_urls())
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
xml = smart_str(loader.render_to_string('sitemap.xml', {'urlset': urls}))
|
2006-09-01 07:13:59 +08:00
|
|
|
return HttpResponse(xml, mimetype='application/xml')
|