greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16022

Show
Ignore:
Timestamp:
2008-06-16 13:59:57 (5 months ago)
Author:
kjdon
Message:

removed SourceUTF8 metadata, Source metadata is now utf8. Note, still need to check that this works

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gsdl/trunk/perllib/plugins/BasePlugin.pm

    r16014 r16022  
    594594    my $top_section = $doc_obj->get_top_section(); 
    595595     
    596     # the original encoding filename 
    597     $doc_obj->set_metadata_element($top_section, "Source", $filename_no_path); 
    598596    # UTF-8 version of filename 
    599597    my $filemeta = $self->filename_to_utf8_metadata($filename_no_path, $file_encoding); 
    600     $doc_obj->set_utf8_metadata_element($top_section, "SourceUTF8", $filemeta); 
     598    $doc_obj->set_utf8_metadata_element($top_section, "Source", $filemeta); 
    601599 
    602600}