parent
9d7c780488
commit
5579308e4d
14
api/views.py
14
api/views.py
|
@ -17,7 +17,7 @@ from django.http import (
|
|||
HttpResponseBadRequest,
|
||||
HttpResponseRedirect,
|
||||
Http404,
|
||||
#StreamingHttpResponse,
|
||||
StreamingHttpResponse,
|
||||
)
|
||||
|
||||
|
||||
|
@ -194,12 +194,10 @@ class OPDSAcquisitionView(View):
|
|||
work = request.GET.get('work', None)
|
||||
if work:
|
||||
if self.json:
|
||||
#return StreamingHttpResponse(opds_json.opds_feed_for_work(work),
|
||||
return HttpResponse(opds_json.opds_feed_for_work(work),
|
||||
return StreamingHttpResponse(opds_json.opds_feed_for_work(work),
|
||||
content_type="application/opds-publication+json")
|
||||
else:
|
||||
#return StreamingHttpResponse(opds.opds_feed_for_work(work),
|
||||
return HttpResponse(opds.opds_feed_for_work(work),
|
||||
return StreamingHttpResponse(opds.opds_feed_for_work(work),
|
||||
content_type="application/atom+xml;profile=opds-catalog;kind=acquisition")
|
||||
facet = kwargs.get('facet')
|
||||
page = request.GET.get('page', None)
|
||||
|
@ -214,8 +212,7 @@ class OPDSAcquisitionView(View):
|
|||
content_type="application/opds+json")
|
||||
else:
|
||||
facet_class = opds.get_facet_class(facet)()
|
||||
#return StreamingHttpResponse(facet_class.feed(page,order_by),
|
||||
return HttpResponse(facet_class.feed(page,order_by),
|
||||
return StreamingHttpResponse(facet_class.feed(page,order_by),
|
||||
content_type="application/atom+xml;profile=opds-catalog;kind=acquisition")
|
||||
|
||||
|
||||
|
@ -250,6 +247,5 @@ class OnixView(View):
|
|||
page = None
|
||||
|
||||
feed = onix.onix_feed(facet_class, max_records, page_number=page)
|
||||
#return StreamingHttpResponse(feed, content_type="text/xml")
|
||||
return HttpResponse(feed, content_type="text/xml")
|
||||
return StreamingHttpResponse(feed, content_type="text/xml")
|
||||
|
||||
|
|
Loading…
Reference in New Issue