Ignore:
Timestamp:
2002-11-29T15:02:32+13:00 (21 years ago)
Author:
jrm21
Message:

removed comments about storing "BibTex" metadata as we don't do that
anymore. Also fixed a typo in the "desc" field.

File:
1 edited

Legend:

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

    r3540 r3587  
    4040#                      <[email protected]>
    4141#  *  some non-ascii char support (ie mostly Latin)
    42 #  *  The raw ascii bibtex entry is stored as "BibTex" metadata.
     42
    4343
    4444package BibTexPlug;
     
    6161my $options =
    6262{   'name'     => "BibTexPlug",
    63     'desc'     => "BibTexPlug reads bibliography files in BibTex format. BibTexPlug creates a document object for every reference a the file. It is a subclass of SplitPlug, so if there are multiple records, all are read.",
     63    'desc'     => "BibTexPlug reads bibliography files in BibTex format. BibTexPlug creates a document object for every reference in the file. It is a subclass of SplitPlug, so if there are multiple records, all are read.",
    6464    'inherits' => "Yes",
    6565    'args'     => $arguments };
     
    374374    $text =~ s@\\@\\\\@g;
    375375
    376 # Not really required...
    377 #   $doc_obj->add_utf8_metadata($cursection, "BibTex", $text);
    378376    $doc_obj->add_utf8_text ($cursection, $text);
    379377    }
Note: See TracChangeset for help on using the changeset viewer.