| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function render_convertDocbookToXhtml { |
| |
| |
| if [[ -f ${FILE}.xhtml ]];then |
| cli_printMessage "${FILE}.xhtml" 'AsUpdatingLine' |
| else |
| cli_printMessage "${FILE}.xhtml" 'AsCreatingLine' |
| fi |
| |
| |
| local XSL='/usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl' |
| |
| |
| |
| xsltproc ${XSL} $INSTANCE > ${FILE}.xhtml |
| |
| } |