dnl YAZ Toolkit, Index Data 1994-2003
dnl See the file LICENSE for details.
-dnl $Id: configure.in,v 1.104 2003-02-14 18:49:22 adam Exp $
+dnl $Id: configure.in,v 1.105 2003-02-14 20:32:59 adam Exp $
AC_INIT(include/yaz/yaz-version.h)
AM_INIT_AUTOMAKE(yaz, 1.9.3)
dnl
AC_MSG_RESULT(Not found)
fi
])
+AC_SUBST(XSL_DIR)
+AC_ARG_WITH(xsl,[ --with-xsl[=DIR] Use XSL in DIR/{htmlhelp,xhtml}],
+[
+ if test -f "$withval/htmlhelp/htmlhelp.xsl"; then
+ XSL_DIR=$withval
+ fi
+],[
+ AC_MSG_CHECKING(for htmlhelp.xsl)
+ for d in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh \
+ /usr/share/sgml/docbook/xsl-stylesheets-1.*
+ do
+ if test -f $d/htmlhelp/htmlhelp.xsl; then
+ AC_MSG_RESULT($d)
+ XSL_DIR=$d
+ break
+ fi
+ done
+ if test -z "$XSL_DIR"; then
+ AC_MSG_RESULT(Not found)
+ fi
+])
dnl
dnl ----- Sockets
checkBoth=0
doc/yazphp.dsl
doc/yazprint.dsl
doc/tkl.xsl
+doc/yazhtml.xsl
etc/Makefile
yaz-config
],[sed s%yaz_echo_source=yes%yaz_echo_source=no%g < yaz-config > lib/yaz-config && chmod +x yaz-config lib/yaz-config])
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
- <xsl:include href="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/xhtml/chunk.xsl"/>
+ <xsl:include href="@XSL_DIR@/xhtml/chunk.xsl"/>
<xsl:variable name="use.id.as.filename">1</xsl:variable>
<xsl:variable name="html.ext">.tkl</xsl:variable>
-<!-- $Id: tools.xml,v 1.19 2003-02-14 18:49:23 adam Exp $ -->
+<!-- $Id: tools.xml,v 1.20 2003-02-14 20:33:00 adam Exp $ -->
<chapter id="tools"><title>Supporting Tools</title>
<para>
This small file defines two index sets, three qualifiers and three
relations, a position pattern and a default structure.
</para>
- <programlisting>
+ <programlisting><![CDATA[
set.srw = http://www.loc.gov/zing/cql/srw-indexes/v1.0/
set.dc = http://www.loc.gov/zing/cql/dc-indexes/v1.0/
position.any = 3=3 6=1
structure.* = 4=1
+]]>
</programlisting>
<para>
With the mappings above, the CQL query
+++ /dev/null
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0">
-
-<xsl:import href="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/htmlhelp/htmlhelp.xsl"/>
-
-<xsl:param name="suppress.navigation" select="0"/>
-<xsl:param name="use.id.as.filename" select="1"/>
-
-
-</xsl:stylesheet>
-
-
--- /dev/null
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="1.0">
+
+<xsl:import href="@XSL_DIR@/htmlhelp/htmlhelp.xsl"/>
+
+<xsl:param name="suppress.navigation" select="0"/>
+<xsl:param name="use.id.as.filename" select="1"/>
+
+
+</xsl:stylesheet>
+
+