from django.shortcuts import get_object_or_404
from django.utils.feedgenerator import Atom1Feed
from django.conf import settings
-from django.http import Http404, HttpResponse
+from django.http import Http404
from django.contrib.sites.models import Site
from django.utils.functional import lazy
return u''
def item_enclosure_url(self, book):
- return full_url(book.epub_file.url) if book.epub_file else None
+ return full_url(book.epub_url()) if book.epub_file else None
def item_enclosure_length(self, book):
return book.epub_file.size if book.epub_file else None
ATOM_PLACEHOLDER = re.compile(r"^{(atom|opds):\w+}$")
- def __call__(self, *args, **kwargs):
- return HttpResponse('Search is temporarily disabled', status=503)
-
def get_object(self, request):
"""
For OPDS 1.1 We should handle a query for search terms