X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c2e8051452fa55db096553cbe5ae622fc363d481..HEAD:/src/catalogue/feeds.py diff --git a/src/catalogue/feeds.py b/src/catalogue/feeds.py index 82b0a75fd..ee4b37f1b 100644 --- a/src/catalogue/feeds.py +++ b/src/catalogue/feeds.py @@ -1,5 +1,5 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from django.contrib.sites.models import Site from django.contrib.syndication.views import Feed @@ -39,6 +39,7 @@ class AudiobookFeed(Feed): def items(self, args): objects = models.BookMedia.objects.order_by('-uploaded_at') + objects = objects.filter(book__findable=True) if type == 'all': objects = objects.filter(type__in=('mp3', 'ogg', 'daisy')) else: @@ -58,11 +59,11 @@ class AudiobookFeed(Feed): extra_info = item.get_extra_info_json() artist = extra_info.get('artist_name', None) if artist is not None: - lines.append(u'Czyta: %s' % artist) + lines.append('Czyta: %s' % artist) director = extra_info.get('director_name', None) if director is not None: - lines.append(u'Reżyseria: %s' % director) - return u'
\n'.join(lines) + lines.append('Reżyseria: %s' % director) + return '
\n'.join(lines) def item_link(self, item): return item.book.get_absolute_url()