From: <smi...@us...> - 2004-01-02 00:02:23
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv9828 Modified Files: documentation.css htmldoc htmldoc_single Log Message: preparing update of docbook stylesheets changed CSS to have white header and footer Index: documentation.css =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.css,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- documentation.css 27 Oct 2002 20:39:07 -0000 1.2 +++ documentation.css 2 Jan 2004 00:02:18 -0000 1.3 @@ -81,7 +81,7 @@ div.navheader { padding-top: 2px; - background-color: #c6bec6; + background-color: #FFFFFF; padding-right: 2px; border-bottom-style: solid; border-bottom-width: 1px; @@ -89,7 +89,7 @@ div.navfooter { padding-top: 2px; - background-color: #c6bec6; + background-color: #FFFFFF; padding-right: 2px; border-bottom-style: solid; border-bottom-width: 1px; Index: htmldoc =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/htmldoc,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- htmldoc 26 Aug 2003 00:26:41 -0000 1.3 +++ htmldoc 2 Jan 2004 00:02:18 -0000 1.4 @@ -7,10 +7,11 @@ rm -rf output.html mkdir output.html || exit 1 -cp -dpR ./java/* /data/build/tmp/j2re*/lib/ext || exit 1 - #rem generate HTML -/data/build/tmp/j2re*/bin/java com.icl.saxon.StyleSheet documentation.xml stylesheets/html.xsl || exit 1 +JAVA=$(which java) +test -z "$JAVA" && JAVA=/data/build/tmp/j2re*/bin/java + +$JAVA -cp $(pwd)/java/saxon.jar com.icl.saxon.StyleSheet documentation.xml stylesheets/html.xsl || exit 1 mkdir -p output.html/images/ || exit 1 Index: htmldoc_single =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/htmldoc_single,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- htmldoc_single 1 Jan 2004 21:28:20 -0000 1.1 +++ htmldoc_single 2 Jan 2004 00:02:18 -0000 1.2 @@ -7,10 +7,11 @@ rm -rf output.html mkdir output.html || exit 1 -cp -dpR ./java/* /data/build/tmp/j2re*/lib/ext || exit 1 - #rem generate HTML -/data/build/tmp/j2re*/bin/java -cp $(pwd)/java/saxon.jar com.icl.saxon.StyleSheet documentation.xml stylesheets/html_single.xsl || exit 1 +JAVA=$(which java) +test -z "$JAVA" && JAVA=/data/build/tmp/j2re*/bin/java + +$JAVA -cp $(pwd)/java/saxon.jar com.icl.saxon.StyleSheet documentation.xml stylesheets/html_single.xsl || exit 1 mkdir -p output.html/images/ || exit 1 |