blob: 256f71019ba9dffcf8c8397324d93f5a13c00fa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
from django.contrib.sitemaps import Sitemap
from main.models import Package, News
class PackagesSitemap(Sitemap):
changefreq = "monthly"
priority = "0.4"
def items(self):
return Package.objects.select_related('arch', 'repo').all()
return Package.objects.all()
def lastmod(self, obj):
return obj.last_update
class NewsSitemap(Sitemap):
changefreq = "never"
priority = "0.7"
def items(self):
return News.objects.all()
def lastmod(self, obj):
return obj.postdate
# vim: set ts=4 sw=4 et:
|