Ignore:
Timestamp:
2017-03-13T11:12:37+13:00 (7 years ago)
Author:
kjdon
Message:

renamed EncodingUtil to CommonUtil, BasePlugin to BaseImporter. The idea is that only top level plugins that you can specify in your collection get to have plugin in their name. Modified all other plugins to reflect these name changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/plugins/MetadataCSVPlugin.pm

    r31480 r31492  
    2828
    2929
    30 use BasePlugin;
     30use BaseImporter;
    3131use MetadataRead;
    3232
     
    4242# methods with identical signatures take precedence in the order given in the ISA list.
    4343sub BEGIN {
    44     @MetadataCSVPlugin::ISA = ('MetadataRead', 'BasePlugin');
     44    @MetadataCSVPlugin::ISA = ('MetadataRead', 'BaseImporter');
    4545}
    4646
     
    4848my $arguments = [
    4949      { 'name' => "process_exp",
    50     'desc' => "{BasePlugin.process_exp}",
     50    'desc' => "{BaseImporter.process_exp}",
    5151    'type' => "regexp",
    5252    'reqd' => "no",
     
    7272    push(@{$hashArgOptLists->{"OptList"}},$options);
    7373
    74     my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
     74    my $self = new BaseImporter($pluginlist, $inputargs, $hashArgOptLists);
    7575
    7676    return bless $self, $class;
Note: See TracChangeset for help on using the changeset viewer.