|
|
4f2050 |
#!/bin/bash
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# render_docbook_convertToXhtmlChunk.sh -- This function uses DocBook
|
|
|
4f2050 |
# XML as input and applies XSL stylesheets to produce a directory with
|
|
|
4f2050 |
# many XHTML files as output. The procedure was taken from the
|
|
|
4f2050 |
# documentation of `docbook-style-xsl-1.69.1-5.1' package, which says:
|
|
|
4f2050 |
# ---To publish HTML from your XML documents, you just need an XSLT
|
|
|
4f2050 |
# engine.---.
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# This program is free software; you can redistribute it and/or modify
|
|
|
4f2050 |
# it under the terms of the GNU General Public License as published by
|
|
|
4f2050 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
4f2050 |
# your option) any later version.
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# This program is distributed in the hope that it will be useful, but
|
|
|
4f2050 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
4f2050 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
4f2050 |
# General Public License for more details.
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# You should have received a copy of the GNU General Public License
|
|
|
4f2050 |
# along with this program; if not, write to the Free Software
|
|
|
4f2050 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
4f2050 |
#
|
|
|
4f2050 |
# ----------------------------------------------------------------------
|
|
|
4f2050 |
# $Id$
|
|
|
4f2050 |
# ----------------------------------------------------------------------
|
|
|
4f2050 |
|
|
|
4f2050 |
function docbook_convertToXhtmlChunk {
|
|
|
4f2050 |
|
|
|
be62ec |
local -a XSL_TEMPLATE
|
|
|
be62ec |
local -a XSL_INSTANCE
|
|
|
be62ec |
local XSL_INSTANCE_FINAL=''
|
|
|
be62ec |
|
|
|
4f2050 |
# Print action message.
|
|
|
4f2050 |
if [[ -d ${FILE}-xhtml ]];then
|
|
|
4f2050 |
cli_printMessage "${FILE}-xhtml" --as-updating-line
|
|
|
4f2050 |
else
|
|
|
4f2050 |
cli_printMessage "${FILE}-xhtml" --as-creating-line
|
|
|
4f2050 |
fi
|
|
|
4f2050 |
|
|
|
4f2050 |
# Define absolute path to DocBook source file. This is the
|
|
|
4f2050 |
# repository documentation manual file where DOCTYPE and ENTITY
|
|
|
4f2050 |
# definition lines are set.
|
|
|
4f2050 |
local SRC=${INSTANCE}
|
|
|
4f2050 |
|
|
|
4f2050 |
# Define absolute path to PDF target file. This is the final
|
|
|
4f2050 |
# location the PDF file produced as result of DocBook to PDF
|
|
|
4f2050 |
# transformation will be stored in.
|
|
|
4f2050 |
local DST="${FILE}-xhtml/"
|
|
|
4f2050 |
|
|
|
be62ec |
# Prepare XSL final instances used in transformations.
|
|
|
be62ec |
${RENDER_BACKEND}_prepareXsl4Using $(cli_getFilesList \
|
|
|
be62ec |
${RENDER_DOCBOOK_XSLDIR} --pattern='.*docbook2xhtml-(chunks|common)\.xsl')
|
|
|
4f2050 |
|
|
|
4f2050 |
# Transform DocBook XML to XHTML supressing all stderr output.
|
|
|
be62ec |
xsltproc --output ${DST} ${XSL_INSTANCE_FINAL} ${SRC} &> /dev/null
|
|
|
be62ec |
|
|
|
be62ec |
# Remove XSL instance files.
|
|
|
be62ec |
rm ${XSL_INSTANCE[*]}
|
|
|
4f2050 |
|
|
|
4f2050 |
}
|