fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f27fd05
)
Now shelf archive contains all pdf, odt and txt formats from books.
author
Marek Stępniowski
<marek@stepniowski.com>
Thu, 18 Sep 2008 13:34:50 +0000
(15:34 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Thu, 18 Sep 2008 13:34:50 +0000
(15:34 +0200)
apps/catalogue/views.py
patch
|
blob
|
history
diff --git
a/apps/catalogue/views.py
b/apps/catalogue/views.py
index
de75803
..
0026c17
100644
(file)
--- a/
apps/catalogue/views.py
+++ b/
apps/catalogue/views.py
@@
-214,13
+214,21
@@
def download_shelf(request, slug):
temp = tempfile.TemporaryFile()
archive = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)
for book in models.Book.tagged.with_all(shelf):
temp = tempfile.TemporaryFile()
archive = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)
for book in models.Book.tagged.with_all(shelf):
- filename = book.html_file.path
- archive.write(filename, str('%s.html' % book.slug))
+ if book.pdf_file:
+ filename = book.pdf_file.path
+ archive.write(filename, str('%s.pdf' % book.slug))
+ if book.odt_file:
+ filename = book.odt_file.path
+ archive.write(filename, str('%s.odt' % book.slug))
+ if book.txt_file:
+ filename = book.txt_file.path
+ archive.write(filename, str('%s.txt' % book.slug))
archive.close()
archive.close()
+ # Write file to archive in small chunks
wrapper = FileWrapper(temp)
response = HttpResponse(wrapper, content_type='application/zip')
wrapper = FileWrapper(temp)
response = HttpResponse(wrapper, content_type='application/zip')
- response['Content-Disposition'] = 'attachment; filename=%s.zip' % shelf.s
lug
+ response['Content-Disposition'] = 'attachment; filename=%s.zip' % shelf.s
ort_key
response['Content-Length'] = temp.tell()
temp.seek(0)
return response
response['Content-Length'] = temp.tell()
temp.seek(0)
return response