summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2015-04-12 10:06:02 -0500
committerDan McGee <dan@archlinux.org>2015-04-12 10:06:02 -0500
commit790def2f4db2afec150bab8dc842f6068fb751db (patch)
tree6de8150f26bf180c922432287c9b1626b9069bea
parenta2b020ed3554b47c0b27982cf47431126c103ef4 (diff)
downloadarchweb-release_2015-04-13.tar.gz
archweb-release_2015-04-13.zip
Force minimum last modified date for package files pages in sitemaprelease_2015-04-13
We fixed the embarrassing '/usr/bin/None' bug here; force Google and others to reindex these pages if possible by marking them as modified. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--sitemaps.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/sitemaps.py b/sitemaps.py
index 03ad9254..7746ecab 100644
--- a/sitemaps.py
+++ b/sitemaps.py
@@ -37,12 +37,17 @@ class PackagesSitemap(Sitemap):
class PackageFilesSitemap(PackagesSitemap):
changefreq = "weekly"
priority = "0.1"
+ # we fixed a bug on the package files page on this day, force modification
+ lastmod_min = datetime(2015, 4, 12).replace(tzinfo=utc)
def location(self, obj):
return PackagesSitemap.location(self, obj) + 'files/'
def lastmod(self, obj):
- return obj.files_last_update
+ update = obj.files_last_update
+ if update is None:
+ return None
+ return max(update, self.lastmod_min)
class PackageGroupsSitemap(Sitemap):