fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Handle all date formats in a primitive way (always take the beginning of period)
[librarian.git]
/
librarian
/
pdf.py
diff --git
a/librarian/pdf.py
b/librarian/pdf.py
index
9fb92b1
..
b4edfdb
100644
(file)
--- a/
librarian/pdf.py
+++ b/
librarian/pdf.py
@@
-231,6
+231,10
@@
def transform(wldoc, verbose=False, save_tex=None, morefloats=None,
# add editors info
root.set('editors', u', '.join(sorted(
editor.readable() for editor in document.editors())))
# add editors info
root.set('editors', u', '.join(sorted(
editor.readable() for editor in document.editors())))
+ if document.book_info.funders:
+ root.set('funders', u', '.join(document.book_info.funders))
+ if document.book_info.thanks:
+ root.set('thanks', document.book_info.thanks)
# hack the tree
move_motifs_inside(document.edoc)
# hack the tree
move_motifs_inside(document.edoc)