X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/0f3e12398ddbbb07a71eeafb3f960631777cabdc..af22d85a680618fd3223846073db60d077834021:/librarian/epub.py diff --git a/librarian/epub.py b/librarian/epub.py index fcc2bfe..8dc11c7 100644 --- a/librarian/epub.py +++ b/librarian/epub.py @@ -15,10 +15,11 @@ from lxml import etree import zipfile from tempfile import mkdtemp, NamedTemporaryFile from shutil import rmtree +from mimetypes import guess_type from librarian import RDFNS, WLNS, NCXNS, OPFNS, XHTMLNS, OutputFile from librarian.cover import WLCover, FutureOfCopyrightCover - +from librarian.latex import LatexFragment from librarian import functions, get_resource functions.reg_person_name() @@ -329,9 +330,27 @@ def transform_chunk(chunk_xml, chunk_no, annotations, empty=False, _empty_html_s return output_html, toc, chars +def render_latex(wldoc, prefix="latex"): + """ + Renders CODE as images and returns + (changed_wldoc, [ (epub_filepath1, latexfragment_object1), ... ] +""" + root = wldoc.edoc.getroot() + latex_nodes = root.findall(".//latex") + images = [] + for ln in latex_nodes: + fragment = LatexFragment(ln.text, resize=40) + images.append((os.path.join(prefix, fragment.filename), fragment)) + ln.tag = "img" + ln.text = os.path.join(prefix, fragment.filename) + + return wldoc, images + + def transform(wldoc, verbose=False, style=None, html_toc=False, - sample=None, cover=None, flags=None): + sample=None, cover=None, flags=None, resources=None, + intro_file=None, cover_file=None): """ produces a EPUB file sample=n: generate sample e-book (with at least n paragraphs) @@ -355,7 +374,7 @@ def transform(wldoc, verbose=False, zip.writestr('OPS/title.html', etree.tostring(html_tree, method="html", pretty_print=True)) # add a title page TOC entry - toc.add(u"Title", "title.html") + toc.add(u"Tytuł", "title.html") elif wldoc.book_info.parts: # write title page for every parent if sample is not None and sample <= 0: @@ -442,6 +461,25 @@ def transform(wldoc, verbose=False, style = get_resource('epub/style.css') zip.write(style, os.path.join('OPS', 'style.css')) + document, latex_images = render_latex(document) + for image in latex_images: + zip.write(image[1].path, os.path.join('OPS', image[0])) + image[1].remove() + + if resources: + if os.path.isdir(resources): + for dp, dirs, files in os.walk(resources): + for fname in files: + fpath = os.path.join(dp, fname) + if os.path.isfile(fpath): + zip.write(fpath, os.path.join('OPS', fname)) + manifest.append(etree.fromstring( + '' % (os.path.splitext(fname)[0], fname, guess_type(fpath)[0]))) + + else: + print "resources path %s is not directory" % resources + + if cover: if cover is True: cover = FutureOfCopyrightCover @@ -484,10 +522,20 @@ def transform(wldoc, verbose=False, nav_map = toc_file[-1] manifest.append(etree.fromstring( - '')) + '')) spine.append(etree.fromstring( - '')) - zip.writestr('OPS/intro.html', open(get_resource('epub/intro.html')).read()) + '')) + html_tree = xslt(document.edoc, get_resource('epub/xsltFirst.xsl')) +# chars.update(used_chars(html_tree.getroot())) + zip.writestr('OPS/first.html', etree.tostring( + html_tree, method="html", pretty_print=True)) + + if intro_file: + manifest.append(etree.fromstring( + '')) + spine.append(etree.fromstring( + '')) + zip.writestr('OPS/intro.html', open(intro_file or get_resource('epub/intro.html')).read()) if html_toc: @@ -499,12 +547,14 @@ def transform(wldoc, verbose=False, toc, chunk_counter, chars, sample = transform_file(document, sample=sample) + toc.add("Informacje redakcyjne", "first.html", index=0) + if len(toc.children) < 2: - toc.add(u"Beginning of the book", "part1.html") + toc.add(u"Początek książki", "part1.html") # Last modifications in container files and EPUB creation if len(annotations) > 0: - toc.add("Footnotes", "annotations.html") + toc.add("Przypisy", "annotations.html") manifest.append(etree.fromstring( '')) spine.append(etree.fromstring( @@ -524,7 +574,7 @@ def transform(wldoc, verbose=False, # chars.update(used_chars(etree.fromstring(html_string))) # zip.writestr('OPS/support.html', html_string) - toc.add("Editors", "last.html") + toc.add("Informacje redakcyjne", "last.html") manifest.append(etree.fromstring( '')) spine.append(etree.fromstring( @@ -572,7 +622,7 @@ def transform(wldoc, verbose=False, # write TOC if html_toc: - toc.add(u"Table of Contents", "toc.html", index=1) + toc.add(u"Spis treści", "toc.html", index=1) zip.writestr('OPS/toc.html', toc.html().encode('utf-8')) toc.write_to_xml(nav_map) zip.writestr('OPS/toc.ncx', etree.tostring(toc_file, pretty_print=True))