|
@@ -15,10 +15,36 @@ class SimpleSitemap(Sitemap):
|
|
|
def items(self):
|
|
|
return [object()]
|
|
|
|
|
|
+
|
|
|
+class FixedLastmodSitemap(SimpleSitemap):
|
|
|
+ lastmod = datetime(2013, 3, 13, 10, 0, 0)
|
|
|
+
|
|
|
+
|
|
|
+class FixedLastmodMixedSitemap(Sitemap):
|
|
|
+ changefreq = "never"
|
|
|
+ priority = 0.5
|
|
|
+ location = '/location/'
|
|
|
+ loop = 0
|
|
|
+
|
|
|
+ def items(self):
|
|
|
+ o1 = TestModel()
|
|
|
+ o1.lastmod = datetime(2013, 3, 13, 10, 0, 0)
|
|
|
+ o2 = TestModel()
|
|
|
+ return [o1, o2]
|
|
|
+
|
|
|
+
|
|
|
simple_sitemaps = {
|
|
|
'simple': SimpleSitemap,
|
|
|
}
|
|
|
|
|
|
+fixed_lastmod_sitemaps = {
|
|
|
+ 'fixed-lastmod': FixedLastmodSitemap,
|
|
|
+}
|
|
|
+
|
|
|
+fixed_lastmod__mixed_sitemaps = {
|
|
|
+ 'fixed-lastmod-mixed': FixedLastmodMixedSitemap,
|
|
|
+}
|
|
|
+
|
|
|
generic_sitemaps = {
|
|
|
'generic': GenericSitemap({'queryset': TestModel.objects.all()}),
|
|
|
}
|
|
@@ -36,6 +62,8 @@ urlpatterns = patterns('django.contrib.sitemaps.views',
|
|
|
(r'^simple/sitemap\.xml$', 'sitemap', {'sitemaps': simple_sitemaps}),
|
|
|
(r'^simple/custom-sitemap\.xml$', 'sitemap',
|
|
|
{'sitemaps': simple_sitemaps, 'template_name': 'custom_sitemap.xml'}),
|
|
|
+ (r'^lastmod/sitemap\.xml$', 'sitemap', {'sitemaps': fixed_lastmod_sitemaps}),
|
|
|
+ (r'^lastmod-mixed/sitemap\.xml$', 'sitemap', {'sitemaps': fixed_lastmod__mixed_sitemaps}),
|
|
|
(r'^generic/sitemap\.xml$', 'sitemap', {'sitemaps': generic_sitemaps}),
|
|
|
(r'^flatpages/sitemap\.xml$', 'sitemap', {'sitemaps': flatpage_sitemaps}),
|
|
|
url(r'^cached/index\.xml$', cache_page(1)(views.index),
|