Thu Jan 24 07:17:34 2008 UTC ()
Update to 1.10.

Major updates since version 1.9 include:

* Support for XML 1.1 and Namespaces in XML 1.1.
* Added support for IBM XLC 7.0 compiler on Linux.
* Improved and stabilized C pluggable memory management functionality.
* Various improvements in Xalan XML serializers for better performance and stability.
* Upgrade from Xerces-C 2.6 to Xerces-C 2.7.

Major updates since version 1.8 include:

* Pluggable Memory Management. This feature allows applications to maintain
  precise control over memory allocations. This will allow users, with
  knowledge of their application's characteristics, to provide a more
  efficient allocation method than the general purpose procedures provided
  by the system. for more information on how to use this feature, please see
  the Pluggable Memory Management section of the Programming page.
* Improved stability on the execution of large stylesheets and XML documents.
  Because the current implementation relies on function recursion, certain
  stylesheets/input documents may cause the program stack to overflow and
  cause the application to fail. It also may inhibit executing stylesheets
  that are heavily dependent on recursive functions. This feature will
  prevent these types of failure.
* Provided a global option to pool all text node strings. This feature
  allows developers to set a flag to determine if a parsed source tree will
  pool the values of all of the text nodes in the XML document. By doing so,
  this can result in a significant reduction in memory usage, particularly
  if there are a lot of repeated values in text nodes. Please see the class
  descriptions for XalanSourceTreeDocument, XalanDefaultParsedSource, and
  XalanTransformer in the API Reference section for more information.

... and more, see: http://xml.apache.org/xalan-c/whatsnew.html


(xtraeme)
diff -r1.23 -r1.24 pkgsrc/textproc/xalan-c/Makefile
diff -r1.2 -r1.3 pkgsrc/textproc/xalan-c/PLIST
diff -r1.6 -r1.7 pkgsrc/textproc/xalan-c/distinfo
diff -r1.3 -r0 pkgsrc/textproc/xalan-c/patches/patch-aa
diff -r1.3 -r0 pkgsrc/textproc/xalan-c/patches/patch-ac
diff -r1.3 -r0 pkgsrc/textproc/xalan-c/patches/patch-ad

cvs diff -r1.23 -r1.24 pkgsrc/textproc/xalan-c/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/xalan-c/Attic/Makefile 2006/03/04 21:30:52 1.23
+++ pkgsrc/textproc/xalan-c/Attic/Makefile 2008/01/24 07:17:33 1.24
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.23 2006/03/04 21:30:52 jlam Exp $ 1# $NetBSD: Makefile,v 1.24 2008/01/24 07:17:33 xtraeme Exp $
2# 2#
3 3
4DISTNAME= Xalan-C_1_6-src 4DISTNAME= Xalan-C_1_10_0-src
5PKGNAME= xalan-c-1.6 5PKGNAME= xalan-c-1.10
6PKGREVISION= 4 6#PKGREVISION= 1
7CATEGORIES= textproc 7CATEGORIES= textproc
8MASTER_SITES= http://archive.apache.org/dist/xml/xalan-c/source/ 8MASTER_SITES= http://archive.apache.org/dist/xml/xalan-c/source/
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://xml.apache.org/xalan-c/ 11HOMEPAGE= http://xml.apache.org/xalan-c/
12COMMENT= XSLT processor of the Apache Project 12COMMENT= XSLT processor of the Apache Project
13 13
14WRKSRC= ${WRKDIR}/xml-xalan/c/src/xalanc 14WRKSRC= ${WRKDIR}/xml-xalan/c
15USE_TOOLS+= gmake 15USE_TOOLS+= gmake
16USE_LANGUAGES= c c++ 16USE_LANGUAGES= c c++
17 17
18.include "../../mk/bsd.prefs.mk" 18.include "../../mk/bsd.prefs.mk"
19.if ${LOWER_OPSYS} == "SunOS" 19.if ${LOWER_OPSYS} == "SunOS"
20XALAN_PLATFORM= solaris 20XALAN_PLATFORM= solaris
21.elif ${LOWER_OPSYS} == "Darwin" 21.elif ${LOWER_OPSYS} == "Darwin"
22XALAN_PLATFORM= macosx 22XALAN_PLATFORM= macosx
23.else 23.else
24XALAN_PLATFORM= ${LOWER_OPSYS} 24XALAN_PLATFORM= ${LOWER_OPSYS}
25.endif 25.endif
26XALAN_ENV= XALANCROOT="${WRKDIR}/xml-xalan/c" ICUROOT="${LOCALBASE}" 26XALAN_ENV= XALANCROOT="${WRKDIR}/xml-xalan/c" ICUROOT="${LOCALBASE}"
27 27

cvs diff -r1.2 -r1.3 pkgsrc/textproc/xalan-c/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/xalan-c/Attic/PLIST 2004/02/11 04:20:16 1.2
+++ pkgsrc/textproc/xalan-c/Attic/PLIST 2008/01/24 07:17:33 1.3
@@ -1,126 +1,152 @@ @@ -1,126 +1,152 @@
1@comment $NetBSD: PLIST,v 1.2 2004/02/11 04:20:16 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.3 2008/01/24 07:17:33 xtraeme Exp $
2bin/Xalan 2bin/Xalan
3bin/testXSLT 
4include/xalanc/DOMSupport/DOMServices.hpp 3include/xalanc/DOMSupport/DOMServices.hpp
5include/xalanc/DOMSupport/DOMSupport.hpp 4include/xalanc/DOMSupport/DOMSupport.hpp
6include/xalanc/DOMSupport/DOMSupportDefault.hpp 5include/xalanc/DOMSupport/DOMSupportDefault.hpp
7include/xalanc/DOMSupport/DOMSupportDefinitions.hpp 6include/xalanc/DOMSupport/DOMSupportDefinitions.hpp
8include/xalanc/DOMSupport/DOMSupportException.hpp 7include/xalanc/DOMSupport/DOMSupportException.hpp
9include/xalanc/DOMSupport/DOMSupportInit.hpp 8include/xalanc/DOMSupport/DOMSupportInit.hpp
10include/xalanc/DOMSupport/TreeWalker.hpp 9include/xalanc/DOMSupport/TreeWalker.hpp
11include/xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp 10include/xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp
12include/xalanc/DOMSupport/XalanNamespacesStack.hpp 11include/xalanc/DOMSupport/XalanNamespacesStack.hpp
 12include/xalanc/Harness/XalanDiagnosticMemoryManager.hpp
 13include/xalanc/Harness/XalanFileUtility.hpp
 14include/xalanc/Harness/XalanHarnessDefinitions.hpp
 15include/xalanc/Harness/XalanXMLFileReporter.hpp
13include/xalanc/Include/AIXDefinitions.hpp 16include/xalanc/Include/AIXDefinitions.hpp
14include/xalanc/Include/GCCDefinitions.hpp 17include/xalanc/Include/GCCDefinitions.hpp
15include/xalanc/Include/HPUXDefinitions.hpp 18include/xalanc/Include/HPUXDefinitions.hpp
16include/xalanc/Include/IntelDefinitions.hpp 19include/xalanc/Include/IntelDefinitions.hpp
17include/xalanc/Include/OS390Definitions.hpp 20include/xalanc/Include/OS390Definitions.hpp
 21include/xalanc/Include/OS400Definitions.hpp
18include/xalanc/Include/PlatformDefinitions.hpp 22include/xalanc/Include/PlatformDefinitions.hpp
19include/xalanc/Include/STLHelper.hpp 23include/xalanc/Include/STLHelper.hpp
20include/xalanc/Include/SolarisDefinitions.hpp 24include/xalanc/Include/SolarisDefinitions.hpp
21include/xalanc/Include/TRU64Definitions.hpp 25include/xalanc/Include/TRU64Definitions.hpp
22include/xalanc/Include/VCPPDefinitions.hpp 26include/xalanc/Include/VCPPDefinitions.hpp
23include/xalanc/Include/XalanArrayKeyMap.hpp 
24include/xalanc/Include/XalanAutoPtr.hpp 27include/xalanc/Include/XalanAutoPtr.hpp
 28include/xalanc/Include/XalanDeque.hpp
 29include/xalanc/Include/XalanList.hpp
 30include/xalanc/Include/XalanMap.hpp
 31include/xalanc/Include/XalanMemMgrAutoPtr.hpp
 32include/xalanc/Include/XalanMemMgrHelper.hpp
 33include/xalanc/Include/XalanMemMngArrayAllocate.hpp
 34include/xalanc/Include/XalanMemoryManagement.hpp
25include/xalanc/Include/XalanObjectCache.hpp 35include/xalanc/Include/XalanObjectCache.hpp
 36include/xalanc/Include/XalanObjectStackCache.hpp
 37include/xalanc/Include/XalanSet.hpp
 38include/xalanc/Include/XalanVector.hpp
26include/xalanc/Include/XalanVersion.hpp 39include/xalanc/Include/XalanVersion.hpp
27include/xalanc/PlatformSupport/ArenaAllocator.hpp 40include/xalanc/PlatformSupport/ArenaAllocator.hpp
28include/xalanc/PlatformSupport/ArenaBlock.hpp 41include/xalanc/PlatformSupport/ArenaBlock.hpp
 42include/xalanc/PlatformSupport/ArenaBlockBase.hpp
29include/xalanc/PlatformSupport/AttributeListImpl.hpp 43include/xalanc/PlatformSupport/AttributeListImpl.hpp
30include/xalanc/PlatformSupport/AttributeVectorEntry.hpp 44include/xalanc/PlatformSupport/AttributeVectorEntry.hpp
31include/xalanc/PlatformSupport/AttributeVectorEntryExtended.hpp 45include/xalanc/PlatformSupport/AttributeVectorEntryExtended.hpp
32include/xalanc/PlatformSupport/AttributesImpl.hpp 46include/xalanc/PlatformSupport/AttributesImpl.hpp
33include/xalanc/PlatformSupport/DOMStringHelper.hpp 47include/xalanc/PlatformSupport/DOMStringHelper.hpp
34include/xalanc/PlatformSupport/DOMStringPrintWriter.hpp 48include/xalanc/PlatformSupport/DOMStringPrintWriter.hpp
35include/xalanc/PlatformSupport/DirectoryEnumerator.hpp 49include/xalanc/PlatformSupport/DirectoryEnumerator.hpp
36include/xalanc/PlatformSupport/DoubleSupport.hpp 50include/xalanc/PlatformSupport/DoubleSupport.hpp
37include/xalanc/PlatformSupport/ExecutionContext.hpp 51include/xalanc/PlatformSupport/ExecutionContext.hpp
38include/xalanc/PlatformSupport/FormatterListener.hpp 52include/xalanc/PlatformSupport/FormatterListener.hpp
 53include/xalanc/PlatformSupport/LocalMsgIndex.hpp
39include/xalanc/PlatformSupport/NamedNodeMapAttributeList.hpp 54include/xalanc/PlatformSupport/NamedNodeMapAttributeList.hpp
40include/xalanc/PlatformSupport/NullPrintWriter.hpp 55include/xalanc/PlatformSupport/NullPrintWriter.hpp
41include/xalanc/PlatformSupport/PlatformSupportDefinitions.hpp 56include/xalanc/PlatformSupport/PlatformSupportDefinitions.hpp
42include/xalanc/PlatformSupport/PlatformSupportInit.hpp 57include/xalanc/PlatformSupport/PlatformSupportInit.hpp
43include/xalanc/PlatformSupport/PrefixResolver.hpp 58include/xalanc/PlatformSupport/PrefixResolver.hpp
44include/xalanc/PlatformSupport/PrintWriter.hpp 59include/xalanc/PlatformSupport/PrintWriter.hpp
45include/xalanc/PlatformSupport/Resettable.hpp 60include/xalanc/PlatformSupport/Resettable.hpp
46include/xalanc/PlatformSupport/ReusableArenaAllocator.hpp 61include/xalanc/PlatformSupport/ReusableArenaAllocator.hpp
47include/xalanc/PlatformSupport/ReusableArenaBlock.hpp 62include/xalanc/PlatformSupport/ReusableArenaBlock.hpp
48include/xalanc/PlatformSupport/StdBinInputStream.hpp 63include/xalanc/PlatformSupport/StdBinInputStream.hpp
49include/xalanc/PlatformSupport/StringTokenizer.hpp 64include/xalanc/PlatformSupport/StringTokenizer.hpp
50include/xalanc/PlatformSupport/URISupport.hpp 65include/xalanc/PlatformSupport/URISupport.hpp
51include/xalanc/PlatformSupport/Writer.hpp 66include/xalanc/PlatformSupport/Writer.hpp
52include/xalanc/PlatformSupport/XSLException.hpp 67include/xalanc/PlatformSupport/XSLException.hpp
53include/xalanc/PlatformSupport/XalanAllocator.hpp 68include/xalanc/PlatformSupport/XalanAllocator.hpp
54include/xalanc/PlatformSupport/XalanArrayAllocator.hpp 69include/xalanc/PlatformSupport/XalanArrayAllocator.hpp
55include/xalanc/PlatformSupport/XalanBitmap.hpp 70include/xalanc/PlatformSupport/XalanBitmap.hpp
 71include/xalanc/PlatformSupport/XalanCollationServices.hpp
56include/xalanc/PlatformSupport/XalanDOMStringAllocator.hpp 72include/xalanc/PlatformSupport/XalanDOMStringAllocator.hpp
57include/xalanc/PlatformSupport/XalanDOMStringCache.hpp 73include/xalanc/PlatformSupport/XalanDOMStringCache.hpp
58include/xalanc/PlatformSupport/XalanDOMStringHashTable.hpp 74include/xalanc/PlatformSupport/XalanDOMStringHashTable.hpp
59include/xalanc/PlatformSupport/XalanDOMStringPool.hpp 75include/xalanc/PlatformSupport/XalanDOMStringPool.hpp
60include/xalanc/PlatformSupport/XalanDecimalFormat.hpp 76include/xalanc/PlatformSupport/XalanDOMStringReusableAllocator.hpp
61include/xalanc/PlatformSupport/XalanDecimalFormatSymbols.hpp 77include/xalanc/PlatformSupport/XalanDecimalFormatSymbols.hpp
62include/xalanc/PlatformSupport/XalanEncodingPropertyCache.hpp 78include/xalanc/PlatformSupport/XalanEncodingPropertyCache.hpp
63include/xalanc/PlatformSupport/XalanFStreamOutputStream.hpp 79include/xalanc/PlatformSupport/XalanFStreamOutputStream.hpp
64include/xalanc/PlatformSupport/XalanFileOutputStream.hpp 80include/xalanc/PlatformSupport/XalanFileOutputStream.hpp
 81include/xalanc/PlatformSupport/XalanICUMessageLoader.hpp
 82include/xalanc/PlatformSupport/XalanInMemoryMessageLoader.hpp
65include/xalanc/PlatformSupport/XalanLocator.hpp 83include/xalanc/PlatformSupport/XalanLocator.hpp
 84include/xalanc/PlatformSupport/XalanMemoryManagerDefault.hpp
 85include/xalanc/PlatformSupport/XalanMessageLoader.hpp
 86include/xalanc/PlatformSupport/XalanNLSMessageLoader.hpp
66include/xalanc/PlatformSupport/XalanNamespace.hpp 87include/xalanc/PlatformSupport/XalanNamespace.hpp
67include/xalanc/PlatformSupport/XalanNullOutputStream.hpp 88include/xalanc/PlatformSupport/XalanNullOutputStream.hpp
68include/xalanc/PlatformSupport/XalanNumberFormat.hpp 89include/xalanc/PlatformSupport/XalanNumberFormat.hpp
69include/xalanc/PlatformSupport/XalanOutputStream.hpp 90include/xalanc/PlatformSupport/XalanOutputStream.hpp
70include/xalanc/PlatformSupport/XalanOutputStreamPrintWriter.hpp 91include/xalanc/PlatformSupport/XalanOutputStreamPrintWriter.hpp
71include/xalanc/PlatformSupport/XalanParsedURI.hpp 92include/xalanc/PlatformSupport/XalanParsedURI.hpp
72include/xalanc/PlatformSupport/XalanReferenceCountedObject.hpp 93include/xalanc/PlatformSupport/XalanReferenceCountedObject.hpp
73include/xalanc/PlatformSupport/XalanSimplePrefixResolver.hpp 94include/xalanc/PlatformSupport/XalanSimplePrefixResolver.hpp
74include/xalanc/PlatformSupport/XalanStdOutputStream.hpp 95include/xalanc/PlatformSupport/XalanStdOutputStream.hpp
75include/xalanc/PlatformSupport/XalanToXercesTranscoderWrapper.hpp 96include/xalanc/PlatformSupport/XalanToXercesTranscoderWrapper.hpp
76include/xalanc/PlatformSupport/XalanTranscodingServices.hpp 97include/xalanc/PlatformSupport/XalanTranscodingServices.hpp
77include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp 98include/xalanc/PlatformSupport/XalanUTF16Transcoder.hpp
78include/xalanc/PlatformSupport/XalanUnicode.hpp 99include/xalanc/PlatformSupport/XalanUnicode.hpp
79include/xalanc/PlatformSupport/XalanXMLChar.hpp 100include/xalanc/PlatformSupport/XalanXMLChar.hpp
80include/xalanc/XMLSupport/FormatterToDOM.hpp 101include/xalanc/XMLSupport/FormatterToDOM.hpp
81include/xalanc/XMLSupport/FormatterToHTML.hpp 102include/xalanc/XMLSupport/FormatterToHTML.hpp
82include/xalanc/XMLSupport/FormatterToNull.hpp 103include/xalanc/XMLSupport/FormatterToNull.hpp
83include/xalanc/XMLSupport/FormatterToText.hpp 104include/xalanc/XMLSupport/FormatterToText.hpp
84include/xalanc/XMLSupport/FormatterToXML.hpp 105include/xalanc/XMLSupport/FormatterToXML.hpp
85include/xalanc/XMLSupport/FormatterToXML_UTF16.hpp 106include/xalanc/XMLSupport/FormatterToXMLUnicode.hpp
86include/xalanc/XMLSupport/FormatterToXML_UTF8.hpp 
87include/xalanc/XMLSupport/FormatterTreeWalker.hpp 107include/xalanc/XMLSupport/FormatterTreeWalker.hpp
88include/xalanc/XMLSupport/XMLParserLiaison.hpp 108include/xalanc/XMLSupport/XMLParserLiaison.hpp
89include/xalanc/XMLSupport/XMLSupportDefinitions.hpp 109include/xalanc/XMLSupport/XMLSupportDefinitions.hpp
90include/xalanc/XMLSupport/XMLSupportException.hpp 110include/xalanc/XMLSupport/XMLSupportException.hpp
91include/xalanc/XMLSupport/XMLSupportInit.hpp 111include/xalanc/XMLSupport/XMLSupportInit.hpp
 112include/xalanc/XMLSupport/XalanDummyIndentWriter.hpp
 113include/xalanc/XMLSupport/XalanFormatterWriter.hpp
92include/xalanc/XMLSupport/XalanHTMLElementsProperties.hpp 114include/xalanc/XMLSupport/XalanHTMLElementsProperties.hpp
 115include/xalanc/XMLSupport/XalanIndentWriter.hpp
 116include/xalanc/XMLSupport/XalanOtherEncodingWriter.hpp
 117include/xalanc/XMLSupport/XalanUTF16Writer.hpp
 118include/xalanc/XMLSupport/XalanUTF8Writer.hpp
 119include/xalanc/XMLSupport/XalanXMLSerializerBase.hpp
 120include/xalanc/XMLSupport/XalanXMLSerializerFactory.hpp
93include/xalanc/XPath/ElementPrefixResolverProxy.hpp 121include/xalanc/XPath/ElementPrefixResolverProxy.hpp
94include/xalanc/XPath/FormatterStringLengthCounter.hpp 122include/xalanc/XPath/FormatterStringLengthCounter.hpp
95include/xalanc/XPath/FoundIndex.hpp 
96include/xalanc/XPath/Function.hpp 123include/xalanc/XPath/Function.hpp
97include/xalanc/XPath/FunctionConcat.hpp 124include/xalanc/XPath/FunctionConcat.hpp
98include/xalanc/XPath/FunctionContains.hpp 125include/xalanc/XPath/FunctionContains.hpp
99include/xalanc/XPath/FunctionID.hpp 126include/xalanc/XPath/FunctionID.hpp
100include/xalanc/XPath/FunctionLang.hpp 127include/xalanc/XPath/FunctionLang.hpp
101include/xalanc/XPath/FunctionNamespaceURI.hpp 128include/xalanc/XPath/FunctionNamespaceURI.hpp
102include/xalanc/XPath/FunctionNormalizeSpace.hpp 129include/xalanc/XPath/FunctionNormalizeSpace.hpp
103include/xalanc/XPath/FunctionStartsWith.hpp 130include/xalanc/XPath/FunctionStartsWith.hpp
104include/xalanc/XPath/FunctionString.hpp 131include/xalanc/XPath/FunctionString.hpp
105include/xalanc/XPath/FunctionSubstring.hpp 132include/xalanc/XPath/FunctionSubstring.hpp
106include/xalanc/XPath/FunctionSubstringAfter.hpp 133include/xalanc/XPath/FunctionSubstringAfter.hpp
107include/xalanc/XPath/FunctionSubstringBefore.hpp 134include/xalanc/XPath/FunctionSubstringBefore.hpp
108include/xalanc/XPath/FunctionTranslate.hpp 135include/xalanc/XPath/FunctionTranslate.hpp
109include/xalanc/XPath/MutableNodeRefList.hpp 136include/xalanc/XPath/MutableNodeRefList.hpp
110include/xalanc/XPath/NameSpace.hpp 137include/xalanc/XPath/NameSpace.hpp
111include/xalanc/XPath/NodeRefList.hpp 138include/xalanc/XPath/NodeRefList.hpp
112include/xalanc/XPath/NodeRefListBase.hpp 139include/xalanc/XPath/NodeRefListBase.hpp
113include/xalanc/XPath/ResultTreeFragBase.hpp 
114include/xalanc/XPath/XBoolean.hpp 140include/xalanc/XPath/XBoolean.hpp
115include/xalanc/XPath/XNodeSet.hpp 141include/xalanc/XPath/XNodeSet.hpp
116include/xalanc/XPath/XNodeSetAllocator.hpp 142include/xalanc/XPath/XNodeSetAllocator.hpp
117include/xalanc/XPath/XNodeSetBase.hpp 143include/xalanc/XPath/XNodeSetBase.hpp
118include/xalanc/XPath/XNodeSetNodeProxy.hpp 144include/xalanc/XPath/XNodeSetNodeProxy.hpp
119include/xalanc/XPath/XNodeSetNodeProxyAllocator.hpp 145include/xalanc/XPath/XNodeSetNodeProxyAllocator.hpp
120include/xalanc/XPath/XNodeSetResultTreeFragProxy.hpp 146include/xalanc/XPath/XNodeSetResultTreeFragProxy.hpp
121include/xalanc/XPath/XNull.hpp 147include/xalanc/XPath/XNull.hpp
122include/xalanc/XPath/XNumber.hpp 148include/xalanc/XPath/XNumber.hpp
123include/xalanc/XPath/XNumberAllocator.hpp 149include/xalanc/XPath/XNumberAllocator.hpp
124include/xalanc/XPath/XNumberBase.hpp 150include/xalanc/XPath/XNumberBase.hpp
125include/xalanc/XPath/XObject.hpp 151include/xalanc/XPath/XObject.hpp
126include/xalanc/XPath/XObjectFactory.hpp 152include/xalanc/XPath/XObjectFactory.hpp
@@ -154,26 +180,27 @@ include/xalanc/XPath/XStringAdapter.hpp @@ -154,26 +180,27 @@ include/xalanc/XPath/XStringAdapter.hpp
154include/xalanc/XPath/XStringAdapterAllocator.hpp 180include/xalanc/XPath/XStringAdapterAllocator.hpp
155include/xalanc/XPath/XStringAllocator.hpp 181include/xalanc/XPath/XStringAllocator.hpp
156include/xalanc/XPath/XStringBase.hpp 182include/xalanc/XPath/XStringBase.hpp
157include/xalanc/XPath/XStringCached.hpp 183include/xalanc/XPath/XStringCached.hpp
158include/xalanc/XPath/XStringCachedAllocator.hpp 184include/xalanc/XPath/XStringCachedAllocator.hpp
159include/xalanc/XPath/XStringReference.hpp 185include/xalanc/XPath/XStringReference.hpp
160include/xalanc/XPath/XStringReferenceAllocator.hpp 186include/xalanc/XPath/XStringReferenceAllocator.hpp
161include/xalanc/XPath/XToken.hpp 187include/xalanc/XPath/XToken.hpp
162include/xalanc/XPath/XTokenNumberAdapter.hpp 188include/xalanc/XPath/XTokenNumberAdapter.hpp
163include/xalanc/XPath/XTokenNumberAdapterAllocator.hpp 189include/xalanc/XPath/XTokenNumberAdapterAllocator.hpp
164include/xalanc/XPath/XTokenStringAdapter.hpp 190include/xalanc/XPath/XTokenStringAdapter.hpp
165include/xalanc/XPath/XTokenStringAdapterAllocator.hpp 191include/xalanc/XPath/XTokenStringAdapterAllocator.hpp
166include/xalanc/XPath/XUnknown.hpp 192include/xalanc/XPath/XUnknown.hpp
 193include/xalanc/XPath/XalanDocumentFragmentNodeRefListBaseProxy.hpp
167include/xalanc/XPath/XalanQName.hpp 194include/xalanc/XPath/XalanQName.hpp
168include/xalanc/XPath/XalanQNameByReference.hpp 195include/xalanc/XPath/XalanQNameByReference.hpp
169include/xalanc/XPath/XalanQNameByValue.hpp 196include/xalanc/XPath/XalanQNameByValue.hpp
170include/xalanc/XPath/XalanQNameByValueAllocator.hpp 197include/xalanc/XPath/XalanQNameByValueAllocator.hpp
171include/xalanc/XPath/XalanXPathException.hpp 198include/xalanc/XPath/XalanXPathException.hpp
172include/xalanc/XPathCAPI/XPathCAPI.h 199include/xalanc/XPathCAPI/XPathCAPI.h
173include/xalanc/XSLT/AVT.hpp 200include/xalanc/XSLT/AVT.hpp
174include/xalanc/XSLT/AVTPart.hpp 201include/xalanc/XSLT/AVTPart.hpp
175include/xalanc/XSLT/AVTPartSimple.hpp 202include/xalanc/XSLT/AVTPartSimple.hpp
176include/xalanc/XSLT/AVTPartXPath.hpp 203include/xalanc/XSLT/AVTPartXPath.hpp
177include/xalanc/XSLT/Constants.hpp 204include/xalanc/XSLT/Constants.hpp
178include/xalanc/XSLT/CountersTable.hpp 205include/xalanc/XSLT/CountersTable.hpp
179include/xalanc/XSLT/DecimalToRoman.hpp 206include/xalanc/XSLT/DecimalToRoman.hpp
@@ -182,26 +209,27 @@ include/xalanc/XSLT/ElemApplyTemplates.h @@ -182,26 +209,27 @@ include/xalanc/XSLT/ElemApplyTemplates.h
182include/xalanc/XSLT/ElemAttribute.hpp 209include/xalanc/XSLT/ElemAttribute.hpp
183include/xalanc/XSLT/ElemAttributeSet.hpp 210include/xalanc/XSLT/ElemAttributeSet.hpp
184include/xalanc/XSLT/ElemCallTemplate.hpp 211include/xalanc/XSLT/ElemCallTemplate.hpp
185include/xalanc/XSLT/ElemChoose.hpp 212include/xalanc/XSLT/ElemChoose.hpp
186include/xalanc/XSLT/ElemComment.hpp 213include/xalanc/XSLT/ElemComment.hpp
187include/xalanc/XSLT/ElemCopy.hpp 214include/xalanc/XSLT/ElemCopy.hpp
188include/xalanc/XSLT/ElemCopyOf.hpp 215include/xalanc/XSLT/ElemCopyOf.hpp
189include/xalanc/XSLT/ElemDecimalFormat.hpp 216include/xalanc/XSLT/ElemDecimalFormat.hpp
190include/xalanc/XSLT/ElemElement.hpp 217include/xalanc/XSLT/ElemElement.hpp
191include/xalanc/XSLT/ElemEmpty.hpp 218include/xalanc/XSLT/ElemEmpty.hpp
192include/xalanc/XSLT/ElemExtensionCall.hpp 219include/xalanc/XSLT/ElemExtensionCall.hpp
193include/xalanc/XSLT/ElemFallback.hpp 220include/xalanc/XSLT/ElemFallback.hpp
194include/xalanc/XSLT/ElemForEach.hpp 221include/xalanc/XSLT/ElemForEach.hpp
 222include/xalanc/XSLT/ElemForwardCompatible.hpp
195include/xalanc/XSLT/ElemIf.hpp 223include/xalanc/XSLT/ElemIf.hpp
196include/xalanc/XSLT/ElemLiteralResult.hpp 224include/xalanc/XSLT/ElemLiteralResult.hpp
197include/xalanc/XSLT/ElemMessage.hpp 225include/xalanc/XSLT/ElemMessage.hpp
198include/xalanc/XSLT/ElemNumber.hpp 226include/xalanc/XSLT/ElemNumber.hpp
199include/xalanc/XSLT/ElemOtherwise.hpp 227include/xalanc/XSLT/ElemOtherwise.hpp
200include/xalanc/XSLT/ElemPI.hpp 228include/xalanc/XSLT/ElemPI.hpp
201include/xalanc/XSLT/ElemParam.hpp 229include/xalanc/XSLT/ElemParam.hpp
202include/xalanc/XSLT/ElemSort.hpp 230include/xalanc/XSLT/ElemSort.hpp
203include/xalanc/XSLT/ElemTemplate.hpp 231include/xalanc/XSLT/ElemTemplate.hpp
204include/xalanc/XSLT/ElemTemplateElement.hpp 232include/xalanc/XSLT/ElemTemplateElement.hpp
205include/xalanc/XSLT/ElemText.hpp 233include/xalanc/XSLT/ElemText.hpp
206include/xalanc/XSLT/ElemTextLiteral.hpp 234include/xalanc/XSLT/ElemTextLiteral.hpp
207include/xalanc/XSLT/ElemUse.hpp 235include/xalanc/XSLT/ElemUse.hpp
@@ -220,29 +248,26 @@ include/xalanc/XSLT/FunctionGenerateID.h @@ -220,29 +248,26 @@ include/xalanc/XSLT/FunctionGenerateID.h
220include/xalanc/XSLT/FunctionKey.hpp 248include/xalanc/XSLT/FunctionKey.hpp
221include/xalanc/XSLT/FunctionSystemProperty.hpp 249include/xalanc/XSLT/FunctionSystemProperty.hpp
222include/xalanc/XSLT/FunctionUnparsedEntityURI.hpp 250include/xalanc/XSLT/FunctionUnparsedEntityURI.hpp
223include/xalanc/XSLT/GenerateEvent.hpp 251include/xalanc/XSLT/GenerateEvent.hpp
224include/xalanc/XSLT/KeyDeclaration.hpp 252include/xalanc/XSLT/KeyDeclaration.hpp
225include/xalanc/XSLT/KeyTable.hpp 253include/xalanc/XSLT/KeyTable.hpp
226include/xalanc/XSLT/NamespacesHandler.hpp 254include/xalanc/XSLT/NamespacesHandler.hpp
227include/xalanc/XSLT/NodeSortKey.hpp 255include/xalanc/XSLT/NodeSortKey.hpp
228include/xalanc/XSLT/NodeSorter.hpp 256include/xalanc/XSLT/NodeSorter.hpp
229include/xalanc/XSLT/OutputContextStack.hpp 257include/xalanc/XSLT/OutputContextStack.hpp
230include/xalanc/XSLT/ProblemListener.hpp 258include/xalanc/XSLT/ProblemListener.hpp
231include/xalanc/XSLT/ProblemListenerDefault.hpp 259include/xalanc/XSLT/ProblemListenerDefault.hpp
232include/xalanc/XSLT/ResultNamespacesStack.hpp 260include/xalanc/XSLT/ResultNamespacesStack.hpp
233include/xalanc/XSLT/ResultTreeFrag.hpp 
234include/xalanc/XSLT/ResultTreeFragAllocator.hpp 
235include/xalanc/XSLT/ResultTreeFragBaseNodeRefListBaseProxy.hpp 
236include/xalanc/XSLT/SelectionEvent.hpp 261include/xalanc/XSLT/SelectionEvent.hpp
237include/xalanc/XSLT/Stylesheet.hpp 262include/xalanc/XSLT/Stylesheet.hpp
238include/xalanc/XSLT/StylesheetConstructionContext.hpp 263include/xalanc/XSLT/StylesheetConstructionContext.hpp
239include/xalanc/XSLT/StylesheetConstructionContextDefault.hpp 264include/xalanc/XSLT/StylesheetConstructionContextDefault.hpp
240include/xalanc/XSLT/StylesheetExecutionContext.hpp 265include/xalanc/XSLT/StylesheetExecutionContext.hpp
241include/xalanc/XSLT/StylesheetExecutionContextDefault.hpp 266include/xalanc/XSLT/StylesheetExecutionContextDefault.hpp
242include/xalanc/XSLT/StylesheetHandler.hpp 267include/xalanc/XSLT/StylesheetHandler.hpp
243include/xalanc/XSLT/StylesheetRoot.hpp 268include/xalanc/XSLT/StylesheetRoot.hpp
244include/xalanc/XSLT/TopLevelArg.hpp 269include/xalanc/XSLT/TopLevelArg.hpp
245include/xalanc/XSLT/TraceListener.hpp 270include/xalanc/XSLT/TraceListener.hpp
246include/xalanc/XSLT/TraceListenerDefault.hpp 271include/xalanc/XSLT/TraceListenerDefault.hpp
247include/xalanc/XSLT/TracerEvent.hpp 272include/xalanc/XSLT/TracerEvent.hpp
248include/xalanc/XSLT/VariablesStack.hpp 273include/xalanc/XSLT/VariablesStack.hpp
@@ -262,56 +287,63 @@ include/xalanc/XSLT/XalanAVTPartSimpleAl @@ -262,56 +287,63 @@ include/xalanc/XSLT/XalanAVTPartSimpleAl
262include/xalanc/XSLT/XalanAVTPartXPathAllocator.hpp 287include/xalanc/XSLT/XalanAVTPartXPathAllocator.hpp
263include/xalanc/XSLT/XalanElemApplyTemplatesAllocator.hpp 288include/xalanc/XSLT/XalanElemApplyTemplatesAllocator.hpp
264include/xalanc/XSLT/XalanElemAttributeAllocator.hpp 289include/xalanc/XSLT/XalanElemAttributeAllocator.hpp
265include/xalanc/XSLT/XalanElemAttributeSetAllocator.hpp 290include/xalanc/XSLT/XalanElemAttributeSetAllocator.hpp
266include/xalanc/XSLT/XalanElemCallTemplateAllocator.hpp 291include/xalanc/XSLT/XalanElemCallTemplateAllocator.hpp
267include/xalanc/XSLT/XalanElemElementAllocator.hpp 292include/xalanc/XSLT/XalanElemElementAllocator.hpp
268include/xalanc/XSLT/XalanElemEmptyAllocator.hpp 293include/xalanc/XSLT/XalanElemEmptyAllocator.hpp
269include/xalanc/XSLT/XalanElemLiteralResultAllocator.hpp 294include/xalanc/XSLT/XalanElemLiteralResultAllocator.hpp
270include/xalanc/XSLT/XalanElemTemplateAllocator.hpp 295include/xalanc/XSLT/XalanElemTemplateAllocator.hpp
271include/xalanc/XSLT/XalanElemTextAllocator.hpp 296include/xalanc/XSLT/XalanElemTextAllocator.hpp
272include/xalanc/XSLT/XalanElemTextLiteralAllocator.hpp 297include/xalanc/XSLT/XalanElemTextLiteralAllocator.hpp
273include/xalanc/XSLT/XalanElemValueOfAllocator.hpp 298include/xalanc/XSLT/XalanElemValueOfAllocator.hpp
274include/xalanc/XSLT/XalanElemVariableAllocator.hpp 299include/xalanc/XSLT/XalanElemVariableAllocator.hpp
 300include/xalanc/XSLT/XalanMatchPatternData.hpp
 301include/xalanc/XSLT/XalanMatchPatternDataAllocator.hpp
275include/xalanc/XSLT/XalanNumberingResourceBundle.hpp 302include/xalanc/XSLT/XalanNumberingResourceBundle.hpp
276include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp 303include/xalanc/XSLT/XalanSourceTreeDocumentAllocator.hpp
277include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp 304include/xalanc/XSLT/XalanSourceTreeDocumentFragmentAllocator.hpp
 305include/xalanc/XSLT/XalanSpaceNodeTester.hpp
278include/xalanc/XalanDOM/XalanAttr.hpp 306include/xalanc/XalanDOM/XalanAttr.hpp
279include/xalanc/XalanDOM/XalanCDATASection.hpp 307include/xalanc/XalanDOM/XalanCDATASection.hpp
280include/xalanc/XalanDOM/XalanCharacterData.hpp 308include/xalanc/XalanDOM/XalanCharacterData.hpp
281include/xalanc/XalanDOM/XalanComment.hpp 309include/xalanc/XalanDOM/XalanComment.hpp
282include/xalanc/XalanDOM/XalanDOMDefinitions.hpp 310include/xalanc/XalanDOM/XalanDOMDefinitions.hpp
283include/xalanc/XalanDOM/XalanDOMException.hpp 311include/xalanc/XalanDOM/XalanDOMException.hpp
284include/xalanc/XalanDOM/XalanDOMImplementation.hpp 312include/xalanc/XalanDOM/XalanDOMImplementation.hpp
285include/xalanc/XalanDOM/XalanDOMInit.hpp 313include/xalanc/XalanDOM/XalanDOMInit.hpp
286include/xalanc/XalanDOM/XalanDOMString.hpp 314include/xalanc/XalanDOM/XalanDOMString.hpp
287include/xalanc/XalanDOM/XalanDocument.hpp 315include/xalanc/XalanDOM/XalanDocument.hpp
288include/xalanc/XalanDOM/XalanDocumentFragment.hpp 316include/xalanc/XalanDOM/XalanDocumentFragment.hpp
289include/xalanc/XalanDOM/XalanDocumentType.hpp 317include/xalanc/XalanDOM/XalanDocumentType.hpp
290include/xalanc/XalanDOM/XalanElement.hpp 318include/xalanc/XalanDOM/XalanElement.hpp
291include/xalanc/XalanDOM/XalanEmptyNamedNodeMap.hpp 319include/xalanc/XalanDOM/XalanEmptyNamedNodeMap.hpp
292include/xalanc/XalanDOM/XalanEntity.hpp 320include/xalanc/XalanDOM/XalanEntity.hpp
293include/xalanc/XalanDOM/XalanEntityReference.hpp 321include/xalanc/XalanDOM/XalanEntityReference.hpp
294include/xalanc/XalanDOM/XalanNamedNodeMap.hpp 322include/xalanc/XalanDOM/XalanNamedNodeMap.hpp
295include/xalanc/XalanDOM/XalanNode.hpp 323include/xalanc/XalanDOM/XalanNode.hpp
296include/xalanc/XalanDOM/XalanNodeList.hpp 324include/xalanc/XalanDOM/XalanNodeList.hpp
297include/xalanc/XalanDOM/XalanNodeListDummy.hpp 325include/xalanc/XalanDOM/XalanNodeListDummy.hpp
298include/xalanc/XalanDOM/XalanNodeListSurrogate.hpp 326include/xalanc/XalanDOM/XalanNodeListSurrogate.hpp
299include/xalanc/XalanDOM/XalanNotation.hpp 327include/xalanc/XalanDOM/XalanNotation.hpp
300include/xalanc/XalanDOM/XalanProcessingInstruction.hpp 328include/xalanc/XalanDOM/XalanProcessingInstruction.hpp
301include/xalanc/XalanDOM/XalanText.hpp 329include/xalanc/XalanDOM/XalanText.hpp
302include/xalanc/XalanEXSLT/XalanEXSLTCommon.hpp 330include/xalanc/XalanEXSLT/XalanEXSLTCommon.hpp
303include/xalanc/XalanEXSLT/XalanEXSLTCommonImpl.hpp 331include/xalanc/XalanEXSLT/XalanEXSLTCommonImpl.hpp
 332include/xalanc/XalanEXSLT/XalanEXSLTDateTime.hpp
 333include/xalanc/XalanEXSLT/XalanEXSLTDateTimeImpl.hpp
304include/xalanc/XalanEXSLT/XalanEXSLTDefinitions.hpp 334include/xalanc/XalanEXSLT/XalanEXSLTDefinitions.hpp
 335include/xalanc/XalanEXSLT/XalanEXSLTDynamic.hpp
 336include/xalanc/XalanEXSLT/XalanEXSLTDynamicImpl.hpp
305include/xalanc/XalanEXSLT/XalanEXSLTMath.hpp 337include/xalanc/XalanEXSLT/XalanEXSLTMath.hpp
306include/xalanc/XalanEXSLT/XalanEXSLTMathImpl.hpp 338include/xalanc/XalanEXSLT/XalanEXSLTMathImpl.hpp
307include/xalanc/XalanEXSLT/XalanEXSLTSet.hpp 339include/xalanc/XalanEXSLT/XalanEXSLTSet.hpp
308include/xalanc/XalanEXSLT/XalanEXSLTSetImpl.hpp 340include/xalanc/XalanEXSLT/XalanEXSLTSetImpl.hpp
309include/xalanc/XalanEXSLT/XalanEXSLTString.hpp 341include/xalanc/XalanEXSLT/XalanEXSLTString.hpp
310include/xalanc/XalanEXSLT/XalanEXSLTStringImpl.hpp 342include/xalanc/XalanEXSLT/XalanEXSLTStringImpl.hpp
311include/xalanc/XalanExtensions/FunctionDifference.hpp 343include/xalanc/XalanExtensions/FunctionDifference.hpp
312include/xalanc/XalanExtensions/FunctionDistinct.hpp 344include/xalanc/XalanExtensions/FunctionDistinct.hpp
313include/xalanc/XalanExtensions/FunctionEvaluate.hpp 345include/xalanc/XalanExtensions/FunctionEvaluate.hpp
314include/xalanc/XalanExtensions/FunctionHasSameNodes.hpp 346include/xalanc/XalanExtensions/FunctionHasSameNodes.hpp
315include/xalanc/XalanExtensions/FunctionIntersection.hpp 347include/xalanc/XalanExtensions/FunctionIntersection.hpp
316include/xalanc/XalanExtensions/FunctionNodeSet.hpp 348include/xalanc/XalanExtensions/FunctionNodeSet.hpp
317include/xalanc/XalanExtensions/XalanExtensions.hpp 349include/xalanc/XalanExtensions/XalanExtensions.hpp
@@ -350,89 +382,92 @@ include/xalanc/XalanTransformer/XalanCAP @@ -350,89 +382,92 @@ include/xalanc/XalanTransformer/XalanCAP
350include/xalanc/XalanTransformer/XalanCompiledStylesheet.hpp 382include/xalanc/XalanTransformer/XalanCompiledStylesheet.hpp
351include/xalanc/XalanTransformer/XalanCompiledStylesheetDefault.hpp 383include/xalanc/XalanTransformer/XalanCompiledStylesheetDefault.hpp
352include/xalanc/XalanTransformer/XalanDefaultDocumentBuilder.hpp 384include/xalanc/XalanTransformer/XalanDefaultDocumentBuilder.hpp
353include/xalanc/XalanTransformer/XalanDefaultParsedSource.hpp 385include/xalanc/XalanTransformer/XalanDefaultParsedSource.hpp
354include/xalanc/XalanTransformer/XalanDocumentBuilder.hpp 386include/xalanc/XalanTransformer/XalanDocumentBuilder.hpp
355include/xalanc/XalanTransformer/XalanParsedSource.hpp 387include/xalanc/XalanTransformer/XalanParsedSource.hpp
356include/xalanc/XalanTransformer/XalanSourceTreeWrapperParsedSource.hpp 388include/xalanc/XalanTransformer/XalanSourceTreeWrapperParsedSource.hpp
357include/xalanc/XalanTransformer/XalanTransformer.hpp 389include/xalanc/XalanTransformer/XalanTransformer.hpp
358include/xalanc/XalanTransformer/XalanTransformerDefinitions.hpp 390include/xalanc/XalanTransformer/XalanTransformerDefinitions.hpp
359include/xalanc/XalanTransformer/XalanTransformerOutputStream.hpp 391include/xalanc/XalanTransformer/XalanTransformerOutputStream.hpp
360include/xalanc/XalanTransformer/XalanTransformerProblemListener.hpp 392include/xalanc/XalanTransformer/XalanTransformerProblemListener.hpp
361include/xalanc/XalanTransformer/XercesDOMParsedSource.hpp 393include/xalanc/XalanTransformer/XercesDOMParsedSource.hpp
362include/xalanc/XalanTransformer/XercesDOMWrapperParsedSource.hpp 394include/xalanc/XalanTransformer/XercesDOMWrapperParsedSource.hpp
363include/xalanc/XercesParserLiaison/FormatterToDeprecatedXercesDOM.hpp 395include/xalanc/XercesParserLiaison/Deprecated/FormatterToDeprecatedXercesDOM.hpp
 396include/xalanc/XercesParserLiaison/Deprecated/XercesAttrBridge.hpp
 397include/xalanc/XercesParserLiaison/Deprecated/XercesAttributeBridgeAllocator.hpp
 398include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeHelper.hpp
 399include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeNavigator.hpp
 400include/xalanc/XercesParserLiaison/Deprecated/XercesBridgeTypes.hpp
 401include/xalanc/XercesParserLiaison/Deprecated/XercesCDATASectionBridge.hpp
 402include/xalanc/XercesParserLiaison/Deprecated/XercesCommentBridge.hpp
 403include/xalanc/XercesParserLiaison/Deprecated/XercesDOMImplementationBridge.hpp
 404include/xalanc/XercesParserLiaison/Deprecated/XercesDOM_NodeHack.hpp
 405include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentBridge.hpp
 406include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentFragmentBridge.hpp
 407include/xalanc/XercesParserLiaison/Deprecated/XercesDocumentTypeBridge.hpp
 408include/xalanc/XercesParserLiaison/Deprecated/XercesElementBridge.hpp
 409include/xalanc/XercesParserLiaison/Deprecated/XercesElementBridgeAllocator.hpp
 410include/xalanc/XercesParserLiaison/Deprecated/XercesEntityBridge.hpp
 411include/xalanc/XercesParserLiaison/Deprecated/XercesEntityReferenceBridge.hpp
 412include/xalanc/XercesParserLiaison/Deprecated/XercesNamedNodeMapBridge.hpp
 413include/xalanc/XercesParserLiaison/Deprecated/XercesNodeListBridge.hpp
 414include/xalanc/XercesParserLiaison/Deprecated/XercesNotationBridge.hpp
 415include/xalanc/XercesParserLiaison/Deprecated/XercesProcessingInstructionBridge.hpp
 416include/xalanc/XercesParserLiaison/Deprecated/XercesTextBridge.hpp
 417include/xalanc/XercesParserLiaison/Deprecated/XercesTextBridgeAllocator.hpp
 418include/xalanc/XercesParserLiaison/Deprecated/XercesToXalanNodeMap.hpp
 419include/xalanc/XercesParserLiaison/Deprecated/XercesTreeWalker.hpp
364include/xalanc/XercesParserLiaison/FormatterToXercesDOM.hpp 420include/xalanc/XercesParserLiaison/FormatterToXercesDOM.hpp
365include/xalanc/XercesParserLiaison/XercesAttrBridge.hpp 
366include/xalanc/XercesParserLiaison/XercesAttrWrapper.hpp 421include/xalanc/XercesParserLiaison/XercesAttrWrapper.hpp
367include/xalanc/XercesParserLiaison/XercesAttrWrapperAllocator.hpp 422include/xalanc/XercesParserLiaison/XercesAttrWrapperAllocator.hpp
368include/xalanc/XercesParserLiaison/XercesAttributeBridgeAllocator.hpp 
369include/xalanc/XercesParserLiaison/XercesBridgeHelper.hpp 
370include/xalanc/XercesParserLiaison/XercesBridgeNavigator.hpp 
371include/xalanc/XercesParserLiaison/XercesBridgeTypes.hpp 
372include/xalanc/XercesParserLiaison/XercesCDATASectionBridge.hpp 
373include/xalanc/XercesParserLiaison/XercesCDATASectionWrapper.hpp 423include/xalanc/XercesParserLiaison/XercesCDATASectionWrapper.hpp
374include/xalanc/XercesParserLiaison/XercesCommentBridge.hpp 
375include/xalanc/XercesParserLiaison/XercesCommentWrapper.hpp 424include/xalanc/XercesParserLiaison/XercesCommentWrapper.hpp
376include/xalanc/XercesParserLiaison/XercesDOMException.hpp 425include/xalanc/XercesParserLiaison/XercesDOMException.hpp
377include/xalanc/XercesParserLiaison/XercesDOMFormatterWalker.hpp 426include/xalanc/XercesParserLiaison/XercesDOMFormatterWalker.hpp
378include/xalanc/XercesParserLiaison/XercesDOMImplementationBridge.hpp 
379include/xalanc/XercesParserLiaison/XercesDOMImplementationWrapper.hpp 427include/xalanc/XercesParserLiaison/XercesDOMImplementationWrapper.hpp
380include/xalanc/XercesParserLiaison/XercesDOMSupport.hpp 428include/xalanc/XercesParserLiaison/XercesDOMSupport.hpp
381include/xalanc/XercesParserLiaison/XercesDOMWalker.hpp 429include/xalanc/XercesParserLiaison/XercesDOMWalker.hpp
382include/xalanc/XercesParserLiaison/XercesDOMWrapperException.hpp 430include/xalanc/XercesParserLiaison/XercesDOMWrapperException.hpp
383include/xalanc/XercesParserLiaison/XercesDOM_NodeHack.hpp 
384include/xalanc/XercesParserLiaison/XercesDocumentBridge.hpp 
385include/xalanc/XercesParserLiaison/XercesDocumentFragmentBridge.hpp 
386include/xalanc/XercesParserLiaison/XercesDocumentNamedNodeListCache.hpp 
387include/xalanc/XercesParserLiaison/XercesDocumentTypeBridge.hpp 
388include/xalanc/XercesParserLiaison/XercesDocumentTypeWrapper.hpp 431include/xalanc/XercesParserLiaison/XercesDocumentTypeWrapper.hpp
389include/xalanc/XercesParserLiaison/XercesDocumentWrapper.hpp 432include/xalanc/XercesParserLiaison/XercesDocumentWrapper.hpp
390include/xalanc/XercesParserLiaison/XercesElementBridge.hpp 
391include/xalanc/XercesParserLiaison/XercesElementBridgeAllocator.hpp 
392include/xalanc/XercesParserLiaison/XercesElementNamedNodeListCache.hpp 
393include/xalanc/XercesParserLiaison/XercesElementWrapper.hpp 433include/xalanc/XercesParserLiaison/XercesElementWrapper.hpp
394include/xalanc/XercesParserLiaison/XercesElementWrapperAllocator.hpp 434include/xalanc/XercesParserLiaison/XercesElementWrapperAllocator.hpp
395include/xalanc/XercesParserLiaison/XercesEntityBridge.hpp 
396include/xalanc/XercesParserLiaison/XercesEntityReferenceBridge.hpp 
397include/xalanc/XercesParserLiaison/XercesEntityReferenceWrapper.hpp 435include/xalanc/XercesParserLiaison/XercesEntityReferenceWrapper.hpp
398include/xalanc/XercesParserLiaison/XercesEntityWrapper.hpp 436include/xalanc/XercesParserLiaison/XercesEntityWrapper.hpp
399include/xalanc/XercesParserLiaison/XercesLiaisonXalanDOMStringPool.hpp 437include/xalanc/XercesParserLiaison/XercesLiaisonXalanDOMStringPool.hpp
400include/xalanc/XercesParserLiaison/XercesNamedNodeListCache.hpp 
401include/xalanc/XercesParserLiaison/XercesNamedNodeMapAttributeList.hpp 438include/xalanc/XercesParserLiaison/XercesNamedNodeMapAttributeList.hpp
402include/xalanc/XercesParserLiaison/XercesNamedNodeMapBridge.hpp 
403include/xalanc/XercesParserLiaison/XercesNamedNodeMapWrapper.hpp 439include/xalanc/XercesParserLiaison/XercesNamedNodeMapWrapper.hpp
404include/xalanc/XercesParserLiaison/XercesNodeListBridge.hpp 
405include/xalanc/XercesParserLiaison/XercesNodeListWrapper.hpp 440include/xalanc/XercesParserLiaison/XercesNodeListWrapper.hpp
406include/xalanc/XercesParserLiaison/XercesNotationBridge.hpp 
407include/xalanc/XercesParserLiaison/XercesNotationWrapper.hpp 441include/xalanc/XercesParserLiaison/XercesNotationWrapper.hpp
408include/xalanc/XercesParserLiaison/XercesParserLiaison.hpp 442include/xalanc/XercesParserLiaison/XercesParserLiaison.hpp
409include/xalanc/XercesParserLiaison/XercesParserLiaisonDefinitions.hpp 443include/xalanc/XercesParserLiaison/XercesParserLiaisonDefinitions.hpp
410include/xalanc/XercesParserLiaison/XercesProcessingInstructionBridge.hpp 
411include/xalanc/XercesParserLiaison/XercesProcessingInstructionWrapper.hpp 444include/xalanc/XercesParserLiaison/XercesProcessingInstructionWrapper.hpp
412include/xalanc/XercesParserLiaison/XercesTextBridge.hpp 
413include/xalanc/XercesParserLiaison/XercesTextBridgeAllocator.hpp 
414include/xalanc/XercesParserLiaison/XercesTextWrapper.hpp 445include/xalanc/XercesParserLiaison/XercesTextWrapper.hpp
415include/xalanc/XercesParserLiaison/XercesTextWrapperAllocator.hpp 446include/xalanc/XercesParserLiaison/XercesTextWrapperAllocator.hpp
416include/xalanc/XercesParserLiaison/XercesToXalanNodeMap.hpp 
417include/xalanc/XercesParserLiaison/XercesTreeWalker.hpp 
418include/xalanc/XercesParserLiaison/XercesWrapperHelper.hpp 447include/xalanc/XercesParserLiaison/XercesWrapperHelper.hpp
419include/xalanc/XercesParserLiaison/XercesWrapperNavigator.hpp 448include/xalanc/XercesParserLiaison/XercesWrapperNavigator.hpp
 449include/xalanc/XercesParserLiaison/XercesWrapperNavigatorAllocator.hpp
420include/xalanc/XercesParserLiaison/XercesWrapperToXalanNodeMap.hpp 450include/xalanc/XercesParserLiaison/XercesWrapperToXalanNodeMap.hpp
421include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp 451include/xalanc/XercesParserLiaison/XercesWrapperTypes.hpp
422lib/libxalan-c.so 452lib/libxalan-c.so
423lib/libxalan-c.so.16 453lib/libxalan-c.so.110
424lib/libxalan-c.so.16.0 454lib/libxalan-c.so.110.0
 455lib/libxalanMsg.so
 456lib/libxalanMsg.so.110
 457lib/libxalanMsg.so.110.0
 458@dirrm include/xalanc/XercesParserLiaison/Deprecated
425@dirrm include/xalanc/XercesParserLiaison 459@dirrm include/xalanc/XercesParserLiaison
426@dirrm include/xalanc/XalanTransformer 460@dirrm include/xalanc/XalanTransformer
427@dirrm include/xalanc/XalanSourceTree 461@dirrm include/xalanc/XalanSourceTree
428@dirrm include/xalanc/XalanExtensions 462@dirrm include/xalanc/XalanExtensions
429@dirrm include/xalanc/XalanEXSLT 463@dirrm include/xalanc/XalanEXSLT
430@dirrm include/xalanc/XalanDOM 464@dirrm include/xalanc/XalanDOM
431@dirrm include/xalanc/XSLT 465@dirrm include/xalanc/XSLT
432@dirrm include/xalanc/XPathCAPI 466@dirrm include/xalanc/XPathCAPI
433@dirrm include/xalanc/XPath 467@dirrm include/xalanc/XPath
434@dirrm include/xalanc/XMLSupport 468@dirrm include/xalanc/XMLSupport
435@dirrm include/xalanc/PlatformSupport 469@dirrm include/xalanc/PlatformSupport
436@dirrm include/xalanc/Include 470@dirrm include/xalanc/Include
 471@dirrm include/xalanc/Harness
437@dirrm include/xalanc/DOMSupport 472@dirrm include/xalanc/DOMSupport
438@dirrm include/xalanc 473@dirrm include/xalanc

cvs diff -r1.6 -r1.7 pkgsrc/textproc/xalan-c/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/xalan-c/Attic/distinfo 2006/01/05 20:43:20 1.6
+++ pkgsrc/textproc/xalan-c/Attic/distinfo 2008/01/24 07:17:33 1.7
@@ -1,9 +1,6 @@ @@ -1,9 +1,6 @@
1$NetBSD: distinfo,v 1.6 2006/01/05 20:43:20 joerg Exp $ 1$NetBSD: distinfo,v 1.7 2008/01/24 07:17:33 xtraeme Exp $
2 2
3SHA1 (Xalan-C_1_6-src.tar.gz) = a683c328dd266180bff2a182183be29a4596a662 3SHA1 (Xalan-C_1_10_0-src.tar.gz) = 3fc63045048176e0ab00ce8aa0d15b2c1e5d646b
4RMD160 (Xalan-C_1_6-src.tar.gz) = 9d8d5c85b4cf395d710ce7e3638665cbf17804d5 4RMD160 (Xalan-C_1_10_0-src.tar.gz) = 537ba0be6a14e47eb4453c2d813b31ec416835ab
5Size (Xalan-C_1_6-src.tar.gz) = 1274432 bytes 5Size (Xalan-C_1_10_0-src.tar.gz) = 1554940 bytes
6SHA1 (patch-aa) = 595c294aa1857b817c6a931e6ba16f4adb0040d8 
7SHA1 (patch-ab) = e67667ba44e8f5cc9beb45a459f52ae1f3a5be59 6SHA1 (patch-ab) = e67667ba44e8f5cc9beb45a459f52ae1f3a5be59
8SHA1 (patch-ac) = 56e8697c21d9902b5bb9ed35fb63a756a0765e6a 
9SHA1 (patch-ad) = d480090164623222f5f8891423af74c251d12a28 

File Deleted: pkgsrc/textproc/xalan-c/patches/Attic/patch-aa

File Deleted: pkgsrc/textproc/xalan-c/patches/Attic/patch-ac

File Deleted: pkgsrc/textproc/xalan-c/patches/Attic/patch-ad