2013-09-16 01:43:58 +00:00
|
|
|
"""
|
|
|
|
Utilities that manipulate epub files
|
|
|
|
"""
|
|
|
|
|
2013-09-21 00:59:40 +00:00
|
|
|
from regluit.pyepub import EPUB
|
2013-09-16 01:43:58 +00:00
|
|
|
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}
|
2013-11-12 23:48:43 +00:00
|
|
|
part = StringIO(unicode(render_to_string('epub/datedcc_license.xhtml', context)))
|
2013-09-16 01:43:58 +00:00
|
|
|
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))
|
2013-09-16 01:43:58 +00:00
|
|
|
output.close()
|
2013-09-20 21:45:28 +00:00
|
|
|
#output.writetodisk('testfile2.epub')
|
2013-09-16 01:43:58 +00:00
|
|
|
return output
|