You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sa...@apache.org on 2002/05/29 22:25:16 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime/output StreamOutput.java

santiagopg    02/05/29 13:25:15

  Modified:    java/src/org/apache/xalan/xsltc/runtime/output
                        StreamOutput.java
  Log:
  Added DOCTYPE.
  
  Revision  Changes    Path
  1.8       +2 -2      xml-xalan/java/src/org/apache/xalan/xsltc/runtime/output/StreamOutput.java
  
  Index: StreamOutput.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/output/StreamOutput.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- StreamOutput.java	29 May 2002 20:00:45 -0000	1.7
  +++ StreamOutput.java	29 May 2002 20:25:15 -0000	1.8
  @@ -1,5 +1,5 @@
   /*
  - * @(#)$Id: StreamOutput.java,v 1.7 2002/05/29 20:00:45 santiagopg Exp $
  + * @(#)$Id: StreamOutput.java,v 1.8 2002/05/29 20:25:15 santiagopg Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -206,7 +206,7 @@
       }
   
       protected void appendDTD(String name) {
  -	_buffer.append(name);
  +	_buffer.append("<!DOCTYPE ").append(name);
   	if (_doctypePublic == null) {
   	    _buffer.append(" SYSTEM");
   	}
  
  
  

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