Changeset 16013


Ignore:
Timestamp:
2008-06-16T11:16:36+12:00 (16 years ago)
Author:
kjdon
Message:

updated soem plugin names in some of the keys for strings.properties

Location:
gsdl/trunk/perllib/plugins
Files:
10 edited

Legend:

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

    r15918 r16013  
    100100
    101101    # print $outhandle " extracting acronyms ...\n"
    102     gsprintf($outhandle, " {BasPlug.extracting_acronyms}...\n")
     102    gsprintf($outhandle, " {AcronymExtractor.extracting_acronyms}...\n")
    103103    if ($self->{'verbosity'} > 2);
    104104
     
    114114        $seen_before = "true";
    115115        if ($self->{'verbosity'} >= 4) {
    116             gsprintf($outhandle, " {BasPlug.already_seen} " .
     116            gsprintf($outhandle, " {AcronymExtractor.already_seen} " .
    117117                 $acro->to_string() . "\n");
    118118        }
     
    126126        #do the normal acronym
    127127        $doc_obj->add_utf8_metadata($thissection, "Acronym",  $acro->to_string());
    128         gsprintf($outhandle, " {BasPlug.adding} ".$acro->to_string()."\n")
     128        gsprintf($outhandle, " {AcronymExtractor.adding} ".$acro->to_string()."\n")
    129129        if ($self->{'verbosity'} > 3);
    130130    }
    131131    }
    132132
    133     gsprintf($outhandle, " {BasPlug.done_acronym_extract}\n")
     133    gsprintf($outhandle, " {AcronymExtractor.done_acronym_extract}\n")
    134134    if ($self->{'verbosity'} > 2);
    135135}
     
    140140    my $outhandle = $self->{'outhandle'};
    141141
    142     gsprintf($outhandle, " {BasPlug.marking_up_acronyms}...\n")
     142    gsprintf($outhandle, " {AcronymExtractor.marking_up_acronyms}...\n")
    143143    if ($self->{'verbosity'} > 2);
    144144
     
    146146    $text = &acronym::markup_acronyms($text, $self);
    147147
    148     gsprintf($outhandle, " {BasPlug.done_acronym_markup}\n")
     148    gsprintf($outhandle, " {AcronymExtractor.done_acronym_markup}\n")
    149149    if ($self->{'verbosity'} > 2);
    150150
  • gsdl/trunk/perllib/plugins/ArchivesInfPlugin.pm

    r15870 r16013  
    11###########################################################################
    22#
    3 # ArchivesInfPlug.pm.pm --
     3# ArchivesInfPlugin.pm --
    44# A component of the Greenstone digital library software
    55# from the New Zealand Digital Library Project at the
  • gsdl/trunk/perllib/plugins/ConvertBinaryFile.pm

    r15906 r16013  
    6868    'type' => "flag" },
    6969      { 'name' => "title_sub",
    70     'desc' => "{HTMLPlug.title_sub}",
     70    'desc' => "{HTMLPlugin.title_sub}",
    7171    'type' => "string",
    7272    #'type' => "regexp",
  • gsdl/trunk/perllib/plugins/EmailAddressExtractor.pm

    r15887 r16013  
    6363    my $outhandle = $self->{'outhandle'};
    6464
    65     gsprintf($outhandle, " {BasPlug.extracting_emails}...\n")
     65    gsprintf($outhandle, " {EmailAddressExtractor.extracting_emails}...\n")
    6666    if ($self->{'verbosity'} > 2);
    6767   
     
    7979#       $doc_obj->add_utf8_metadata ($thissection, "emailAddress", $address);
    8080#       # print $outhandle "  extracting $address\n"
    81 #       &gsprintf($outhandle, "  {BasPlug.extracting} $address\n")
     81#       &gsprintf($outhandle, "  {AutoExtractMetadata.extracting} $address\n")
    8282#           if ($self->{'verbosity'} > 3);
    8383#       }
     
    9292        $hashExistMail->{$address} = 1;
    9393        $doc_obj->add_utf8_metadata ($thissection, "emailAddress", $address);
    94         gsprintf($outhandle, "  {BasPlug.extracting} $address\n")
     94        gsprintf($outhandle, "  {AutoExtractMetadata.extracting} $address\n")
    9595        if ($self->{'verbosity'} > 3);
    9696    }
    9797    }
    98     gsprintf($outhandle, " {BasPlug.done_email_extract}\n")
     98    gsprintf($outhandle, " {EmailAddressExtractor.done_email_extract}\n")
    9999    if ($self->{'verbosity'} > 2);
    100100}
  • gsdl/trunk/perllib/plugins/EmailPlugin.pm

    r15872 r16013  
    109109
    110110# Create a new EmailPlugin object with which to parse a file.
    111 # Accomplished by creating a new BasePlugin and using bless to
     111# Accomplished by creating a new SplitTextFile and using bless to
    112112# turn it into an EmailPlugin.
    113113
     
    579579        # or it was an empty message...
    580580        # do nothing...
    581         gsprintf($outhandle, "{BasePlugin.empty_file} - empty body?\n");
     581        gsprintf($outhandle, "{ReadTextFile.empty_file} - empty body?\n");
    582582        } else {
    583583        $text = $part_text;
  • gsdl/trunk/perllib/plugins/GISExtractor.pm

    r15919 r16013  
    243243
    244244   
    245     &gsprintf($outhandle, " {BasPlug.extracting_placenames}...\n")
     245    &gsprintf($outhandle, " {GISExtractor.extracting_placenames}...\n")
    246246    if ($self->{'verbosity'} > 2);
    247247
     
    314314    #adds placename to metadata
    315315    $doc_obj->add_utf8_metadata ($thissection, "Placename", $p);   
    316     &gsprintf($outhandle, "  {BasPlug.extracting} $p\n")
     316    &gsprintf($outhandle, "  {AutoExtractMetadata.extracting} $p\n")
    317317        if ($self->{'verbosity'} > 3);
    318318    }
     
    334334    $doc_obj->delete_text($thissection);
    335335    $doc_obj->add_utf8_text($thissection, $$textref);
    336     &gsprintf($outhandle, " {BasPlug.done_places_extract}\n")
     336    &gsprintf($outhandle, " {GISExtractor.done_places_extract}\n")
    337337    if ($self->{'verbosity'} > 2);
    338338}
  • gsdl/trunk/perllib/plugins/LaTeXPlugin.pm

    r15872 r16013  
    4444    'deft' => &get_default_process_exp() } ];
    4545
    46 my $options = { 'name'     => 'LaTeXPlugin',
    47         'desc'     => '{LaTeXPlugin.desc}',
    48         'abstract' => 'no',
    49         'inherits' => 'yes',
     46my $options = { 'name'     => "LaTeXPlugin",
     47        'desc'     => "{LaTeXPlugin.desc}",
     48        'abstract' => "no",
     49        'inherits' => "yes",
    5050        'args'     => $arguments };
    5151
  • gsdl/trunk/perllib/plugins/MARCPlugin.pm

    r15962 r16013  
    4848    'reqd' => "no" },
    4949      { 'name' => "metadata_mapping_file",
    50     'desc' => "{MARCXMLPlug.metadata_mapping_file}",
     50    'desc' => "{MARCXMLPlugin.metadata_mapping_file}",
    5151    'type' => "string",
    5252    'deft' => "",
  • gsdl/trunk/perllib/plugins/OAIPlugin.pm

    r15872 r16013  
    4242my $arguments =
    4343    [ { 'name' => "process_exp",
    44     'desc' => "{BasPlug.process_exp}",
     44    'desc' => "{BasePlugin.process_exp}",
    4545    'type' => "regexp",
    4646    'reqd' => "no",
  • gsdl/trunk/perllib/plugins/OpenDocumentPlugin.pm

    r15872 r16013  
    5656my $arguments = [
    5757         { 'name' => "process_exp",
    58            'desc' => "{BasPlug.process_exp}",
     58           'desc' => "{BasePlugin.process_exp}",
    5959           'type' => "regexp",
    6060           'deft' =>  &get_default_process_exp() }
Note: See TracChangeset for help on using the changeset viewer.