From: Marek Stępniowski Date: Thu, 28 Aug 2008 17:02:04 +0000 (+0200) Subject: Now XSLT file is always searched for in a directory in which book2htm.py resides. X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/1883c7ed2399c00b31ea4328027c933d2672a0d8?hp=9e54c109d87bc35f06aecc5dbeda97010ab2fd7b Now XSLT file is always searched for in a directory in which book2htm.py resides. --- diff --git a/bin/book2html.py b/bin/book2html.py index e68435974..f66117d5d 100755 --- a/bin/book2html.py +++ b/bin/book2html.py @@ -12,7 +12,8 @@ from lxml import etree def transform(input_filename, output_filename): """Transforms file input_filename in XML to output_filename in XHTML.""" # Parse XSLT - style = etree.parse('book2html.xslt') + style_filename = os.path.join(os.path.dirname(__file__), 'book2html.xslt') + style = etree.parse(style_filename) doc_file = cStringIO.StringIO() expr = re.compile(r'/\s', re.MULTILINE | re.UNICODE);