[Refdb-devel] CVS: refdb/scripts refdbxml.in,1.8,1.9
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2003-12-21 22:58:26
|
Update of /cvsroot/refdb/refdb/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv31492/scripts Modified Files: refdbxml.in Log Message: added --xinclude switch to xsltproc calls Index: refdbxml.in =================================================================== RCS file: /cvsroot/refdb/refdb/scripts/refdbxml.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -U2 -r1.8 -r1.9 --- refdbxml.in 4 Nov 2003 23:25:07 -0000 1.8 +++ refdbxml.in 21 Dec 2003 22:58:22 -0000 1.9 @@ -37,5 +37,5 @@ xt ) java -cp "$classpath" com.jclark.xsl.sax.Driver $1 $jfosheet > $2;; saxon ) java -cp "$classpath" com.icl.saxon.StyleSheet -o $2 $1 $jfosheet;; - xsltproc ) xsltproc --catalogs $fosheet $1 > $2;; + xsltproc ) xsltproc --catalogs --xinclude $fosheet $1 > $2;; esac } @@ -47,5 +47,5 @@ xt ) java -cp "$classpath" com.jclark.xsl.sax.Driver $1 $jhtmlsheet > $2;; saxon ) java -cp "$classpath" com.icl.saxon.StyleSheet -o $2 $1 $jhtmlsheet;; - xsltproc ) xsltproc --catalogs $htmlsheet $1 > $2;; + xsltproc ) xsltproc --catalogs --xinclude $htmlsheet $1 > $2;; esac } @@ -57,5 +57,5 @@ xt ) java -cp "$classpath" com.jclark.xsl.sax.Driver $1 $jxhtmlsheet > $2;; saxon ) java -cp "$classpath" com.icl.saxon.StyleSheet -o $2 $1 $jxhtmlsheet;; - xsltproc ) xsltproc --catalogs $xhtmlsheet $1 > $2;; + xsltproc ) xsltproc --catalogs --xinclude $xhtmlsheet $1 > $2;; esac } |