Changeset 74 for trunk/gsdl/perllib


Ignore:
Timestamp:
1998-12-11T21:30:12+13:00 (25 years ago)
Author:
rjmcnab
Message:

Hack to make things work as they used to (until I have finished
the rest of the software.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/doc.pm

    r73 r74  
    471471    my ($section, $field, $value) = @_;
    472472
    473     $self->set_utf8_metadata_element ($section, $field,
    474                       &unicode::ascii2utf8($value));
     473# hack till the rest of the software has changed to Unicode.
     474    $self->set_utf8_metadata_element ($section, $field, $value);
     475#    $self->set_utf8_metadata_element ($section, $field,
     476#                     &unicode::ascii2utf8($value));
    475477}
    476478
     
    512514    my ($section, $field, $value) = @_;
    513515
    514     $self->add_utf8_metadata ($section, $field,
    515                   &unicode::ascii2utf8($value));
     516    # hack until the rest of the software has changed to Unicode.
     517    $self->add_utf8_metadata ($section, $field, $value);
     518#    $self->add_utf8_metadata ($section, $field,
     519#                 &unicode::ascii2utf8($value));
    516520}
    517521
     
    654658    # convert the text to UTF-8 encoded unicode characters
    655659    # and add the text
     660
     661    # hack until the rest of the software has changed to unicode
    656662    $self->add_utf8_text($section, &unicode::ascii2utf8($text));
     663#    $self->add_utf8_text($section, &unicode::ascii2utf8($text));
    657664}
    658665
Note: See TracChangeset for help on using the changeset viewer.