You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@locus.apache.org on 2000/11/30 21:34:51 UTC

cvs commit: xml-xalan/c/src/XSLT AVT.hpp ElemApplyImport.cpp ElemNumber.hpp StylesheetConstructionContextDefault.cpp StylesheetExecutionContext.hpp StylesheetRoot.cpp XSLTInputSource.hpp XSLTResultTarget.hpp XalanTemplate.cpp

auriemma    00/11/30 12:34:50

  Modified:    c/src/XSLT AVT.hpp ElemApplyImport.cpp ElemNumber.hpp
                        StylesheetConstructionContextDefault.cpp
                        StylesheetExecutionContext.hpp StylesheetRoot.cpp
                        XSLTInputSource.hpp XSLTResultTarget.hpp
                        XalanTemplate.cpp
  Log:
  HP port based on work from Trevor Smigiel and Troy Heber.
  
  Revision  Changes    Path
  1.10      +3 -3      xml-xalan/c/src/XSLT/AVT.hpp
  
  Index: AVT.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/AVT.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- AVT.hpp	2000/11/02 01:46:17	1.9
  +++ AVT.hpp	2000/11/30 20:34:02	1.10
  @@ -58,14 +58,14 @@
   #define XALAN_AVT_HEADER_GUARD 
   
   /**
  - * $Id: AVT.hpp,v 1.9 2000/11/02 01:46:17 dbertoni Exp $
  + * $Id: AVT.hpp,v 1.10 2000/11/30 20:34:02 auriemma Exp $
    * 
    * $State: Exp $
    * 
    */
   
   // Base include file.  Must be first.
  -#include "XSLTDefinitions.hpp"
  +#include <XSLT/XSLTDefinitions.hpp>
   
   
   
  @@ -77,7 +77,7 @@
   
   
   
  -#include "AVTPart.hpp"
  +#include <XSLT/AVTPart.hpp>
   
   
   
  
  
  
  1.5       +1 -0      xml-xalan/c/src/XSLT/ElemApplyImport.cpp
  
  Index: ElemApplyImport.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemApplyImport.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ElemApplyImport.cpp	2000/11/02 01:46:18	1.4
  +++ ElemApplyImport.cpp	2000/11/30 20:34:06	1.5
  @@ -136,4 +136,5 @@
   ElemApplyImport::appendChildElem(ElemTemplateElement*	/* newChild */)
   {
   	throw XalanDOMException(XalanDOMException::HIERARCHY_REQUEST_ERR);
  +	return 0;
   }
  
  
  
  1.22      +2 -2      xml-xalan/c/src/XSLT/ElemNumber.hpp
  
  Index: ElemNumber.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemNumber.hpp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ElemNumber.hpp	2000/11/09 20:38:15	1.21
  +++ ElemNumber.hpp	2000/11/30 20:34:08	1.22
  @@ -58,7 +58,7 @@
   #define XALAN_ELEMNUMBER_HEADER_GUARD 
   
   /**
  - * $Id: ElemNumber.hpp,v 1.21 2000/11/09 20:38:15 auriemma Exp $
  + * $Id: ElemNumber.hpp,v 1.22 2000/11/30 20:34:08 auriemma Exp $
    * 
    * $State: Exp $
    * 
  @@ -521,7 +521,7 @@
   			 * @return The node count, or 0 if not found.
   			 */
   			int
  -			CountersTable::countNode(
  +			countNode(
   					StylesheetExecutionContext&		support,
   					const ElemNumber*				numberElem,
   					XalanNode*						node);
  
  
  
  1.12      +1 -1      xml-xalan/c/src/XSLT/StylesheetConstructionContextDefault.cpp
  
  Index: StylesheetConstructionContextDefault.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetConstructionContextDefault.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- StylesheetConstructionContextDefault.cpp	2000/11/02 01:46:27	1.11
  +++ StylesheetConstructionContextDefault.cpp	2000/11/30 20:34:10	1.12
  @@ -428,4 +428,4 @@
   StylesheetConstructionContextDefault::getXSLTVersionSupported() const
   {
   	return XSLTEngineImpl::getXSLTVerSupported();
  -}
  \ No newline at end of file
  +}
  
  
  
  1.38      +6 -0      xml-xalan/c/src/XSLT/StylesheetExecutionContext.hpp
  
  Index: StylesheetExecutionContext.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetExecutionContext.hpp,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- StylesheetExecutionContext.hpp	2000/11/21 21:10:20	1.37
  +++ StylesheetExecutionContext.hpp	2000/11/30 20:34:12	1.38
  @@ -66,11 +66,17 @@
   
   
   
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <iostream.h>
  +#else
   #if defined(XALAN_NO_IOSFWD)
   #include <ostream>
   #else
   #include <iosfwd>
   #endif
  +#endif
  +
  +
   
   #include <memory>
   
  
  
  
  1.32      +8 -1      xml-xalan/c/src/XSLT/StylesheetRoot.cpp
  
  Index: StylesheetRoot.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.cpp,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- StylesheetRoot.cpp	2000/11/27 21:44:57	1.31
  +++ StylesheetRoot.cpp	2000/11/30 20:34:15	1.32
  @@ -64,8 +64,15 @@
   
   
   #include <algorithm>
  -#include <iostream>
   #include <memory>
  +
  +
  +
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <iostream.h>
  +#else
  +#include <iostream>
  +#endif
   
   
   
  
  
  
  1.9       +5 -1      xml-xalan/c/src/XSLT/XSLTInputSource.hpp
  
  Index: XSLTInputSource.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTInputSource.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XSLTInputSource.hpp	2000/08/08 16:29:07	1.8
  +++ XSLTInputSource.hpp	2000/11/30 20:34:16	1.9
  @@ -68,10 +68,14 @@
   
   
   
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <iostream.h>
  +#else
   #if defined(XALAN_NO_IOSFWD)
  -#include <istream>
  +#include <ostream>
   #else
   #include <iosfwd>
  +#endif
   #endif
   
   
  
  
  
  1.10      +4 -0      xml-xalan/c/src/XSLT/XSLTResultTarget.hpp
  
  Index: XSLTResultTarget.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTResultTarget.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSLTResultTarget.hpp	2000/07/21 19:52:59	1.9
  +++ XSLTResultTarget.hpp	2000/11/30 20:34:18	1.10
  @@ -66,10 +66,14 @@
   
   
   
  +#if defined(XALAN_OLD_STREAM_HEADERS)
  +#include <iostream.h>
  +#else
   #if defined(XALAN_NO_IOSFWD)
   #include <ostream>
   #else
   #include <iosfwd>
  +#endif
   #endif
   
   
  
  
  
  1.12      +1 -1      xml-xalan/c/src/XSLT/XalanTemplate.cpp
  
  Index: XalanTemplate.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XalanTemplate.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XalanTemplate.cpp	2000/11/27 13:34:59	1.11
  +++ XalanTemplate.cpp	2000/11/30 20:34:19	1.12
  @@ -552,4 +552,4 @@
   __node_alloc<0,0> alloc1;
   __node_alloc<1,0> alloc2;
   
  -#endif
  \ No newline at end of file
  +#endif