regluit/core/epub.py

17 lines
635 B
Python
Raw Normal View History

"""
Utilities that manipulate epub files
"""
2013-09-21 00:59:40 +00:00
from regluit.pyepub import EPUB
from StringIO import StringIO
from django.template.loader import render_to_string
def personalize(epub_file, acq):
output = EPUB(epub_file, "a")
context={'acq':acq}
part = StringIO(unicode(render_to_string('epub/datedcc_license.xhtml', context)))
output.addpart(part, "datedcc_license.xhtml", "application/xhtml+xml", 1) #after title, we hope
2013-09-20 21:44:37 +00:00
output.addmetadata('rights','%s after %s'%(acq.work.last_campaign().license_url,acq.work.last_campaign().cc_date))
output.close()
2013-09-20 21:45:28 +00:00
#output.writetodisk('testfile2.epub')
return output