diff --git a/ChangeLog b/ChangeLog index 9585f7c..e5500e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-05-16 Thomas Vander Stichele + + * examples/readdisc.py: + * examples/readhtoa.py: + * examples/readtoc.py: + Rename IndexTable to Table. + 2009-05-16 Thomas Vander Stichele * morituri/image/cue.py: diff --git a/examples/readdisc.py b/examples/readdisc.py index 0b172e4..a15d089 100644 --- a/examples/readdisc.py +++ b/examples/readdisc.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) diff --git a/examples/readhtoa.py b/examples/readhtoa.py index b409998..b71c71a 100644 --- a/examples/readhtoa.py +++ b/examples/readhtoa.py @@ -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 diff --git a/examples/readtoc.py b/examples/readtoc.py index 8494512..cd869f1 100644 --- a/examples/readtoc.py +++ b/examples/readtoc.py @@ -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