diff --git a/www/conservancy/feeds.py b/www/conservancy/feeds.py index 2c244f8fac63b350a51b3ec87dfd188ecc199bf1..0f4a471762b2d7121c245c157e3117abcb59e845 100644 --- a/www/conservancy/feeds.py +++ b/www/conservancy/feeds.py @@ -43,10 +43,10 @@ class PressReleaseFeed(Feed): return PressRelease.objects.filter(pub_date__lte=datetime.now(), sites__id__exact=settings.SITE_ID).order_by('-pub_date')[:10] def item_title(self, item): - return item.title + return item.headline def item_description(self, item): - return item.title + return item.summary def item_pubdate(self, item): return item.pub_date @@ -82,10 +82,10 @@ class OmnibusFeed(ConservancyFeedBase): author_name = "Software Freedom Conservancy" def item_title(self, item): - return item.title + return item.headline def item_description(self, item): - return item.description + return item.summary def item_enclosure_mime_type(self): return "audio/mpeg" @@ -211,10 +211,10 @@ class BlogFeed(ConservancyFeedBase): return answer def item_title(self, item): - return item.title + return item.headline def item_description(self, item): - return item.description + return item.summary def item_author_name(self, item): return item.author.formal_name