Ignore:
Timestamp:
1998-12-14T13:55:47+13:00 (26 years ago)
Author:
rjmcnab
Message:

Added support for the new version of doc.pl (which uses the UTF-8
Unicode encoding)

File:
1 edited

Legend:

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

    r4 r75  
    7979        # add the tags
    8080        while ((defined $tags) && ($tags =~ s/^\s*(\w+)\s*=\s*\"([^\"]*)\"//)) {
    81         $doc_obj->add_metadata($section, $1 , $2) if (defined $1 and defined $2);
     81        $doc_obj->add_utf8_metadata($section, $1 , $2) if (defined $1 and defined $2);
    8282        }
    8383
    8484        # add the text
    85         $doc_obj->add_text($section, $text) if ((defined $text) && ($text ne ""));
     85        $doc_obj->add_utf8_text($section, $text) if ((defined $text) && ($text ne ""));
    8686
    8787    } elsif ($gml =~ s/^\s*<\/gsdlsection>//) {
Note: See TracChangeset for help on using the changeset viewer.