Changeset 462


Ignore:
Timestamp:
22-05-11 20:06:57 (2 years ago)
Author:
thomas
Message:

based on code by: Loïc Minier <lool@…>

  • morituri/rip/Makefile.am:
  • morituri/rip/main.py:
  • morituri/rip/accurip.py (added): Add a rip accurip show command to show the accuraterip information for a given URL. See #5.
Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r461 r462  
     12011-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 
    1112011-05-22  Thomas Vander Stichele  <thomas at apestaart dot org> 
    212 
  • trunk/morituri/rip/Makefile.am

    r294 r462  
    55morituri_PYTHON = \ 
    66        __init__.py \ 
     7        accurip.py \ 
    78        cd.py \ 
    89        drive.py \ 
  • trunk/morituri/rip/main.py

    r458 r462  
    55 
    66from morituri.common import log, logcommand, common, task 
    7 from morituri.rip import cd, offset, drive, image 
     7from morituri.rip import cd, offset, drive, image, accurip 
    88 
    99def main(argv): 
     
    4747""" 
    4848 
    49     subCommandClasses = [cd.CD, drive.Drive, offset.Offset, image.Image, ] 
     49    subCommandClasses = [accurip.AccuRip, 
     50        cd.CD, drive.Drive, offset.Offset, image.Image, ] 
    5051 
    5152    def addOptions(self): 
Note: See TracChangeset for help on using the changeset viewer.