fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
update editor
[redakcja.git]
/
apps
/
catalogue
/
ebook_utils.py
diff --git
a/apps/catalogue/ebook_utils.py
b/apps/catalogue/ebook_utils.py
index
5961b63
..
b27f072
100644
(file)
--- a/
apps/catalogue/ebook_utils.py
+++ b/
apps/catalogue/ebook_utils.py
@@
-1,16
+1,7
@@
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
-from catalogue.models import Book
-from librarian import DocProvider
from django.http import HttpResponse
from django.http import HttpResponse
-class RedakcjaDocProvider(DocProvider):
- """Used for getting books' children."""
-
- def by_slug(self, slug):
- return Book.objects.get(dc_slug=slug).xml_file
-
-
def serve_file(file_path, name, mime_type):
def read_chunks(f, size=8192):
chunk = f.read(size)
def serve_file(file_path, name, mime_type):
def read_chunks(f, size=8192):
chunk = f.read(size)
@@
-18,7
+9,7
@@
def serve_file(file_path, name, mime_type):
yield chunk
chunk = f.read(size)
yield chunk
chunk = f.read(size)
- response = HttpResponse(
mime
type=mime_type)
+ response = HttpResponse(
content_
type=mime_type)
response['Content-Disposition'] = 'attachment; filename=%s' % name
with open(file_path) as f:
for chunk in read_chunks(f):
response['Content-Disposition'] = 'attachment; filename=%s' % name
with open(file_path) as f:
for chunk in read_chunks(f):