Changeset 1677


Ignore:
Timestamp:
2000-11-20T12:13:28+13:00 (23 years ago)
Author:
paynter
Message:

Added teh BibTex entry type as metadata.

File:
1 edited

Legend:

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

    r1676 r1677  
    142142    }
    143143
    144 
     144    # Add the Entry type as metadata
     145    $doc_obj->add_metadata ($cursection, "EntryType", $EntryType);
    145146
    146147    # Add the various field as metadata
     
    223224    }
    224225
    225     return 1; # processed the file
     226    return 1;
    226227}
    227228
    2282291;
    229 #
     230
     231
    230232# Convert a text string into HTML.
    231 #
    232 # The HTML is going to be inserted into a GML file, so
    233 # we have to be careful not to use symbols like ">",
    234 # which ocurs frequently in email messages (and use
    235 # &gt instead.
    236 #
    237 # This function also turns links and email addresses into hyperlinks,
    238 # and replaces carriage returns with <BR> tags (and multiple carriage
    239 # returns with <P> tags).
    240 #
     233
     234# The HTML is going to be inserted into a GML file, so we have to be
     235# careful not to use symbols like ">", which ocurs frequently in email
     236# messages (and use &gt instead.
     237
     238# This function also turns URLs and email addresses into links, and
     239# replaces carriage returns with <BR> tags (and multiple carriage returns
     240# with <P> tags).
     241
    241242
    242243sub text_into_html {
Note: See TracChangeset for help on using the changeset viewer.