You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by jb...@apache.org on 2002/02/27 15:31:19 UTC

cvs commit: xml-xindice/java/src/org/apache/xindice/tools/command StringSerializer.java

jbates      02/02/27 06:31:19

  Modified:    java/src/org/apache/xindice/tools/command
                        StringSerializer.java
  Log:
  Fixed command-line tools add document function to correctly parse processing
  instructions.
  
  Revision  Changes    Path
  1.2       +1 -0      xml-xindice/java/src/org/apache/xindice/tools/command/StringSerializer.java
  
  Index: StringSerializer.java
  ===================================================================
  RCS file: /home/cvs/xml-xindice/java/src/org/apache/xindice/tools/command/StringSerializer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- StringSerializer.java	26 Feb 2002 17:32:53 -0000	1.1
  +++ StringSerializer.java	27 Feb 2002 14:31:19 -0000	1.2
  @@ -135,6 +135,7 @@
           outputXml.append("<?");
           outputXml.append(target);
           outputXml.append(' ');
  +        outputXml.append(data);
           outputXml.append("?>");
       }