mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
1968754d97
commit
a5e6a8ed66
@ -392,10 +392,15 @@ class Chunker(object):
|
|||||||
shutil.rmtree(tdir)
|
shutil.rmtree(tdir)
|
||||||
orig = os.path.join(tdir, 'orig')
|
orig = os.path.join(tdir, 'orig')
|
||||||
rebuilt = os.path.join(tdir, 'rebuilt')
|
rebuilt = os.path.join(tdir, 'rebuilt')
|
||||||
for x in (orig, rebuilt):
|
chunks = os.path.join(tdir, 'chunks')
|
||||||
|
for x in (orig, rebuilt, chunks):
|
||||||
os.makedirs(x)
|
os.makedirs(x)
|
||||||
error = False
|
error = False
|
||||||
for i, skeleton in enumerate(self.skeletons):
|
for i, skeleton in enumerate(self.skeletons):
|
||||||
|
for j, chunk in enumerate(skeleton.chunks):
|
||||||
|
with open(os.path.join(chunks, 'file-%d-chunk-%d.html'%(i, j)),
|
||||||
|
'wb') as f:
|
||||||
|
f.write(chunk.raw)
|
||||||
oraw, rraw = orig_dumps[i], skeleton.rebuild()
|
oraw, rraw = orig_dumps[i], skeleton.rebuild()
|
||||||
with open(os.path.join(orig, '%04d.html'%i), 'wb') as f:
|
with open(os.path.join(orig, '%04d.html'%i), 'wb') as f:
|
||||||
f.write(oraw)
|
f.write(oraw)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user