[GME-commit] GMESRC/GME/Include/xalanc/DOMSupport DOMServices.hpp, 1.1.1.1, 1.2 DOMSupport.hpp, 1.1.1.1, 1.2 DOMSupportDefault.hpp, 1.1.1.1, 1.2 DOMSupportDefinitions.hpp, 1.1.1.1, 1.2 DOMSupportException.hpp, 1.1.1.1, 1.2 DOMSupportInit.hpp, 1.1.1.1, 1.2 TreeWalker.hpp, 1.1.1.1, 1.2 XalanDocumentPrefixResolver.hpp, 1.1.1.1, 1.2 XalanNamespacesStack.hpp, 1.1.1.1, 1.2

Log messages of CVS commits gme-commit at list.isis.vanderbilt.edu
Tue Feb 19 14:14:04 CST 2008


Update of /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport
In directory escher:/tmp/cvs-serv25974/DOMSupport

Modified Files:
	DOMServices.hpp DOMSupport.hpp DOMSupportDefault.hpp 
	DOMSupportDefinitions.hpp DOMSupportException.hpp 
	DOMSupportInit.hpp TreeWalker.hpp 
	XalanDocumentPrefixResolver.hpp XalanNamespacesStack.hpp 
Log Message:
Xalan1.10 include files.


CVS User: Zoltan Molnar, ISIS (zolmol)

Index: XalanDocumentPrefixResolver.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** XalanDocumentPrefixResolver.hpp	8 Apr 2004 07:56:02 -0000	1.1.1.1
--- XalanDocumentPrefixResolver.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(XALANDOCUMENTPREFIXRESOLVER_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(XALANDOCUMENTPREFIXRESOLVER_HEADER_GUARD_1357924680)
***************
*** 65,73 ****
  
  
- #include <map>
- #include <vector>
- 
- 
- 
  #include <xalanc/XalanDOM/XalanDOMString.hpp>
  
--- 24,27 ----
***************
*** 79,82 ****
--- 33,38 ----
  
  
+ #include <xalanc/Include/XalanVector.hpp>
+ #include <xalanc/Include/XalanMap.hpp>
  #include <xalanc/Include/STLHelper.hpp>
  
***************
*** 91,97 ****
--- 47,57 ----
  
  
+ 
+ 
  class XalanAttr;
  class XalanDocument;
  
+ typedef XalanVector<const XalanNode*> 				AttributeVectorTypeDecl;
+ XALAN_USES_MEMORY_MANAGER(AttributeVectorTypeDecl)
  
  
***************
*** 100,116 ****
  public:
  
! #if defined(XALAN_NO_STD_NAMESPACE)
! 	typedef vector<const XalanNode*> 					AttributeVectorType;
! 
! 	typedef map<const XalanDOMString*,
! 				AttributeVectorType,
! 				pointer_less<XalanDOMString> >			NamespacesMapType;
! #else
! 	typedef std::vector<const XalanNode*> 				AttributeVectorType;
! 
! 	typedef std::map<const XalanDOMString*,
! 					 AttributeVectorType,
! 					 pointer_less<XalanDOMString> >		NamespacesMapType;
! #endif
  
  	/**
--- 60,66 ----
  public:
  
! 	typedef AttributeVectorTypeDecl				        AttributeVectorType;
! 	typedef XalanMap<const XalanDOMString*,
! 					AttributeVectorType>				NamespacesMapType;
  
  	/**
***************
*** 122,126 ****
  	XalanDocumentPrefixResolver(
  			const XalanDocument*	theDocument,
! 			const XalanDOMString&	theURI = XalanDOMString());
  
  	virtual
--- 72,77 ----
  	XalanDocumentPrefixResolver(
  			const XalanDocument*	theDocument,
! 			const XalanDOMString&	theURI = XalanDOMString(XalanMemMgrs::getDummyMemMgr()),
!             MemoryManagerType&      theManager XALAN_DEFAULT_MEMMGR);
  
  	virtual

Index: DOMSupportDefault.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMSupportDefault.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMSupportDefault.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMSupportDefault.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(DOMSUPPORTDEFAULT_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(DOMSUPPORTDEFAULT_HEADER_GUARD_1357924680)
***************
*** 81,85 ****
  public:
  
! 	DOMSupportDefault();
  
  	virtual
--- 40,44 ----
  public:
  
! 	DOMSupportDefault(MemoryManagerType& theManager XALAN_DEFAULT_CONSTRACTOR_MEMORY_MGR);
  
  	virtual

Index: XalanNamespacesStack.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/XalanNamespacesStack.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** XalanNamespacesStack.hpp	8 Apr 2004 07:56:02 -0000	1.1.1.1
--- XalanNamespacesStack.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(XALAN_XALANNAMESPACESSTACK_HEADER_GUARD)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(XALAN_XALANNAMESPACESSTACK_HEADER_GUARD)
***************
*** 65,70 ****
  
  
! #include <deque>
! #include <vector>
  
  
--- 24,29 ----
  
  
! #include <xalanc/Include/XalanVector.hpp>
! #include <xalanc/Include/XalanDeque.hpp>
  
  
***************
*** 78,82 ****
  
  
- 
  class XalanDOMString;
  
--- 37,40 ----
***************
*** 125,133 ****
  		typedef XalanNamespace	value_type;
  
! #if defined(XALAN_NO_STD_NAMESPACE)
! 		typedef	deque<value_type>		NamespaceCollectionType;
! #else
! 		typedef	std::deque<value_type>	NamespaceCollectionType;
! #endif
  
  		typedef const XalanDOMString& (value_type::*MemberFunctionType)() const;
--- 83,87 ----
  		typedef XalanNamespace	value_type;
  
!         typedef	XalanDeque<value_type>	NamespaceCollectionType;
  
  		typedef const XalanDOMString& (value_type::*MemberFunctionType)() const;
***************
*** 138,149 ****
  		typedef NamespaceCollectionType::const_reverse_iterator		const_reverse_iterator;
  
! 		XalanNamespacesStackEntry();
  
! 		XalanNamespacesStackEntry(const XalanNamespacesStackEntry&	theSource);
  
  		~XalanNamespacesStackEntry();
  
  		XalanNamespacesStackEntry&
! 		operator=(const XalanNamespacesStackEntry&	theRHS);
  
  		void
--- 92,105 ----
  		typedef NamespaceCollectionType::const_reverse_iterator		const_reverse_iterator;
  
! 		XalanNamespacesStackEntry(MemoryManagerType& theManager);
  
! 		XalanNamespacesStackEntry(const XalanNamespacesStackEntry&	theSource,
!                                     MemoryManagerType&              theManager);
  
  		~XalanNamespacesStackEntry();
  
  		XalanNamespacesStackEntry&
! 		set(const XalanNamespacesStackEntry&	theRHS,
!                   MemoryManagerType&                theManager);
  
  		void
***************
*** 244,247 ****
--- 200,206 ----
  
  	private:
+         //Not implemented
+         XalanNamespacesStackEntry();
+ 		XalanNamespacesStackEntry(const XalanNamespacesStackEntry&	theSource);
  
  		const XalanDOMString*
***************
*** 259,277 ****
  	typedef XalanNamespacesStackEntry	value_type;
  
! #if defined(XALAN_NO_STD_NAMESPACE)
! 	typedef	deque<value_type>		NamespacesStackType;
! #if defined(XALAN_USE_DEQUE_FOR_VECTOR_BOOL)
! 	typedef deque<bool>				BoolVectorType;
! #else
! 	typedef vector<bool>			BoolVectorType;
! #endif
! #else
! 	typedef	std::deque<value_type>	NamespacesStackType;
! #if defined(XALAN_USE_DEQUE_FOR_VECTOR_BOOL)
! 	typedef std::deque<bool>		BoolVectorType;
! #else
! 	typedef std::vector<bool>		BoolVectorType;
! #endif
! #endif
  
  	typedef NamespacesStackType::iterator					iterator;
--- 218,223 ----
  	typedef XalanNamespacesStackEntry	value_type;
  
!     typedef	XalanDeque<value_type, ConstructWithMemoryManagerTraits<value_type> >		NamespacesStackType;
! 	typedef XalanVector<bool>			BoolVectorType;
  
  	typedef NamespacesStackType::iterator					iterator;
***************
*** 286,290 ****
  
  	explicit
! 	XalanNamespacesStack();
  
  	~XalanNamespacesStack();
--- 232,236 ----
  
  	explicit
! 	XalanNamespacesStack(MemoryManagerType& theManager);
  
  	~XalanNamespacesStack();
***************
*** 407,410 ****
--- 353,359 ----
  	// not implemented
  	XalanNamespacesStack(const XalanNamespacesStack&);
+     XalanNamespacesStack();
+ 	XalanNamespacesStackEntry&
+ 	operator=(const XalanNamespacesStackEntry&	theRHS);
  
  	bool

Index: DOMServices.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMServices.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMServices.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMServices.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(DOMSERVICES_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(DOMSERVICES_HEADER_GUARD_1357924680)
***************
*** 121,125 ****
  	 */
  	static void
! 	initialize();
  
  	/**
--- 80,84 ----
  	 */
  	static void
! 	initialize(MemoryManagerType&      theManager);
  
  	/**
***************
*** 130,141 ****
  	terminate();
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param node DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanNode&	node);
  
  	/**
--- 89,93 ----
  	terminate();
  
! 
  
  	/**
***************
*** 150,164 ****
  			XalanDOMString&		data);
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param attribute DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanAttr&	attribute)
! 	{
! 		return attribute.getNodeValue();
! 	}
  
  	/**
--- 102,106 ----
  			XalanDOMString&		data);
  
! 
  
  	/**
***************
*** 176,190 ****
  	}
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param comment DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanComment&		comment)
! 	{
! 		return comment.getData();
! 	}
  
  	/**
--- 118,122 ----
  	}
  
! 
  
  	/**
***************
*** 202,213 ****
  	}
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param document DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanDocument&	document);
  
  	/**
--- 134,138 ----
  	}
  
! 
  
  	/**
***************
*** 222,233 ****
  			XalanDOMString&			data);
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param documentFragment DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanDocumentFragment&	documentFragment);
  
  	/**
--- 147,151 ----
  			XalanDOMString&			data);
  
! 
  
  	/**
***************
*** 242,253 ****
  			XalanDOMString&					data);
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param element DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanElement&		element);
  
  	/**
--- 160,164 ----
  			XalanDOMString&					data);
  
! 
  
  	/**
***************
*** 262,276 ****
  			XalanDOMString&			data);
  
- 	/**
- 	 * Retrieves data for node
- 	 * 
- 	 * @param pi DOM node whose data is to be returned
- 	 * @return a string representation of the node's data
- 	 */
- 	static XalanDOMString
- 	getNodeData(const XalanProcessingInstruction&	pi)
- 	{
- 		return pi.getData();
- 	}
  
  	/**
--- 173,176 ----
***************
*** 288,302 ****
  	}
  
! 	/**
! 	 * Retrieves data for node
! 	 * 
! 	 * @param node DOM node whose data is to be returned
! 	 * @return a string representation of the node's data
! 	 */
! 	static XalanDOMString
! 	getNodeData(const XalanText&	text)
! 	{
! 		return text.getData();
! 	}
  
  	/**
--- 188,192 ----
  	}
  
! 
  
  	/**
***************
*** 670,676 ****
  			const XalanDOMString&	data)
  	{
! 		assert(length(data) == FormatterListener::size_type(length(data)));
  
! 		(formatterListener.*function)(c_wstr(data), FormatterListener::size_type(length(data)));
  	}
  };
--- 560,574 ----
  			const XalanDOMString&	data)
  	{
!         const XalanDOMString::size_type     theLength =
!             data.length();
  
!         if (theLength != 0)
!         {
! 	        assert(theLength == FormatterListener::size_type(theLength));
! 
! 	        (formatterListener.*function)(
!                 data.c_str(),
!                 FormatterListener::size_type(theLength));
!         }
  	}
  };

Index: DOMSupport.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMSupport.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMSupport.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMSupport.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(DOMSUPPORT_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(DOMSUPPORT_HEADER_GUARD_1357924680)

Index: DOMSupportException.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMSupportException.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMSupportException.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMSupportException.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(DOMSUPPORTEXCEPTION_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(DOMSUPPORTEXCEPTION_HEADER_GUARD_1357924680)
***************
*** 87,91 ****
  	 * @param message error message
  	 */
! 	explicit DOMSupportException(const XalanDOMString&	message);
  
  	virtual
--- 46,50 ----
  	 * @param message error message
  	 */
! 	explicit DOMSupportException(const XalanDOMString&	message, MemoryManagerType& theManager);
  
  	virtual

Index: DOMSupportInit.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMSupportInit.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMSupportInit.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMSupportInit.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  
***************
*** 79,83 ****
  
  	explicit
! 	DOMSupportInit();
  
  	~DOMSupportInit();
--- 38,42 ----
  
  	explicit
! 	DOMSupportInit(MemoryManagerType& theManager);
  
  	~DOMSupportInit();
***************
*** 93,97 ****
  	
  	static void
! 	initialize();
  
  	static void
--- 52,56 ----
  	
  	static void
! 	initialize(MemoryManagerType& theManager);
  
  	static void

Index: TreeWalker.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/TreeWalker.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** TreeWalker.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- TreeWalker.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(TREEWALKER_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(TREEWALKER_HEADER_GUARD_1357924680)

Index: DOMSupportDefinitions.hpp
===================================================================
RCS file: /project/gme-repository/GMESRC/GME/Include/xalanc/DOMSupport/DOMSupportDefinitions.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** DOMSupportDefinitions.hpp	8 Apr 2004 07:56:01 -0000	1.1.1.1
--- DOMSupportDefinitions.hpp	19 Feb 2008 20:14:02 -0000	1.2
***************
*** 1,57 ****
  /*
!  * The Apache Software License, Version 1.1
!  *
!  *
!  * Copyright (c) 1999-2004 The Apache Software Foundation.  All rights 
!  * reserved.
!  *
!  * Redistribution and use in source and binary forms, with or without
!  * modification, are permitted provided that the following conditions
!  * are met:
!  *
!  * 1. Redistributions of source code must retain the above copyright
!  *    notice, this list of conditions and the following disclaimer. 
!  *
!  * 2. Redistributions in binary form must reproduce the above copyright
!  *    notice, this list of conditions and the following disclaimer in
!  *    the documentation and/or other materials provided with the
!  *    distribution.
!  *
!  * 3. The end-user documentation included with the redistribution,
!  *    if any, must include the following acknowledgment:  
!  *       "This product includes software developed by the
!  *        Apache Software Foundation (http://www.apache.org/)."
!  *    Alternately, this acknowledgment may appear in the software itself,
!  *    if and wherever such third-party acknowledgments normally appear.
!  *
!  * 4. The names "Xalan" and "Apache Software Foundation" must
!  *    not be used to endorse or promote products derived from this
!  *    software without prior written permission. For written 
!  *    permission, please contact apache at apache.org.
   *
!  * 5. Products derived from this software may not be called "Apache",
!  *    nor may "Apache" appear in their name, without prior written
!  *    permission of the Apache Software Foundation.
   *
!  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
!  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
!  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
!  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
!  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
!  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
!  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
!  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
!  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
!  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
!  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
!  * SUCH DAMAGE.
!  * ====================================================================
   *
!  * This software consists of voluntary contributions made by many
!  * individuals on behalf of the Apache Software Foundation and was
!  * originally based on software copyright (c) 1999, International
!  * Business Machines, Inc., http://www.ibm.com.  For more
!  * information on the Apache Software Foundation, please see
!  * <http://www.apache.org/>.
   */
  #if !defined(DOMSUPPORT_DEFINITIONS_HEADER_GUARD_1357924680)
--- 1,16 ----
  /*
!  * Copyright 1999-2004 The Apache Software Foundation.
   *
!  * Licensed under the Apache License, Version 2.0 (the "License");
!  * you may not use this file except in compliance with the License.
!  * You may obtain a copy of the License at
   *
!  *     http://www.apache.org/licenses/LICENSE-2.0
   *
!  * Unless required by applicable law or agreed to in writing, software
!  * distributed under the License is distributed on an "AS IS" BASIS,
!  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
!  * See the License for the specific language governing permissions and
!  * limitations under the License.
   */
  #if !defined(DOMSUPPORT_DEFINITIONS_HEADER_GUARD_1357924680)



More information about the GME-commit mailing list