diff options
Diffstat (limited to 'feeds.py')
-rw-r--r-- | feeds.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,6 +1,7 @@ from datetime import datetime, time from pytz import utc +from django.conf import settings from django.contrib.sites.models import Site from django.contrib.syndication.views import Feed from django.db import connection @@ -80,7 +81,7 @@ class PackageFeed(Feed): return obj def title(self, obj): - s = 'Arch Linux: Recent package updates' + s = settings.BRANDING_DISTRONAME+': Recent package updates' if 'repo' in obj and 'arch' in obj: s += ' (%s [%s])' % (obj['arch'].name, obj['repo'].name.lower()) elif 'repo' in obj: @@ -90,7 +91,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 '+settings.BRANDING_DISTRONAME+' package repositories' if 'arch' in obj: s += ' for the \'%s\' architecture' % obj['arch'].name.lower() if not obj['arch'].agnostic: @@ -136,9 +137,9 @@ def news_last_modified(request, *args, **kwargs): class NewsFeed(Feed): feed_type = FasterRssFeed - title = 'Arch Linux: Recent news updates' + title = settings.BRANDING_DISTRONAME+': Recent news updates' link = '/news/' - description = 'The latest and greatest news from the Arch Linux distribution.' + description = 'The latest and greatest news from the '+settings.BRANDING_DISTRONAME+' distribution.' subtitle = description def __call__(self, request, *args, **kwargs): @@ -175,7 +176,7 @@ class NewsFeed(Feed): class ReleaseFeed(Feed): feed_type = FasterRssFeed - title = 'Arch Linux: Releases' + title = settings.BRANDING_DISTRONAME+': Releases' link = '/download/' description = 'Release ISOs' subtitle = description |