mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
docbook2epub: create the OEBPS and META-INF folders that Saxon seems unable to create.
This commit is contained in:
parent
92b656c17b
commit
637ae9528f
@ -60,9 +60,14 @@ class DocBookToEpub:
|
|||||||
|
|
||||||
# Precompute paths that will be used later.
|
# Precompute paths that will be used later.
|
||||||
self.output_dir = tempfile.mkdtemp().replace('\\', '/')
|
self.output_dir = tempfile.mkdtemp().replace('\\', '/')
|
||||||
self.package_opf = self.output_dir + '/OEBPS/package.opf' # Does not exist yet,
|
self.package_opf = self.output_dir + '/OEBPS/package.opf'
|
||||||
print('Temporary output directory: %s' % self.output_dir)
|
print('Temporary output directory: %s' % self.output_dir)
|
||||||
|
|
||||||
|
os.mkdir(self.output_dir + '/OEBPS')
|
||||||
|
os.mkdir(self.output_dir + '/OEBPS/images')
|
||||||
|
os.mkdir(self.output_dir + '/META-INF')
|
||||||
|
print('Created the folder structure')
|
||||||
|
|
||||||
if self.xslt_path is None:
|
if self.xslt_path is None:
|
||||||
self.xslt = self.script_folder + 'docbook/epub3/chunk.xsl'
|
self.xslt = self.script_folder + 'docbook/epub3/chunk.xsl'
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user