Fundraising in PDF.
[wolnelektury.git] / src / catalogue / feeds.py
index 82b0a75..ee4b37f 100644 (file)
@@ -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'<br/>\n'.join(lines)
+            lines.append('Reżyseria: %s' % director)
+        return '<br/>\n'.join(lines)
 
     def item_link(self, item):
         return item.book.get_absolute_url()