Changeset - c6e531a01ff8
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 11 days ago 2024-04-26 06:33:55
ben@sturm.com.au
podjango: Use feed title from database
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
conservancy/podjango/feeds.py
Show inline comments
...
 
@@ -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):
0 comments (0 inline, 0 general)