Changeset 15906


Ignore:
Timestamp:
2008-06-09T12:28:39+12:00 (16 years ago)
Author:
kjdon
Message:

inherits from AutoExtractMetadata now, not BasePlugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/plugins/ConvertBinaryFile.pm

    r15871 r15906  
    11###########################################################################
    22#
    3 # ConvertBinaryFile.pm -- plugin that inherits from BasPlug
     3# ConvertBinaryFile.pm -- plugin that facilitates conversion of binary files
     4# through gsConvert.pl
    45#
    56# A component of the Greenstone digital library software
     
    3334package ConvertBinaryFile;
    3435
    35 use BasePlugin;
     36use AutoExtractMetadata;
    3637use ghtml;
    3738use HTMLPlugin;
     
    4445
    4546sub BEGIN {
    46     @ConvertBinaryFile::ISA = ('BasePlugin');
     47    @ConvertBinaryFile::ISA = ('AutoExtractMetadata');
    4748}
    4849
     
    7980    'type' => "flag",
    8081    'reqd' => "no" },
    81 #      { 'name' => "extract_keyphrases",
    82 #   'desc' => "{BasPlug.extract_keyphrases}",
    83 #   'type' => "flag",
    84 #   'reqd' => "no",
    85 #   'hiddengli' => "yes" },
    86 #      { 'name' => "extract_keyphrase_options",
    87 #   'desc' => "{BasPlug.extract_keyphrase_options}",
    88 #   'type' => "string",
    89 #   'reqd' => "no",
    90 #   'hiddengli' => "yes" }
    9182      ];
    9283
     
    150141    push(@{$hashArgOptLists->{"OptList"}},$options);
    151142
    152     my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
     143    my $self = new AutoExtractMetadata($pluginlist, $inputargs, $hashArgOptLists);
    153144   
    154145    if ($self->{'info_only'}) {
Note: See TracChangeset for help on using the changeset viewer.