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

    r24225 r31492  
    3030
    3131
    32 use BasePlugin;
     32use BaseImporter;
    3333use rm::Header::PurePerl;
    3434
     
    3838
    3939sub BEGIN {
    40     @RealMediaPlugin::ISA = ('BasePlugin');
     40    @RealMediaPlugin::ISA = ('BaseImporter');
    4141}
    4242
     
    4444my $arguments =
    4545    [ { 'name' => "process_exp",
    46     'desc' => "{BasePlugin.process_exp}",
     46    'desc' => "{BaseImporter.process_exp}",
    4747    'type' => "regexp",
    4848    'deft' => &get_default_process_exp(),
     
    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.