From: Norman Walsh Date: Thu, 20 Mar 2003 21:19:22 +0000 (+0000) Subject: Remove non-ascii character; use findresolver X-Git-Tag: release/1.79.1~6^2~4737 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca235da7b3bf2d6f70b7089398caac887d1866bd;p=docbook-dsssl Remove non-ascii character; use findresolver --- diff --git a/cvstools/saxon b/cvstools/saxon index 709dbfffb..f8dbdd4ac 100755 --- a/cvstools/saxon +++ b/cvstools/saxon @@ -170,7 +170,7 @@ fi ## From SAXON documentation: ## ## SAXON comes with a bundled XML parser, a modified copy of the -## Ælfred parser, adapted to notify comments to the application. SAXON +## AElred parser, adapted to notify comments to the application. SAXON ## has been tested successfully in the past with Xerces, Lark, SUN ## Project X, Crimson, Oracle XML, xerces, xml4j, and xp. Use of a ## SAX2-compliant parser is preferred, as SAX1 does not allow XML @@ -225,13 +225,7 @@ TRANSFACTORY=com.icl.saxon.TransformerFactoryImpl ## resolver classes ## FIXME: do we specifically *not* want to use the sun resolver? ## -for path in $RESOLVER \ - "/projects/apache/xml-commons/java/build/classes" ; do - if [ -f "$path" -o -d "$path" ]; then - RESOLVER="$path" - break - fi -done +RESOLVER=`findresolver` if [ -f "$RESOLVER" -o -d "$RESOLVER" ]; then # use the apache resolver XARG=${XARG:--x org.apache.xml.resolver.tools.ResolvingXMLReader}