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

    r28285 r31492  
    5656my $arguments = [
    5757         { 'name' => "process_exp",
    58            'desc' => "{BasePlugin.process_exp}",
     58           'desc' => "{BaseImporter.process_exp}",
    5959           'type' => "regexp",
    6060           'deft' =>  &get_default_process_exp() }
     
    8585}
    8686
    87 # want to use BasePlugin's version of this, not ReadXMLFile's
     87# want to use BaseImporter's version of this, not ReadXMLFile's
    8888sub can_process_this_file {
    8989    my $self = shift(@_);
    9090   
    91     return $self->BasePlugin::can_process_this_file(@_);
     91    return $self->BaseImporter::can_process_this_file(@_);
    9292}
    9393
Note: See TracChangeset for help on using the changeset viewer.