* examples/readdisc.py:
* examples/readhtoa.py: * examples/readtoc.py: Rename IndexTable to Table.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2009-05-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* examples/readdisc.py:
|
||||
* examples/readhtoa.py:
|
||||
* examples/readtoc.py:
|
||||
Rename IndexTable to Table.
|
||||
|
||||
2009-05-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/image/cue.py:
|
||||
|
||||
@@ -234,7 +234,7 @@ def main(argv):
|
||||
# now, read the complete index table, which is slower
|
||||
ptable = common.Persister(options.table_pickle or None)
|
||||
if not ptable.object:
|
||||
t = cdrdao.ReadIndexTableTask()
|
||||
t = cdrdao.ReadTableTask()
|
||||
function(runner, t)
|
||||
ptable.persist(t.table)
|
||||
itable = ptable.object
|
||||
@@ -270,7 +270,7 @@ def main(argv):
|
||||
print 'Checksums match for track %d' % 0
|
||||
else:
|
||||
print 'ERROR: checksums did not match for track %d' % 0
|
||||
# overlay this rip onto the IndexTable
|
||||
# overlay this rip onto the Table
|
||||
itable.setFile(1, 0, htoapath, htoalength, 0)
|
||||
|
||||
|
||||
@@ -294,7 +294,7 @@ def main(argv):
|
||||
else:
|
||||
print 'ERROR: checksums did not match for track %d' % (i + 1)
|
||||
|
||||
# overlay this rip onto the IndexTable
|
||||
# overlay this rip onto the Table
|
||||
itable.setFile(i + 1, 1, path, ittoc.getTrackLength(i + 1), i + 1)
|
||||
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ def main():
|
||||
|
||||
|
||||
# now do a more extensive scan
|
||||
t = cdrdao.ReadIndexTableTask()
|
||||
t = cdrdao.ReadTableTask()
|
||||
runner.run(t)
|
||||
|
||||
# now check if we have a hidden track one audio
|
||||
|
||||
@@ -7,7 +7,7 @@ from morituri.program import cdrdao
|
||||
def main():
|
||||
log.init()
|
||||
runner = task.SyncRunner()
|
||||
t = cdrdao.ReadIndexTableTask()
|
||||
t = cdrdao.ReadTableTask()
|
||||
runner.run(t)
|
||||
print 'runner done', t.toc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user