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/RogPlugin.pm

    r24548 r31492  
    2828package RogPlugin;
    2929
    30 use BasePlugin;
     30use BaseImporter;
    3131use MetadataRead;
    3232use sorttools;
     
    3737
    3838sub BEGIN {
    39     @RogPlugin::ISA = ('MetadataRead', 'BasePlugin');
     39    @RogPlugin::ISA = ('MetadataRead', 'BaseImporter');
    4040}
    4141
    4242my $arguments =
    4343    [ { 'name' => "process_exp",
    44     'desc' => "{BasePlugin.process_exp}",
     44    'desc' => "{BaseImporter.process_exp}",
    4545    'type' => "regexp",
    4646    'reqd' => "no",
     
    6262    push(@{$hashArgOptLists->{"OptList"}},$options);
    6363
    64     my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
     64    my $self = new BaseImporter($pluginlist, $inputargs, $hashArgOptLists);
    6565
    6666    return bless $self, $class;
Note: See TracChangeset for help on using the changeset viewer.