Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Jun 2004 17:13:37 +0200 (CEST)
From:      Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/68447: [PATCH] textproc/saxon: update to 6.5.3 and various enhancements
Message-ID:  <200406281513.i5SFDbqj098404@arabica.esil.univ-mrs.fr>
Resent-Message-ID: <200406281520.i5SFKLOi040657@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         68447
>Category:       ports
>Synopsis:       [PATCH] textproc/saxon: update to 6.5.3 and various enhancements
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 28 15:20:20 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Herve Quiroz
>Release:        FreeBSD 5.2.1-RELEASE-p5 i386
>Organization:
>Environment:
System: FreeBSD arabica.esil.univ-mrs.fr 5.2.1-RELEASE-p5 FreeBSD 5.2.1-RELEASE-p5 #3: Thu May  6 20:17:47 CEST
>Description:

- Update to 6.5.3
- Use MASTER_SITE_SOURCEFORGE_EXTENDED
- Now bsd.java.mk 2.0 compliant
- Reduced packing list by using PLIST_FILES and PORTDOCS
- Various cosmetic changes

NOTE1: The 'saxon-fop.jar' file is no longer part of the distribution and thus
not installed by the port. I don't know if it will have nasty compatibility
effects for some users. But be aware that it is not related to the FreeBSD port
but rather the Saxon distribution.

NOTE2: The empty directory 'samples/ot' gets removed by the port right after
extracting (we don't want to install empty directories, do we?).

NOTE3: The port portlints fine excepted the complaint regarding samples in
pkg-plist. I didn't find any workaround similar to PORTDOCS for examples and
IMHO using PLIST_FILES/DIRS would be too complex. Still pkg-plist size has been
greatly reduced (34K -> 4K).

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- saxon-6.5.3.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/textproc/saxon.original/Makefile /usr/ports/textproc/saxon/Makefile
--- /usr/ports/textproc/saxon.original/Makefile	Mon Jun 28 16:30:41 2004
+++ /usr/ports/textproc/saxon/Makefile	Mon Jun 28 17:01:08 2004
@@ -6,9 +6,9 @@
 #
 
 PORTNAME=	saxon
-PORTVERSION=	6.5.2
+PORTVERSION=	6.5.3
 CATEGORIES=	textproc java
-MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE_EXTENDED}
 MASTER_SITE_SUBDIR=	saxon
 DISTNAME=	${PORTNAME}${PORTVERSION:S/./_/g}
 
@@ -16,21 +16,42 @@
 COMMENT=	An XSLT processor for Java
 
 USE_ZIP=	yes
-USE_JAVA=	1.1+
+USE_JAVA=	yes
+JAVA_VERSION=	1.1+
 NO_WRKSUBDIR=	yes
 NO_BUILD=	yes
 
-NO_BUILD_DEPENDS_JAVA=	yes
+JARFILES=	saxon-jdom.jar saxon.jar
+PLIST_FILES+=	${JARFILES:S,^,${JAVAJARDIR:S,^${PREFIX}/,,}/,}
+.if !defined(NOPORTDOCS)
+PORTDOCS=	api api-guide.html changes.html changes5.html conditions.html conformance.html dtdgen.html expressions.html extensibility.html extensions.html history.html index.html instant.html patterns.html samples.html saxon-style.css using-xsl.html xsl-elements.html
+.endif
 
-do-install:
-	${INSTALL_DATA} ${WRKSRC}/*.jar ${JAVAJARDIR}
+post-extract:
+	@${RMDIR} ${WRKSRC}/samples/ot
 
-post-install:
-	${MKDIR} ${EXAMPLESDIR}
-	${CP} -R ${WRKSRC}/samples/* ${EXAMPLESDIR}
+do-install:
+	@${ECHO_MSG} -n ">> Installing JARs in ${JAVAJARDIR}..."
+	@${MKDIR} ${JAVAJARDIR}
+.for JARFILE in ${JARFILES}
+	@${ECHO_MSG} -n " ${JARFILE}"
+	@${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${JAVAJARDIR}/
+.endfor
+	@${ECHO_MSG} " [ DONE ]"
+	@${ECHO_MSG} -n ">> Installing samples in ${EXAMPLESDIR}..."
+	@${MKDIR} ${EXAMPLESDIR}
+	@${CP} -R ${WRKSRC}/samples/* ${EXAMPLESDIR}/
+	@${CHOWN} -h -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
+	@${ECHO_MSG} " [ DONE ]"
 .if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-	${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
+	@${ECHO_MSG} -n ">> Installing documentation..."
+	@${MKDIR} ${DOCSDIR}
+.for DOCFILE in ${PORTDOCS}
+	@${ECHO_MSG} -n " ${DOCFILE}"
+	@${CP} -R ${WRKSRC}/doc/${DOCFILE} ${DOCSDIR}/
+.endfor
+	@${CHOWN} -h -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
+	@${ECHO_MSG} " [ DONE ]"
 .endif
 
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/textproc/saxon.original/distinfo /usr/ports/textproc/saxon/distinfo
--- /usr/ports/textproc/saxon.original/distinfo	Mon Jun 28 16:30:42 2004
+++ /usr/ports/textproc/saxon/distinfo	Mon Jun 28 16:35:04 2004
@@ -1,2 +1,2 @@
-MD5 (saxon6_5_2.zip) = 6a822530943cc9ddff45ed4d77413d89
-SIZE (saxon6_5_2.zip) = 3088550
+MD5 (saxon6_5_3.zip) = 7b8c7c187473c04d2abdb40d8ddab5c6
+SIZE (saxon6_5_3.zip) = 3118491
diff -ruN --exclude=CVS /usr/ports/textproc/saxon.original/pkg-plist /usr/ports/textproc/saxon/pkg-plist
--- /usr/ports/textproc/saxon.original/pkg-plist	Mon Jun 28 16:30:42 2004
+++ /usr/ports/textproc/saxon/pkg-plist	Mon Jun 28 16:52:15 2004
@@ -1,6 +1,3 @@
-share/java/classes/saxon-fop.jar
-share/java/classes/saxon-jdom.jar
-share/java/classes/saxon.jar
 %%EXAMPLESDIR%%/applet/demo/README.html
 %%EXAMPLESDIR%%/applet/demo/client.html
 %%EXAMPLESDIR%%/applet/demo/foo-s1.xml
@@ -83,469 +80,3 @@
 @dirrm %%EXAMPLESDIR%%/applet/demo
 @dirrm %%EXAMPLESDIR%%/applet
 @dirrm %%EXAMPLESDIR%%
-%%PORTDOCS%%%%DOCSDIR%%/api-guide.html
-%%PORTDOCS%%%%DOCSDIR%%/api/allclasses-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Bindery.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Binding.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/ContentEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Context.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Controller.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/DOMDriver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/DecimalFormatManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/ExtendedInputSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/FeatureKeys.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Filter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/IDFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/IdentityTransformerHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/InternalSaxonError.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/KeyDefinition.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/KeyManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Loader.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Mode.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/NodeHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/PIGrabber.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/ParameterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/PreparedStyleSheet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/PreviewManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/RuleManager.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/StandardErrorListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/StandardURIResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/StyleSheet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/StylesheetStripper.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/TemplatesHandlerImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/TransformerFactoryImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/TransformerHandlerImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/TreeDriver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/Version.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/WinStyleSheet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/XSLTProcessorApplet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/DefaultHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/SAXDriver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/SAXParserFactoryImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/SAXParserImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/aelfred/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/ASCIICharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/CP1250CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/CP1251CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/CP852CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/CharacterSetFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/KOI8RCharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/Latin1CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/Latin2CharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/PluggableCharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/UnicodeCharacterSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/charcode/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/AttributeValueTemplate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/BooleanValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/ContextNodeExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/DifferenceEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/DistinctEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/EmptyNodeSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/ErrorExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/Expression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/ExpressionParser.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/FilterEnumerator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/FragmentValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/Function.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/FunctionProxy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/IntersectionEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/IsLastExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/LastPositionFinder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/LookaheadEnumerator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeListExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeSetComparison.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeSetExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeSetExtent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeSetIntent.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NodeSetValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/NumericValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/ObjectValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/ParentNodeExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/PathExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/RootExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/SingletonComparison.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/SingletonExpression.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/SingletonNodeSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/SortKeyEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/SortedSelection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/StandaloneContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/StaticContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/Step.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/StringValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/StyleSheetFunctionCall.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/TextFragmentValue.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/UnionEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/Value.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/VariableReference.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/XPathException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/expr/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/Common.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/Date.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/Math.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/Sets.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/exslt/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/BooleanFn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Ceiling.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Concat.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Contains.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Count.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Current.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Document.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/ElementAvailable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Extensions.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Floor.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/FormatNumber.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/FunctionAvailable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/GenerateId.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Id.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Key.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Lang.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Last.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/LocalName.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/NameFn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/NamespaceURI.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/NormalizeSpace.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Not.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/NumberFn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Position.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Round.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/StartsWith.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/StringFn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/StringLength.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Substring.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/SubstringAfter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/SubstringBefore.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Sum.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/SystemProperty.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/Translate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/UnparsedEntityURI.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/functions/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/handlers/ElementHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/handlers/ElementHandlerBase.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/handlers/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/handlers/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/handlers/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/jdom/DocumentWrapper.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/jdom/NodeWrapper.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/jdom/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/jdom/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/jdom/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/NumberFormatter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/Numberer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/Numberer_de.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/Numberer_en.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/number/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/AbstractNode.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Axis.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/AxisEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Builder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/DocumentBuilderFactoryImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/DocumentBuilderImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/DocumentInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/DocumentPool.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/EmptyEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Name.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/NamePool.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Namespace.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/NamespaceException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Navigator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/NodeEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/NodeInfo.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/ProcInstParser.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/SingletonEnumeration.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/Stripper.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/om/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/CDATAFilter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/ContentHandlerProxy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/DOMEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/DTDEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/DocumentHandlerProxy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/Emitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/ErrorEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/GeneralOutputter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/HTMLEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/HTMLIndenter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/MessageEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/NamespaceEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/Outputter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/ProxyEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/SaxonOutputKeys.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/StringOutputter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/TEXTEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/TextFragment.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/UncommittedEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/XHTMLEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/XMLEmitter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/XMLIndenter.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/output/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/AnyChildNodePattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/AnyNodeTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/IDPattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/KeyPattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/LocationPathPattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/NameTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/NamespaceTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/NoNodeTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/NodeTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/NodeTypeTest.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/Pattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/UnionPattern.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/pattern/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/BinaryTree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/Compare_en.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/Comparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/DescendingComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/DoubleComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/HashMap.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/LocalOrderComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/LowercaseFirstComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/NodeOrderComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/QuickSort.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/SortKeyDefinition.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/Sortable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/StringComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/TextComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/UppercaseFirstComparer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sort/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/SQLClose.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/SQLColumn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/SQLConnect.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/SQLElementFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/SQLInsert.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/sql/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/AbsentExtensionElement.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/ExpressionContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/ExtensionElementFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/GroupActivation.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/LiteralResultElement.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/Procedure.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONAssign.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONDoctype.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONEntityRef.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONFunction.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONGroup.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONItem.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONPreview.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONReturn.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/SAXONWhile.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/StandardNames.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/StyleElement.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/StyleException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/StyleNodeFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/TerminationException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLApplyImports.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLApplyTemplates.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLAttribute.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLAttributeSet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLCallTemplate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLChoose.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLComment.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLCopy.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLCopyOf.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLDecimalFormat.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLDocument.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLElement.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLFallback.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLForEach.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLGeneralIncorporate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLGeneralVariable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLIf.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLImport.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLInclude.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLKey.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLMessage.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLNamespaceAlias.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLNumber.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLOtherwise.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLOutput.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLParam.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLPreserveSpace.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLProcessingInstruction.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLScript.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLSort.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLStringConstructor.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLStyleSheet.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLTemplate.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLText.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLValueOf.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLVariable.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLWhen.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/XSLWithParam.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/style/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tinytree/TinyBuilder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tinytree/TinyDocumentImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tinytree/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tinytree/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tinytree/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/SaxonEventMulticaster.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/SimpleTraceListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/TraceListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/trace/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/AttributeCollection.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/DOMExceptionImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/DocumentImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/ElementImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/ElementWithAttributes.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/LineNumberMap.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/NodeFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/NodeImpl.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/SystemIdMap.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/TreeBuilder.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/com/icl/saxon/tree/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/deprecated-list.html
-%%PORTDOCS%%%%DOCSDIR%%/api/help-doc.html
-%%PORTDOCS%%%%DOCSDIR%%/api/index-all.html
-%%PORTDOCS%%%%DOCSDIR%%/api/index.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/ErrorListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/OutputKeys.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/Result.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/Source.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/SourceLocator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/Templates.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/Transformer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/TransformerConfigurationException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/TransformerException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/TransformerFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/TransformerFactoryConfigurationError.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/URIResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/ErrorListener.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/OutputKeys.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/Result.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/Source.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/SourceLocator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/Templates.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/Transformer.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/TransformerConfigurationException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/TransformerException.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/TransformerFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/TransformerFactoryConfigurationError.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/class-use/URIResolver.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/DOMLocator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/DOMResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/DOMSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/class-use/DOMLocator.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/class-use/DOMResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/class-use/DOMSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/dom/package-use.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/package-use.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/SAXResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/SAXSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/SAXTransformerFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/TemplatesHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/TransformerHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/class-use/SAXResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/class-use/SAXSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/class-use/SAXTransformerFactory.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/class-use/TemplatesHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/class-use/TransformerHandler.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/sax/package-use.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/StreamResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/StreamSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/class-use/StreamResult.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/class-use/StreamSource.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/javax/xml/transform/stream/package-use.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/w3c/xsl/XSLTContext.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/w3c/xsl/package-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/w3c/xsl/package-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/org/w3c/xsl/package-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/overview-frame.html
-%%PORTDOCS%%%%DOCSDIR%%/api/overview-summary.html
-%%PORTDOCS%%%%DOCSDIR%%/api/overview-tree.html
-%%PORTDOCS%%%%DOCSDIR%%/api/package-list
-%%PORTDOCS%%%%DOCSDIR%%/api/packages.html
-%%PORTDOCS%%%%DOCSDIR%%/api/serialized-form.html
-%%PORTDOCS%%%%DOCSDIR%%/api/stylesheet.css
-%%PORTDOCS%%%%DOCSDIR%%/changes.html
-%%PORTDOCS%%%%DOCSDIR%%/changes5.html
-%%PORTDOCS%%%%DOCSDIR%%/conditions.html
-%%PORTDOCS%%%%DOCSDIR%%/conformance.html
-%%PORTDOCS%%%%DOCSDIR%%/expressions.html
-%%PORTDOCS%%%%DOCSDIR%%/extensibility.html
-%%PORTDOCS%%%%DOCSDIR%%/extensions.html
-%%PORTDOCS%%%%DOCSDIR%%/history.html
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/instant.html
-%%PORTDOCS%%%%DOCSDIR%%/patterns.html
-%%PORTDOCS%%%%DOCSDIR%%/samples.html
-%%PORTDOCS%%%%DOCSDIR%%/using-xsl.html
-%%PORTDOCS%%%%DOCSDIR%%/xsl-elements.html
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/org/w3c/xsl
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/org/w3c
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/org
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/stream/class-use
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/stream
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/sax/class-use
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/sax
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/dom/class-use
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/dom
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform/class-use
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml/transform
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax/xml
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/javax
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/tree
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/trace
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/tinytree
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/style
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/sql
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/sort
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/pattern
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/output
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/om
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/number
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/jdom
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/handlers
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/functions
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/exslt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/expr
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/charcode
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon/aelfred
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl/saxon
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com/icl
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api/com
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
--- saxon-6.5.3.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200406281513.i5SFDbqj098404>