You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/09/27 18:39:25 UTC

cvs commit: xml-xalan/c/src/XMLSupport FormatterToHTML.cpp FormatterToXML.cpp

dbertoni    00/09/27 09:39:25

  Modified:    c/src/XMLSupport FormatterToHTML.cpp FormatterToXML.cpp
  Log:
  Output transcoding support.
  
  Revision  Changes    Path
  1.25      +3 -3      xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp
  
  Index: FormatterToHTML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- FormatterToHTML.cpp	2000/09/05 02:24:48	1.24
  +++ FormatterToHTML.cpp	2000/09/27 16:39:23	1.25
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: FormatterToHTML.cpp,v 1.24 2000/09/05 02:24:48 dbertoni Exp $
  + * $Id: FormatterToHTML.cpp,v 1.25 2000/09/27 16:39:23 dbertoni Exp $
    * 
    * $State: Exp $
    * 
  @@ -89,7 +89,7 @@
   
   
   
  -#if defined(XALAN_WIDE_STRING_UCODE_PROBLEM)
  +#if !defined(XALAN_LSTRSUPPORT)
   static const char* const	theHTMLSymbols1[] = 
   {
   	"Alpha",    "Beta",
  @@ -138,7 +138,7 @@
   #endif
   
   
  -#if defined(XALAN_WIDE_STRING_UCODE_PROBLEM)
  +#if !defined(XALAN_LSTRSUPPORT)
   static const char* const	theHTMLLatin1Symbols[] = 
   {
   	"nbsp",    "iexcl",    "cent",    "pound",
  
  
  
  1.27      +2 -2      xml-xalan/c/src/XMLSupport/FormatterToXML.cpp
  
  Index: FormatterToXML.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XMLSupport/FormatterToXML.cpp,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- FormatterToXML.cpp	2000/09/19 14:51:38	1.26
  +++ FormatterToXML.cpp	2000/09/27 16:39:23	1.27
  @@ -67,7 +67,7 @@
   
   
   #include <PlatformSupport/DOMStringHelper.hpp>
  -#include <PlatformSupport/TextOutputStream.hpp>
  +#include <PlatformSupport/XalanOutputStream.hpp>
   #include <PlatformSupport/Writer.hpp>
   
   
  @@ -147,7 +147,7 @@
   
   	if (isEmpty(m_encoding) == false)
   	{
  -		TextOutputStream* const		theStream = m_writer.getStream();
  +		XalanOutputStream* const		theStream = m_writer.getStream();
   
   		if (theStream != 0)
   		{