diff options
author | Dan McGee <dan@archlinux.org> | 2011-04-07 21:39:14 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-08 00:01:16 +0200 |
commit | 9f4902f9c921b82f924fe0af106fa5480ca10ca9 (patch) | |
tree | 489df7db006f43f6ab74bb191fe220012073c539 /templates/feeds | |
parent | 0504fbeb92e83e92e1f1bc6e003bdb3f93c4318f (diff) | |
download | archweb-9f4902f9c921b82f924fe0af106fa5480ca10ca9.tar.gz archweb-9f4902f9c921b82f924fe0af106fa5480ca10ca9.tar.xz |
Ensure feed GUIDs are unchanging and unique
Implement 'tag:' style URIs for the GUID field on our RSS feeds. This
ensures new package updates show up as new, and we aren't jumping back
and forth between generated GUIDs having 'http://' and 'https://'
prefixes.
Much of the work here is to attempt to keep old news GUIDs constant so
we don't once again make everything show up as new in newsreaders.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/feeds')
-rw-r--r-- | templates/feeds/news_description.html | 2 | ||||
-rw-r--r-- | templates/feeds/news_title.html | 2 | ||||
-rw-r--r-- | templates/feeds/packages_description.html | 2 | ||||
-rw-r--r-- | templates/feeds/packages_title.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/feeds/news_description.html b/templates/feeds/news_description.html index a1e6446..e75d0af 100644 --- a/templates/feeds/news_description.html +++ b/templates/feeds/news_description.html @@ -1,3 +1,3 @@ {% load markup %} <p>{{obj.author.get_full_name}} wrote:</p> -{{ obj.content|markdown }} +{{ obj.content|markdown }}
\ No newline at end of file diff --git a/templates/feeds/news_title.html b/templates/feeds/news_title.html index d355de5..7899fce 100644 --- a/templates/feeds/news_title.html +++ b/templates/feeds/news_title.html @@ -1 +1 @@ -{{ obj.title }} +{{ obj.title }}
\ No newline at end of file diff --git a/templates/feeds/packages_description.html b/templates/feeds/packages_description.html index 6b9c47b..cfc4261 100644 --- a/templates/feeds/packages_description.html +++ b/templates/feeds/packages_description.html @@ -1 +1 @@ -{{ obj.pkgdesc }} +{{ obj.pkgdesc }}
\ No newline at end of file diff --git a/templates/feeds/packages_title.html b/templates/feeds/packages_title.html index 5c54ba6..f92ac68 100644 --- a/templates/feeds/packages_title.html +++ b/templates/feeds/packages_title.html @@ -1 +1 @@ -{{ obj.pkgname }} {{ obj.full_version }} {{ obj.arch.name }} +{{ obj.pkgname }} {{ obj.full_version }} {{ obj.arch.name }}
\ No newline at end of file |