dbertoni    02/02/22 20:17:46

  Modified:    c/src/PlatformSupport AttributeListImpl.hpp
                        AttributesImpl.hpp DOMStringHelper.cpp
                        FormatterListener.hpp NamedNodeMapAttributeList.hpp
                        StdBinInputStream.hpp URISupport.cpp URISupport.hpp
                        XSLException.cpp XalanOutputStream.cpp
                        XalanOutputStream.hpp
                        XalanToXercesTranscoderWrapper.cpp
                        XalanTranscodingServices.cpp
                        XalanTranscodingServices.hpp
  Log:
  Fixes for Xerces "sane includes" change.
  
  Revision  Changes    Path
  1.15      +1 -1      xml-xalan/c/src/PlatformSupport/AttributeListImpl.hpp
  
  Index: AttributeListImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributeListImpl.hpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- AttributeListImpl.hpp     29 Mar 2001 22:10:04 -0000      1.14
  +++ AttributeListImpl.hpp     23 Feb 2002 04:17:45 -0000      1.15
  @@ -68,7 +68,7 @@
   
   
   
  -#include <sax/AttributeList.hpp>
  +#include <xercesc/sax/AttributeList.hpp>
   
   
   
  
  
  
  1.3       +1 -1      xml-xalan/c/src/PlatformSupport/AttributesImpl.hpp
  
  Index: AttributesImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/AttributesImpl.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttributesImpl.hpp        27 Apr 2001 19:18:54 -0000      1.2
  +++ AttributesImpl.hpp        23 Feb 2002 04:17:45 -0000      1.3
  @@ -68,7 +68,7 @@
   
   
   
  -#include <sax2/Attributes.hpp>
  +#include <xercesc/sax2/Attributes.hpp>
   
   
   
  
  
  
  1.68      +2 -2      xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp
  
  Index: DOMStringHelper.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/DOMStringHelper.cpp,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- DOMStringHelper.cpp       9 Nov 2001 05:21:18 -0000       1.67
  +++ DOMStringHelper.cpp       23 Feb 2002 04:17:45 -0000      1.68
  @@ -94,10 +94,10 @@
   
   
   // Xerces header files
  -#include <util/XMLString.hpp>
  +#include <xercesc/util/XMLString.hpp>
   
   #if !defined(XML_LSTRSUPPORT)
  -#include <util/PlatformUtils.hpp>
  +#include <xercesc/util/PlatformUtils.hpp>
   #endif
   
   
  
  
  
  1.4       +2 -2      xml-xalan/c/src/PlatformSupport/FormatterListener.hpp
  
  Index: FormatterListener.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/FormatterListener.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FormatterListener.hpp     25 Sep 2001 21:12:51 -0000      1.3
  +++ FormatterListener.hpp     23 Feb 2002 04:17:46 -0000      1.4
  @@ -58,7 +58,7 @@
   #define FORMATTERLISTENER_HEADER_GUARD_1357924680
   
   /**
  - * $Id: FormatterListener.hpp,v 1.3 2001/09/25 21:12:51 dbertoni Exp $
  + * $Id: FormatterListener.hpp,v 1.4 2002/02/23 04:17:46 dbertoni Exp $
    * 
    * $State: Exp $
    * 
  @@ -72,7 +72,7 @@
   
   
   
  -#include <sax/DocumentHandler.hpp>
  +#include <xercesc/sax/DocumentHandler.hpp>
   
   
   
  
  
  
  1.8       +1 -1      
xml-xalan/c/src/PlatformSupport/NamedNodeMapAttributeList.hpp
  
  Index: NamedNodeMapAttributeList.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/PlatformSupport/NamedNodeMapAttributeList.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- NamedNodeMapAttributeList.hpp     8 Feb 2001 21:39:01 -0000       1.7
  +++ NamedNodeMapAttributeList.hpp     23 Feb 2002 04:17:46 -0000      1.8
  @@ -68,7 +68,7 @@
   
   
   
  -#include <sax/AttributeList.hpp>
  +#include <xercesc/sax/AttributeList.hpp>
   
   
   
  
  
  
  1.5       +1 -1      xml-xalan/c/src/PlatformSupport/StdBinInputStream.hpp
  
  Index: StdBinInputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/StdBinInputStream.hpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- StdBinInputStream.hpp     28 Sep 2001 18:26:45 -0000      1.4
  +++ StdBinInputStream.hpp     23 Feb 2002 04:17:46 -0000      1.5
  @@ -76,7 +76,7 @@
   
   
   
  -#include <util/BinInputStream.hpp>
  +#include <xercesc/util/BinInputStream.hpp>
   
   
   
  
  
  
  1.16      +1 -1      xml-xalan/c/src/PlatformSupport/URISupport.cpp
  
  Index: URISupport.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/URISupport.cpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- URISupport.cpp    26 Nov 2001 23:10:12 -0000      1.15
  +++ URISupport.cpp    23 Feb 2002 04:17:46 -0000      1.16
  @@ -63,7 +63,7 @@
   
   
   
  -#include <util/PlatformUtils.hpp>
  +#include <xercesc/util/PlatformUtils.hpp>
   
   
   
  
  
  
  1.7       +1 -1      xml-xalan/c/src/PlatformSupport/URISupport.hpp
  
  Index: URISupport.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/URISupport.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- URISupport.hpp    8 Feb 2001 21:39:07 -0000       1.6
  +++ URISupport.hpp    23 Feb 2002 04:17:46 -0000      1.7
  @@ -64,7 +64,7 @@
   
   
   
  -#include <util/XMLURL.hpp>
  +#include <xercesc/util/XMLURL.hpp>
   
   
   
  
  
  
  1.5       +1 -1      xml-xalan/c/src/PlatformSupport/XSLException.cpp
  
  Index: XSLException.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XSLException.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XSLException.cpp  19 Dec 2001 22:00:56 -0000      1.4
  +++ XSLException.cpp  23 Feb 2002 04:17:46 -0000      1.5
  @@ -59,7 +59,7 @@
   
   
   
  -#include <sax/Locator.hpp>
  +#include <xercesc/sax/Locator.hpp>
   
   
   
  
  
  
  1.16      +1 -2      xml-xalan/c/src/PlatformSupport/XalanOutputStream.cpp
  
  Index: XalanOutputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XalanOutputStream.cpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- XalanOutputStream.cpp     7 Feb 2002 01:39:58 -0000       1.15
  +++ XalanOutputStream.cpp     23 Feb 2002 04:17:46 -0000      1.16
  @@ -59,8 +59,7 @@
   
   
   
  -#include <util/TransService.hpp>
  -#include <util/XMLException.hpp>
  +#include <xercesc/util/TransService.hpp>
   
   
   
  
  
  
  1.10      +6 -0      xml-xalan/c/src/PlatformSupport/XalanOutputStream.hpp
  
  Index: XalanOutputStream.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/XalanOutputStream.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XalanOutputStream.hpp     7 Feb 2002 01:39:58 -0000       1.9
  +++ XalanOutputStream.hpp     23 Feb 2002 04:17:46 -0000      1.10
  @@ -243,6 +243,12 @@
       bool
        canTranscodeTo(unsigned int             theChar) const;
   
  +     const XalanOutputTranscoder*
  +     getTranscoder() const
  +     {
  +             return m_transcoder;
  +     }
  +
        /**
         * Set the flag that indicates whether a transcoding
         * error should throw an exception.  The default is
  
  
  
  1.7       +2 -2      
xml-xalan/c/src/PlatformSupport/XalanToXercesTranscoderWrapper.cpp
  
  Index: XalanToXercesTranscoderWrapper.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/PlatformSupport/XalanToXercesTranscoderWrapper.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XalanToXercesTranscoderWrapper.cpp        7 Feb 2002 01:39:58 -0000       
1.6
  +++ XalanToXercesTranscoderWrapper.cpp        23 Feb 2002 04:17:46 -0000      
1.7
  @@ -62,8 +62,8 @@
   
   
   
  -#include <util/TransService.hpp>
  -#include <util/XMLException.hpp>
  +#include <xercesc/util/TransService.hpp>
  +#include <xercesc/util/XMLException.hpp>
   
   
   
  
  
  
  1.13      +2 -2      
xml-xalan/c/src/PlatformSupport/XalanTranscodingServices.cpp
  
  Index: XalanTranscodingServices.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/PlatformSupport/XalanTranscodingServices.cpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XalanTranscodingServices.cpp      7 Feb 2002 01:39:58 -0000       1.12
  +++ XalanTranscodingServices.cpp      23 Feb 2002 04:17:46 -0000      1.13
  @@ -62,8 +62,8 @@
   
   
   
  -#include <util/PlatformUtils.hpp>
  -#include <util/TransService.hpp>
  +#include <xercesc/util/PlatformUtils.hpp>
  +#include <xercesc/util/TransService.hpp>
   
   
   
  
  
  
  1.8       +2 -2      
xml-xalan/c/src/PlatformSupport/XalanTranscodingServices.hpp
  
  Index: XalanTranscodingServices.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/c/src/PlatformSupport/XalanTranscodingServices.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XalanTranscodingServices.hpp      7 Feb 2002 01:39:58 -0000       1.7
  +++ XalanTranscodingServices.hpp      23 Feb 2002 04:17:46 -0000      1.8
  @@ -2,7 +2,7 @@
    * The Apache Software License, Version 1.1
    *
    *
  - * Copyright (c) 2000 The Apache Software Foundation.  All rights 
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights 
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -370,4 +370,4 @@
   
   
   
  -#endif       // NULLTEXTOUTPUTSTREAM_HEADER_GUARD_1357924680
  +#endif       // XALANTRANSCODINGSERVICES_HEADER_GUARD_1357924680
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to