Ignore:
Timestamp:
2008-06-05T09:29:32+12:00 (16 years ago)
Author:
kjdon
Message:

plugin overhaul: plugins renamed to xxPlugin, and in some cases the names are made more sensible. They now use the new base plugins. Hopefully we have better code reuse. Some of the plugins still need work done as I didn't want to spend another month doing this before committing it. Alos, I haven't really tested anything yet...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/plugins/MetadataPass.pm

    r12970 r15872  
    2929no strict 'refs'; # allow filehandles to be variables and viceversa
    3030
    31 use BasPlug; # uses BasPlug, but is not inherited
     31use PrintInfo; # uses PrintInfo, but is not inherited
    3232
    3333
     
    5555sub print_xml_usage
    5656{
    57     BasPlug::print_xml_usage(@_);
     57    PrintInfo::print_xml_usage(@_);
    5858}
    5959
    6060sub print_xml
    6161{
    62     BasPlug::print_xml(@_);
     62    PrintInfo::print_xml(@_);
    6363}
    6464
    6565sub set_incremental
    6666{
    67     BasPlug::set_incremental(@_);
     67    PrintInfo::set_incremental(@_);
    6868}
    6969
Note: See TracChangeset for help on using the changeset viewer.