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

    r24225 r31492  
    5656package UnknownPlugin;
    5757
    58 use BasePlugin;
     58use BaseImporter;
    5959
    6060use strict;
     
    6262
    6363sub BEGIN {
    64     @UnknownPlugin::ISA = ('BasePlugin');
     64    @UnknownPlugin::ISA = ('BaseImporter');
    6565}
    6666
     
    107107    push(@{$hashArgOptLists->{"OptList"}},$options);
    108108
    109     my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
     109    my $self = new BaseImporter($pluginlist, $inputargs, $hashArgOptLists);
    110110
    111111    # "-process_extension" is a simpler alternative to -process_exp for non-regexp people
Note: See TracChangeset for help on using the changeset viewer.