[SCM] morituri/master: * examples/readdisc.py: * examples/readhtoa.py: * examples/readtoc.py: Rename IndexTable to Table.

js at users.alioth.debian.org js at users.alioth.debian.org
Sun Oct 19 20:09:00 UTC 2014


The following commit has been merged in the master branch:
commit 96ac69a13d15b490e158b94f18b981679bfa1ea2
Author: Thomas Vander Stichele <thomas (at) apestaart (dot) org>
Date:   Sat May 16 09:51:03 2009 +0000

    	* examples/readdisc.py:
    	* examples/readhtoa.py:
    	* examples/readtoc.py:
    	  Rename IndexTable to Table.

diff --git a/ChangeLog b/ChangeLog
index 9585f7c..e5500e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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:
 	* morituri/image/image.py:
 	* morituri/image/table.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
 

-- 
morituri packaging



More information about the pkg-multimedia-commits mailing list