Changeset 12448


Ignore:
Timestamp:
2006-08-15T15:48:40+12:00 (18 years ago)
Author:
kjdon
Message:

changed output_dc_section to use the old buffer_dc_section not the new new_buffer_dc_section which was added by Jeffrey but we don't know why

File:
1 edited

Legend:

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

    r12327 r12448  
    731731
    732732# Build up dublin_core metadata.  Priority given to dc.* over ex.*
    733 
     733# This method was apparently added by Jeffrey and committed by Shaoqun.
     734# But we don't know why it was added, so not using it anymore.
    734735sub new_buffer_dc_section {
    735736   
     
    856857
    857858# Print out dublin_core metadata
     859# changed back to using old method, don't know why Jeffrey changed this
    858860sub output_dc_section {
    859861    my $self = shift(@_);
    860862    my ($handle, $section, $version) = @_;
    861863   
    862     #my $all_text = $self->buffer_dc_section($section,$version);
    863     my $all_text = $self->new_buffer_dc_section($section,$version);
     864    my $all_text = $self->buffer_dc_section($section,$version);
     865    #my $all_text = $self->new_buffer_dc_section($section,$version);
    864866   
    865867    print $handle $all_text;
Note: See TracChangeset for help on using the changeset viewer.