# HG changeset patch # User diego # Date 1277296720 0 # Node ID 7c10f547ce96d353a8d3245312fba1068ca25420 # Parent e1b87583edefcc929f6d61909f3ec13ff278f7b0 Drop support for the Saxon XSLT processor. The XSLT processor detection needs to be overhauled and simplified. Since nobody appears to be using Saxon it is just a burden that hinders the simplification. It can be added back cleanly if there is popular request. diff -r e1b87583edef -r 7c10f547ce96 DOCS/xml/README --- a/DOCS/xml/README Wed Jun 23 12:24:48 2010 +0000 +++ b/DOCS/xml/README Wed Jun 23 12:38:40 2010 +0000 @@ -13,12 +13,6 @@ * xsltproc (part of libxslt1) is used for transforming XML files into HTML files. Version 1.0.18 or later is recommended. -It's also possible to use the Saxon XSLT Processor. The Russian translator -used it (version 6.4.4) for a while. If you have a suitable JavaVM and a -saxon.jar installed somewhere, configure will try to detect them. If -autodetection fails, try to tweak DOCS/xml/configure to get it working and -send us a patch :) - On Red Hat systems you need the following packages: libxml2, libxslt, docbook-dtds, docbook-style-xsl diff -r e1b87583edef -r 7c10f547ce96 DOCS/xml/configure --- a/DOCS/xml/configure Wed Jun 23 12:24:48 2010 +0000 +++ b/DOCS/xml/configure Wed Jun 23 12:38:40 2010 +0000 @@ -176,8 +176,6 @@ done echo "Looking for a valid XSLT processor..." -# Checks for xsltproc, then checks for the Saxon processor (it needs Java). - if xsltproc --version > /dev/null 2>&1 then if test -z "$_fake_chunk_xsl" @@ -197,73 +195,6 @@ fi fi -# xsltproc not found. -# Now try to find a good Java virtual machine. -# FIXME: We need more checks for Java virtual machines. -if test -z "$_xsltcommand" -then - #FIXME: Add more suitable machines!!! - for _try_java in java gij-3.3 gij-3.2 gij-3.1 gij-3.0 gij - do - if $_try_java --version > /dev/null 2>&1 || $_try_java -version > /dev/null 2>&1 - then - _java=$_try_java - break - fi - done - if test -z "$_java" - then - echo "Java VM not found." - else - # Try to find the right jar files for classpath. - # This must not trigger on something like saxon-fop-6.4.4.jar. - for _try_saxon_jar in \ - /usr/share/java/saxon-[0-9]*.jar \ - /usr/local/share/java/saxon-[0-9]*.jar \ - /usr/share/java/saxon.jar \ - /usr/local/share/java/saxon.jar - do - if test -f "$_try_saxon_jar" - then - _saxon_jar=$_try_saxon_jar - #Don't break to find the _latest_ saxon.jar. - fi - done - if test -n "$_saxon_jar" - then - if test -z "$_fake_chunk_xsl" - then -# _xsltcommand="cd \$1 && if test \"\`dirname \$2 | head -c 1\`\" = \".\" ; then $_java -classpath $_saxon_jar com.icl.saxon.StyleSheet \$_IN_DIR/\$3 \$_IN_DIR/\$2 ; else $_java -classpath $_saxon_jar com.icl.saxon.StyleSheet \$_IN_DIR/\$3 \$2 ;fi" - _xsltcommand=" -if test \"\`dirname \$2 | head -c 1\`\" = \".\" -then - _STYLESHEET=\$_IN_DIR/\$2 -else - _STYLESHEET=\$2 -fi - -if test -d \$1 -then - _DIRNAME=\"\$1\" - _OUTPUT=\"\" -else - _DIRNAME=\"\`dirname \$1\`\" - _OUTPUT=\"-o \`basename \$1\`\" -fi - -cd \$_DIRNAME && - java -classpath /usr/share/java/saxon.jar com.icl.saxon.StyleSheet \$_OUTPUT \$_IN_DIR/\$3 \$_STYLESHEET - " - - echo "Found the Saxon XSLT Processor ($_saxon_jar), using Java VM '$_java'." - else - echo "Found the Saxon XSLT processor but no stylesheets on your system." - echo "Saxon is unusable without stylesheets." - fi - fi - fi -fi - cat > $_xsltwrapper << EOF @@ -273,7 +204,6 @@ # ************************************************** # This is a small wrapper script around many ways to call the XSLT processor. # It accepts 3 arguments:
-_IN_DIR=\`pwd\` $_sgmlcatalog $_xsltcommand