Changeset 19 in mp3-find for trunk/lib/MP3/Find.pm


Ignore:
Timestamp:
03/28/06 19:38:39 (18 years ago)
Author:
peter
Message:
  • added "status_callback" option to the constructor for MP3::Find::DB
  • default status callback just prints the status code and the file name to STDERR as before
  • using an empty status_callback in t/03-db.t (status_callback => sub {}) to keep the test output more legible
  • updated docs in Find.pm
  • mkreadme now prints a blank line between the file header and the DESCRIPION section
  • generated new README file
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/MP3/Find.pm

    r18 r19  
    4747        }, 
    4848        ignore_case => 1, 
    49         match_words => 1, 
     49        exact_match => 1, 
    5050        sort => [qw(year album tracknum)], 
    5151        printf => '%2n. %a - %t (%b: %y)', 
     
    7777 
    7878L<File::Find>, L<MP3::Info>, and L<Scalar::Util> are needed for 
    79 the filesystem backend (L<MP3::Find::Filesystem>). 
     79the filesystem backend (L<MP3::Find::Filesystem>). In addition, 
     80if L<MP3::Tag> is available, you can search by explicit ID3v2 
     81tag frames. 
    8082 
    8183L<DBI>, L<DBD::SQLite>, and L<SQL::Abstract> are needed for the 
     
    184186currently only uses the filesystem backend). 
    185187 
     188L<mp3db> is a (currently rather barebones) command line  
     189frontend for creating and updating a SQLite database for  
     190use with L<MP3::Find::DB>. 
     191 
    186192See L<MP3::Info> for more information about the fields you can 
    187 search and sort on. 
     193search and sort on. See L<http://id3.org/> for information about 
     194ID3v2 tags. 
    188195 
    189196L<File::Find::Rule::MP3Info> is another way to search for MP3 
Note: See TracChangeset for help on using the changeset viewer.