summaryrefslogtreecommitdiff
path: root/feeds.py
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-10 21:35:45 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-10 21:35:45 -0300
commit755a03d279631138cb982dc07b2d67b341a4f99c (patch)
treee1abb54d2d339198955db8ae56e5ee6d0a1034e4 /feeds.py
parent44cd877682dedfe0abf8cdad9867e9f2c966e2db (diff)
Rebranded the Feeds
Diffstat (limited to 'feeds.py')
-rw-r--r--feeds.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/feeds.py b/feeds.py
index cbcccd77..3f1e95f0 100644
--- a/feeds.py
+++ b/feeds.py
@@ -78,7 +78,7 @@ class PackageFeed(Feed):
return obj
def title(self, obj):
- s = 'Arch Linux: Recent package updates'
+ s = 'Parabola GNU/Linux-libre: Recent package updates'
if 'repo' in obj:
s += ' (%s [%s])' % (obj['arch'].name, obj['repo'].name.lower())
elif 'arch' in obj:
@@ -86,7 +86,7 @@ class PackageFeed(Feed):
return s
def description(self, obj):
- s = 'Recently updated packages in the Arch Linux package repositories'
+ s = 'Recently updated packages in the Parabola GNU/Linux-libre package repositories'
if 'arch' in obj:
s += ' for the \'%s\' architecture' % obj['arch'].name.lower()
if not obj['arch'].agnostic:
@@ -131,9 +131,9 @@ def news_last_modified(request, *args, **kwargs):
return retrieve_news_latest()
class NewsFeed(Feed):
- title = 'Arch Linux: Recent news updates'
+ title = 'Parabola GNU/Linux-libre: Recent news updates'
link = '/news/'
- description = 'The latest and greatest news from the Arch Linux distribution.'
+ description = 'The latest news from the Parabola GNU/Linux-libre distribution.'
title_template = 'feeds/news_title.html'
description_template = 'feeds/news_description.html'