Changeset 462
- Timestamp:
- 22-05-11 20:06:57 (2 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
ChangeLog (modified) (1 diff)
-
morituri/rip/Makefile.am (modified) (1 diff)
-
morituri/rip/accurip.py (added)
-
morituri/rip/main.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r461 r462 1 2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org> 2 3 based on code by: Loïc Minier <lool@dooz.org> 4 5 * morituri/rip/Makefile.am: 6 * morituri/rip/main.py: 7 * morituri/rip/accurip.py (added): 8 Add a rip accurip show command to show the accuraterip information 9 for a given URL. See #5. 10 1 11 2011-05-22 Thomas Vander Stichele <thomas at apestaart dot org> 2 12 -
trunk/morituri/rip/Makefile.am
r294 r462 5 5 morituri_PYTHON = \ 6 6 __init__.py \ 7 accurip.py \ 7 8 cd.py \ 8 9 drive.py \ -
trunk/morituri/rip/main.py
r458 r462 5 5 6 6 from morituri.common import log, logcommand, common, task 7 from morituri.rip import cd, offset, drive, image 7 from morituri.rip import cd, offset, drive, image, accurip 8 8 9 9 def main(argv): … … 47 47 """ 48 48 49 subCommandClasses = [cd.CD, drive.Drive, offset.Offset, image.Image, ] 49 subCommandClasses = [accurip.AccuRip, 50 cd.CD, drive.Drive, offset.Offset, image.Image, ] 50 51 51 52 def addOptions(self):
Note: See TracChangeset
for help on using the changeset viewer.
