podjango: Use feed title from database

This commit is contained in:
Ben Sturmfels 2024-04-26 16:33:55 +10:00
parent 968c0c4fba
commit c6e531a01f
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -68,7 +68,7 @@ def for_podcast_feed_extra_kwargs(self, obj):
'iTunesExplicit': 'No',
'iTunesBlock': 'No',
'iTunesImage': {'url': add_domain(self.current_site.domain, obj.icon.url, self.is_secure),
'title': 'The Corresponding Source (formerly Free as in Freedom)',
'title': obj.title,
'link': self.author_link,
'type': 'video/jpg'},
'category': {'name': 'Government & Organizations', 'scheme': 'http://www.itunes.com/dtds/podcast-1.0.dtd',
@ -186,7 +186,6 @@ class iTunesFeedType(Rss201rev2Feed):
class CastFeed(CastFeedBase):
feed_type = iTunesFeedType
title = "The Corresponding Source (formerly Free as in Freedom)"
link = "/cast/"
description = "A bi-weekly discussion of legal, policy, and other issues in the open source and software freedom community (including occasional interviews) from Brooklyn, New York, USA. Presented by Karen Sandler and Bradley M. Kuhn."
author_email = "podcast@faif.us"
@ -206,6 +205,7 @@ class CastFeed(CastFeedBase):
def get_object(self, request, podcast_slug):
self.podcast = Podcast.objects.get(slug=podcast_slug)
self.title = self.podcast.title
return self.podcast
def items(self, obj):