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

    r27787 r31492  
    2626package ImagePlugin;
    2727
    28 use BasePlugin;
     28use BaseImporter;
    2929use ImageConverter;
    3030
     
    3636
    3737sub BEGIN {
    38     @ImagePlugin::ISA = ('BasePlugin', 'ImageConverter');
     38    @ImagePlugin::ISA = ('BaseImporter', 'ImageConverter');
    3939}
    4040
    4141my $arguments =
    4242    [ { 'name' => "process_exp",
    43     'desc' => "{BasePlugin.process_exp}",
     43    'desc' => "{BaseImporter.process_exp}",
    4444    'type' => "regexp",
    4545    'deft' => &get_default_process_exp(),
     
    6565   
    6666    new ImageConverter($pluginlist, $inputargs, $hashArgOptLists);
    67     my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
     67    my $self = new BaseImporter($pluginlist, $inputargs, $hashArgOptLists);
    6868
    6969    return bless $self, $class;
Note: See TracChangeset for help on using the changeset viewer.