return tempnode.text
-def xslt(xml, sheet):
+def xslt(xml, sheet, **kwargs):
if isinstance(xml, etree._Element):
xml = etree.ElementTree(xml)
with open(sheet) as xsltf:
- return xml.xslt(etree.parse(xsltf))
+ transform = etree.XSLT(etree.parse(xsltf))
+ params = dict((key, transform.strparam(value)) for key, value in kwargs.iteritems())
+ return transform(xml, **params)
def replace_characters(node):
def transform(wldoc, verbose=False, style=None, html_toc=False,
- sample=None, cover=None, flags=None, hyphenate=False, ilustr_path=''):
+ sample=None, cover=None, flags=None, hyphenate=False, ilustr_path='', output_type='epub'):
""" produces a EPUB file
sample=n: generate sample e-book (with at least n paragraphs)
chars = set()
if first:
# write book title page
- html_tree = xslt(wldoc.edoc, get_resource('epub/xsltTitle.xsl'))
+ html_tree = xslt(wldoc.edoc, get_resource('epub/xsltTitle.xsl'), outputtype=output_type)
chars = used_chars(html_tree.getroot())
zip.writestr(
'OPS/title.html',
'<item id="last" href="last.html" media-type="application/xhtml+xml" />'))
spine.append(etree.fromstring(
'<itemref idref="last" />'))
- html_tree = xslt(document.edoc, get_resource('epub/xsltLast.xsl'))
+ html_tree = xslt(document.edoc, get_resource('epub/xsltLast.xsl'), outputtype=output_type)
chars.update(used_chars(html_tree.getroot()))
zip.writestr('OPS/last.html', etree.tostring(
html_tree, pretty_print=True, xml_declaration=True,
print "Running font-optimizer"
subprocess.check_call(optimizer_call)
else:
- subprocess.check_call(optimizer_call, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ dev_null = open(os.devnull, 'w')
+ subprocess.check_call(optimizer_call, stdout=dev_null, stderr=dev_null)
zip.write(os.path.join(tmpdir, fname), os.path.join('OPS', fname))
manifest.append(etree.fromstring(
'<item id="%s" href="%s" media-type="application/x-font-truetype" />' % (fname, fname)))
<xsl:output method="html" version="1.0" encoding="utf-8" />
<xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
<xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
+ <xsl:param name="outputtype"/>
<xsl:template match="utwor">
<html>
</p>
</xsl:if>
+ <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
+ <xsl:if test=".//meta[@id=$isbnId]">
+ <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
+ <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
+ </xsl:if>
+
<p class="info"> </p>
<p class="minor-info">
Plik wygenerowany dnia <span id="file_date"><xsl:value-of select="substring(date:date(), 1, 10)" /></span>.
<xsl:output method="html" version="1.0" encoding="utf-8" />
<xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
<xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
+ <xsl:param name="outputtype"/>
<xsl:template match="/">
<html>
Utwór opracowany został w ramach projektu<a href="http://www.wolnelektury.pl/"> Wolne Lektury</a> przez<a href="http://www.nowoczesnapolska.org.pl/"> fundację Nowoczesna Polska</a>.
</p>
+ <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
+ <xsl:if test=".//meta[@id=$isbnId]">
+ <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
+ <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
+ </xsl:if>
+
<p class="footer info">
<a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
</p>