from librarian.parser import WLDocument
from librarian import ParseError, DCNS, get_resource, OutputFile
from librarian import functions
+from librarian.cover import ImageCover as WLCover
functions.reg_substitute_entities()
'wl2tex': 'pdf/wl2tex.xslt',
}
-CUSTOMIZATIONS = [
- 'nofootnotes',
- 'nothemes',
- 'onehalfleading',
- 'doubleleading',
- 'nowlfont',
- ]
+#CUSTOMIZATIONS = [
+# 'nofootnotes',
+# 'nothemes',
+# 'defaultleading',
+# 'onehalfleading',
+# 'doubleleading',
+# 'nowlfont',
+# ]
def insert_tags(doc, split_re, tagname, exclude=None):
""" inserts <tagname> for every occurence of `split_re' in text nodes in the `doc' tree
def transform(wldoc, verbose=False, save_tex=None, morefloats=None,
- cover=None, flags=None, customizations=None):
+ cover=None, flags=None, customizations=None,
+ imgdir=""):
""" produces a PDF file with XeLaTeX
wldoc: a WLDocument
document = load_including_children(wldoc)
if cover:
- document.edoc.getroot().set('data-cover-width', str(cover.width))
- document.edoc.getroot().set('data-cover-height', str(cover.height))
+ if cover is True:
+ cover = WLCover
+ the_cover = cover(document.book_info)
+ document.edoc.getroot().set('data-cover-width', str(the_cover.width))
+ document.edoc.getroot().set('data-cover-height', str(the_cover.height))
+ if the_cover.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:
+ document.edoc.getroot().set('data-cover-source', document.book_info.cover_source)
if flags:
for flag in flags:
document.edoc.getroot().set('flag-' + flag, 'yes')
document.edoc.getroot().set('customizations', u','.join(customizations))
# hack the tree
- move_motifs_inside(document.edoc)
- hack_motifs(document.edoc)
+ #move_motifs_inside(document.edoc)
+ #hack_motifs(document.edoc)
parse_creator(document.edoc)
- substitute_hyphens(document.edoc)
+ if document.book_info.language == 'pol':
+ substitute_hyphens(document.edoc)
fix_hanging(document.edoc)
# wl -> TeXML
style = etree.parse(style_filename)
texml = document.transform(style)
-
+ etree.dump(texml.getroot())
# TeXML -> LaTeX
temp = mkdtemp('-wl2pdf')
if cover:
- c = cover(document.book_info.author.readable(), document.book_info.title)
- with open(os.path.join(temp, 'cover.png'), 'w') as f:
- c.save(f)
+ with open(os.path.join(temp, 'cover.jpg'), 'w') as f:
+ the_cover.save(f)
+
+ shutil.copy("logo.eps", temp)
+ for img in document.edoc.findall('//ilustr'):
+ shutil.copy(os.path.join(imgdir, img.get('src')), temp)
+
del document # no longer needed large object :)
# LaTeX -> PDF
shutil.copy(get_resource('pdf/wl.cls'), temp)
shutil.copy(get_resource('res/wl-logo.png'), temp)
+ shutil.copy('logo.eps', temp)
cwd = os.getcwd()
os.chdir(temp)
return OutputFile.from_filename(output_file.name)
except (XMLSyntaxError, XSLTApplyError), e:
+ print e
raise ParseError(e)