X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/c2d3ff4643de9a2bfbb462d5a82982896e4454bc..75abfdc7e8f14937b825a1502bb564fe2063ced4:/librarian/epub.py diff --git a/librarian/epub.py b/librarian/epub.py index 6ab4928..17550b2 100644 --- a/librarian/epub.py +++ b/librarian/epub.py @@ -446,10 +446,10 @@ def transform(wldoc, verbose=False, cover = WLCover cover_file = StringIO() - bound_cover = cover(document.book_info) - bound_cover.save(cover_file) - cover_name = 'cover.%s' % bound_cover.ext() - zip.writestr(os.path.join('OPS', cover_name), cover_file.getvalue()) + c = cover(document.book_info) + c.save(cover_file) + c_name = 'cover.%s' % c.ext() + zip.writestr(os.path.join('OPS', c_name), cover_file.getvalue()) del cover_file cover_tree = etree.parse(get_resource('epub/cover.html')) @@ -506,6 +506,15 @@ def transform(wldoc, verbose=False, zip.writestr('OPS/annotations.html', etree.tostring( html_tree, method="html", pretty_print=True)) + # toc.add("Weprzyj Wolne Lektury", "support.html") + # manifest.append(etree.fromstring( + # '')) + # spine.append(etree.fromstring( + # '')) + # html_string = open(get_resource('epub/support.html')).read() + # chars.update(used_chars(etree.fromstring(html_string))) + # zip.writestr('OPS/support.html', html_string) + toc.add("Strona redakcyjna", "last.html") manifest.append(etree.fromstring( ''))