#!/bin/bash PROC=xsltproc export XML_CATALOG_FILES=/usr/share/xml/docbook/custom/website/2.5.0/catalog.xml AUTOLAYOUT=autolayout.xml # Use XSLT to create autolayout.xml. # Do this by processing your layout.xml with the autolayout.xsl stylesheet. $PROC -o $AUTOLAYOUT autolayout.xsl layout.xml #`Use XSLT to build the website. # Process the autolayout.xml file with the chunk-tabular.xsl stylesheet. # Change the path in output-root to put your HTML output elsewhere $PROC chunk-tabular.xsl $AUTOLAYOUT