from shutil import rmtree
from librarian import RDFNS, WLNS, NCXNS, OPFNS, XHTMLNS, OutputFile
-from librarian.cover import WLCover
+from librarian.cover import WLCover, FutureOfCopyrightCover
from librarian import functions, get_resource
Slashes may only occur directly in the stanza. Any slashes in subelements
will be ignored, and the subelements will be put inside verse elements.
- >>> s = etree.fromstring("<strofa>a/\\nb<x>x/\\ny</x>c/ \\nd</strofa>")
+ >>> s = etree.fromstring("<strofa>a <b>c</b> <b>c</b>/\\nb<x>x/\\ny</x>c/ \\nd</strofa>")
>>> Stanza(s).versify()
>>> print etree.tostring(s)
- <strofa><wers_normalny>a</wers_normalny><wers_normalny>b<x>x/
+ <strofa><wers_normalny>a <b>c</b> <b>c</b></wers_normalny><wers_normalny>b<x>x/
y</x>c</wers_normalny><wers_normalny>d</wers_normalny></strofa>
"""
return self.open_verse
def push_text(self, text):
- if not text or not text.strip():
+ if not text:
return
for i, verse_text in enumerate(re.split(r"/\s*\n", text)):
if i:
self.open_normal_verse()
verse = self.get_open_verse()
if len(verse):
- verse[-1].tail = (verse[-1].tail or "") + verse_text.strip()
+ verse[-1].tail = (verse[-1].tail or "") + verse_text
else:
- verse.text = (verse.text or "") + verse_text.strip()
+ verse.text = (verse.text or "") + verse_text
def push_elem(self, elem):
if elem.tag.startswith("wers"):
zip.writestr('OPS/title.html',
etree.tostring(html_tree, method="html", pretty_print=True))
# add a title page TOC entry
- toc.add(u"Strona tytułowa", "title.html")
+ toc.add(u"Title", "title.html")
elif wldoc.book_info.parts:
# write title page for every parent
if sample is not None and sample <= 0:
'media-type="application/oebps-package+xml" />' \
'</rootfiles></container>')
zip.write(get_resource('res/wl-logo-small.png'), os.path.join('OPS', 'logo_wolnelektury.png'))
+ zip.write(get_resource('res/logo.png'), os.path.join('OPS', 'logo.png'))
zip.write(get_resource('res/jedenprocent.png'), os.path.join('OPS', 'jedenprocent.png'))
if not style:
style = get_resource('epub/style.css')
if cover:
if cover is True:
- cover = WLCover
+ cover = FutureOfCopyrightCover
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'))
- cover_tree.find('//' + XHTMLNS('img')).set('src', cover_name)
+ cover_tree.find('//' + XHTMLNS('img')).set('src', c_name)
zip.writestr('OPS/cover.html', etree.tostring(
cover_tree, method="html", pretty_print=True))
- if bound_cover.uses_dc_cover:
+ if c.uses_dc_cover:
if document.book_info.cover_by:
document.edoc.getroot().set('data-cover-by', document.book_info.cover_by)
if document.book_info.cover_source:
manifest.append(etree.fromstring(
'<item id="cover" href="cover.html" media-type="application/xhtml+xml" />'))
manifest.append(etree.fromstring(
- '<item id="cover-image" href="%s" media-type="%s" />' % (cover_name, bound_cover.mime_type())))
+ '<item id="cover-image" href="%s" media-type="%s" />' % (c_name, c.mime_type())))
spine.insert(0, etree.fromstring('<itemref idref="cover" linear="no" />'))
opf.getroot()[0].append(etree.fromstring('<meta name="cover" content="cover-image"/>'))
guide.append(etree.fromstring('<reference href="cover.html" type="cover" title="Okładka"/>'))
-
+
+
annotations = etree.Element('annotations')
'</navMap></ncx>')
nav_map = toc_file[-1]
+ manifest.append(etree.fromstring(
+ '<item id="intro" href="intro.html" media-type="application/xhtml+xml" />'))
+ spine.append(etree.fromstring(
+ '<itemref idref="intro" />'))
+ zip.writestr('OPS/intro.html', open(get_resource('epub/intro.html')).read())
+
+
if html_toc:
manifest.append(etree.fromstring(
'<item id="html_toc" href="toc.html" media-type="application/xhtml+xml" />'))
spine.append(etree.fromstring(
'<itemref idref="html_toc" />'))
- guide.append(etree.fromstring('<reference href="toc.html" type="toc" title="Spis treści"/>'))
+ guide.append(etree.fromstring('<reference href="toc.html" type="toc" title="Table of Contents"/>'))
toc, chunk_counter, chars, sample = transform_file(document, sample=sample)
if len(toc.children) < 2:
- toc.add(u"Początek utworu", "part1.html")
+ toc.add(u"Beginning of the book", "part1.html")
# Last modifications in container files and EPUB creation
if len(annotations) > 0:
- toc.add("Przypisy", "annotations.html")
+ toc.add("Footnotes", "annotations.html")
manifest.append(etree.fromstring(
'<item id="annotations" href="annotations.html" media-type="application/xhtml+xml" />'))
spine.append(etree.fromstring(
zip.writestr('OPS/annotations.html', etree.tostring(
html_tree, method="html", pretty_print=True))
- toc.add("Strona redakcyjna", "last.html")
+ # toc.add("Weprzyj Wolne Lektury", "support.html")
+ # manifest.append(etree.fromstring(
+ # '<item id="support" href="support.html" media-type="application/xhtml+xml" />'))
+ # spine.append(etree.fromstring(
+ # '<itemref idref="support" />'))
+ # 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("Editors", "last.html")
manifest.append(etree.fromstring(
'<item id="last" href="last.html" media-type="application/xhtml+xml" />'))
spine.append(etree.fromstring(
# write TOC
if html_toc:
- toc.add(u"Spis treści", "toc.html", index=1)
+ toc.add(u"Table of Contents", "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))