| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function docbook_convertToXhtmlChunk { |
| |
| |
| if [[ -d ${FILE}-xhtml ]];then |
| cli_printMessage "${FILE}-xhtml" --as-updating-line |
| else |
| cli_printMessage "${FILE}-xhtml" --as-creating-line |
| mkdir ${FILE}-xhtml |
| fi |
| |
| |
| |
| |
| local SRC=${INSTANCE} |
| |
| |
| |
| |
| local DST="${FILE}-xhtml/" |
| |
| |
| local XSLT=/usr/share/sgml/docbook/xsl-stylesheets/xhtml/chunk.xsl |
| |
| |
| xsltproc $XSLT --output $DST $SRC 2> /dev/null |
| |
| } |