Changeset 13171


Ignore:
Timestamp:
2006-10-27T13:38:54+13:00 (18 years ago)
Author:
kjdon
Message:

docprint is no longer a docproc, now need to call get_section_xml and print to STDOUT ourselves. Note, I don't know how to test this module

File:
1 edited

Legend:

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

    r12844 r13171  
    167167  if(defined $doc_obj)
    168168  {
    169     # Create a new document printer processor
    170     my $processor = new docprint();
    171     # Finally process it into xml
    172     $processor->process($doc_obj);
     169      my $doc_text = &docprint::get_section_xml($doc_obj, $doc_obj->get_top_section());
     170      print STDOUT $doc_text;
     171      # Create a new document printer processor
     172      #my $processor = new docprint();
     173      # Finally process it into xml
     174      #$processor->process($doc_obj);
    173175  }
    174176}
Note: See TracChangeset for help on using the changeset viewer.