mirror of
https://github.com/django/django.git
synced 2025-01-01 14:06:06 +00:00
e1046a96bc
Backport of fbc467c26b
from master
20 lines
474 B
Python
20 lines
474 B
Python
from django.conf.urls import url
|
|
from django.contrib.sitemaps import views
|
|
|
|
from .http import SimpleSitemap
|
|
|
|
|
|
class HTTPSSitemap(SimpleSitemap):
|
|
protocol = 'https'
|
|
|
|
secure_sitemaps = {
|
|
'simple': HTTPSSitemap,
|
|
}
|
|
|
|
urlpatterns = [
|
|
url(r'^secure/index\.xml$', views.index, {'sitemaps': secure_sitemaps}),
|
|
url(r'^secure/sitemap-(?P<section>.+)\.xml$', views.sitemap,
|
|
{'sitemaps': secure_sitemaps},
|
|
name='django.contrib.sitemaps.views.sitemap'),
|
|
]
|