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