+ url(r'^jtags/$', 'json_tags_starting_with', name='jhint'),
+ url(r'^nowe/$', ListView.as_view(
+ queryset=Book.objects.filter(parent=None).order_by('-created_at'),
+ template_name='catalogue/recent_list.html'), name='recent_list'),
+ url(r'^nowe/audiobooki/$', ListView.as_view(
+ queryset=Book.objects.filter(media__type__in=('mp3', 'ogg')).annotate(m=Max('media__uploaded_at')).order_by('-m'),
+ template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
+ url(r'^nowe/daisy/$', ListView.as_view(
+ queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m'),
+ template_name='catalogue/recent_daisy_list.html'), name='recent_daisy_list'),
+
+ url(r'^custompdf/(?P<slug>%s)/$' % SLUG, CustomPDFFormView(), name='custom_pdf_form'),
+
+ url(r'^audiobooki/(?P<type>mp3|ogg|daisy|all).xml$', AudiobookFeed(), name='audiobook_feed'),
+
+
+ # zip
+ url(r'^zip/pdf\.zip$', 'download_zip', {'format': 'pdf', 'slug': None}, 'download_zip_pdf'),
+ url(r'^zip/epub\.zip$', 'download_zip', {'format': 'epub', 'slug': None}, 'download_zip_epub'),
+ url(r'^zip/mobi\.zip$', 'download_zip', {'format': 'mobi', 'slug': None}, 'download_zip_mobi'),
+ url(r'^zip/mp3/(?P<slug>%s)\.zip' % SLUG, 'download_zip', {'format': 'mp3'}, 'download_zip_mp3'),
+ url(r'^zip/ogg/(?P<slug>%s)\.zip' % SLUG, 'download_zip', {'format': 'ogg'}, 'download_zip_ogg'),
+