diff options
-rw-r--r-- | feeds.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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' |