fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
#1038: workaround for ADE problem with small-caps
[librarian.git]
/
scripts
/
book2html
diff --git
a/scripts/book2html
b/scripts/book2html
index
52795d9
..
a48aa64
100755
(executable)
--- a/
scripts/book2html
+++ b/
scripts/book2html
@@
-35,7
+35,7
@@
if __name__ == '__main__':
output_filename = os.path.splitext(input_filename)[0] + '.html'
try:
output_filename = os.path.splitext(input_filename)[0] + '.html'
try:
- html.transform(input_filename, output_filename, parse_dublincore=options.parse_dublincore)
+ html.transform(input_filename, output_filename, parse_dublincore=options.parse_dublincore
, flags=('full-page',)
)
except ParseError, e:
print '%(file)s:%(name)s:%(message)s' % {
'file': input_filename,
except ParseError, e:
print '%(file)s:%(name)s:%(message)s' % {
'file': input_filename,
@@
-54,5
+54,5
@@
if __name__ == '__main__':
'etype': e.__class__.__name__,
'message': e.message,
}
'etype': e.__class__.__name__,
'message': e.message,
}
- raise
e
+ raise