fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
DC fixups for Pictures
[librarian.git]
/
scripts
/
book2epub
diff --git
a/scripts/book2epub
b/scripts/book2epub
index
ea87483
..
9af3692
100755
(executable)
--- a/
scripts/book2epub
+++ b/
scripts/book2epub
@@
-2,12
+2,13
@@
# -*- coding: utf-8 -*-
#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# -*- coding: utf-8 -*-
#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
import os.path
import optparse
#
import os.path
import optparse
-from librarian import epub, DirDocProvider, ParseError
+from librarian import DirDocProvider, ParseError
+from librarian.parser import WLDocument
if __name__ == '__main__':
if __name__ == '__main__':
@@
-37,22
+38,23
@@
if __name__ == '__main__':
for main_input in input_filenames:
if options.verbose:
print main_input
for main_input in input_filenames:
if options.verbose:
print main_input
+
path, fname = os.path.realpath(main_input).rsplit('/', 1)
provider = DirDocProvider(path)
path, fname = os.path.realpath(main_input).rsplit('/', 1)
provider = DirDocProvider(path)
-
- output_dir = output_file = None
- if options.output_dir:
- output_dir = options.output_dir
- elif options.output_file:
- output_file = options.output_file
+ if not (options.output_file or options.output_dir):
+ output_file = os.path.splitext(main_input)[0] + '.epub'
else:
else:
- output_dir = path
+ output_file = None
+
+ doc = WLDocument.from_file(main_input, provider=provider)
+ epub = doc.as_epub()
+
+ doc.save_output_file(epub,
+ output_file, options.output_dir, options.make_dir, 'epub')
- epub.transform(provider, file_path=main_input, output_dir=output_dir, output_file=output_file, make_dir=options.make_dir)
except ParseError, e:
print '%(file)s:%(name)s:%(message)s' % {
'file': main_input,
'name': e.__class__.__name__,
except ParseError, e:
print '%(file)s:%(name)s:%(message)s' % {
'file': main_input,
'name': e.__class__.__name__,
- 'message': e
.message
+ 'message': e
}
}
-
\ No newline at end of file