You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2001/08/02 04:34:46 UTC

cvs commit: xml-xerces/perl/DOMParse DOMParse.pm

jasons      01/08/01 19:34:46

  Modified:    perl/DOMParse DOMParse.pm
  Log:
  	* DOMParse/DOMParse.pm (Repository):
  	fixed some print calls in which the filehandle was not specified
  
  Revision  Changes    Path
  1.5       +3 -3      xml-xerces/perl/DOMParse/DOMParse.pm
  
  Index: DOMParse.pm
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/DOMParse/DOMParse.pm,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DOMParse.pm	2001/04/12 05:02:27	1.4
  +++ DOMParse.pm	2001/08/02 02:34:46	1.5
  @@ -240,11 +240,11 @@
   
     my $name = $node->getNodeName ();
     my $value = $node->getNodeValue ();
  -  print "UNHANDLED (type=$type;name=\"";
  +  print STDERR "UNHANDLED (type=$type;name=\"";
     XML::Xerces::DOMParse::print_string ($fh, $name);
  -  print "\",value=\"";
  +  print STDERR "\",value=\"";
     XML::Xerces::DOMParse::print_string ($fh, $value);
  -  print "\")\n";
  +  print STDERR "\")\n";
   }
   
   #
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org