Blame tcar-scripts-render/Modules/Files/Modules/Asciidoc/asciidoc_setXhtmlRendition.sh

Alain Reguera Delgado 2c7b25
#!/bin/bash
Alain Reguera Delgado 2c7b25
######################################################################
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
#  asciidoc_setXhtmlRendition.sh -- This function standardizes the way
Alain Reguera Delgado 2c7b25
#  docbook files are transformed in XHTML format.
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
#   Written by:
Alain Reguera Delgado 2c7b25
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
# Copyright (C) 2009-2013 The CentOS Artwork SIG
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 2c7b25
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 2c7b25
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 2c7b25
# your option) any later version.
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 2c7b25
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 2c7b25
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 2c7b25
# General Public License for more details.
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 2c7b25
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 2c7b25
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 2c7b25
#
Alain Reguera Delgado 2c7b25
######################################################################
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
function asciidoc_setXhtmlRendition {
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado c52a31
    local LOCATION=$(tcar_checkWorkDirSource "${1}")
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    RENDER_PAGES=$(tcar_getConfigValue "${CONFIGURATION}" "${SECTION}" "render-page")
Alain Reguera Delgado 2c7b25
    if [[ -z ${RENDER_PAGES} ]];then
Alain Reguera Delgado 2c7b25
        RENDER_PAGES='single'
Alain Reguera Delgado 2c7b25
    fi
Alain Reguera Delgado 2c7b25
    tcar_checkFiles -m '^(single-notoc|single|chunks)$' "${RENDER_PAGES}"
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    IMAGES_FROM=$(tcar_getConfigValue "${CONFIGURATION}" "${SECTION}" "images-from")
Alain Reguera Delgado 2c7b25
    if [[ -z ${IMAGES_FROM} ]];then
Alain Reguera Delgado 2c7b25
        IMAGES_FROM="${TCAR_BASEDIR}/Artworks/Icons/Webenv/Final"
Alain Reguera Delgado 2c7b25
    fi
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    STYLES_FROM=$(tcar_getConfigValue "${CONFIGURATION}" "${SECTION}" "styles-from")
Alain Reguera Delgado 2c7b25
    if [[ -z ${STYLES_FROM} ]];then
Alain Reguera Delgado 2c7b25
        STYLES_FROM="${TCAR_BASEDIR}/Artworks/Webenv/Docbook/1.69.1/Css"
Alain Reguera Delgado 2c7b25
    fi
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    # When producing chunks, take into consideration that both single
Alain Reguera Delgado 2c7b25
    # and chunks share images produced in the root location. If we
Alain Reguera Delgado 2c7b25
    # create another level of directories to store chunks, that would
Alain Reguera Delgado 2c7b25
    # make impossible to use one unique image path for both single and
Alain Reguera Delgado 2c7b25
    # chunks from one unique asciidoc document.  So, to reuse image
Alain Reguera Delgado 2c7b25
    # files, produce both chunks and single XHTML output in the same
Alain Reguera Delgado 2c7b25
    # directory.
Alain Reguera Delgado 2c7b25
    if [[ ${RENDER_PAGES} == 'chunks' ]];then
Alain Reguera Delgado 2c7b25
        LOCATION="$(dirname ${LOCATION})/"
Alain Reguera Delgado 2c7b25
    fi
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    if [[ ! -d $(dirname ${LOCATION}) ]];then
Alain Reguera Delgado 2c7b25
        mkdir -p $(dirname ${LOCATION})
Alain Reguera Delgado 2c7b25
    fi
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    ln -sfn ${IMAGES_FROM} $(dirname ${LOCATION})/Images
Alain Reguera Delgado 2c7b25
    ln -sfn ${STYLES_FROM} $(dirname ${LOCATION})/Css
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    tcar_printMessage "${LOCATION}" --as-creating-line
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
    for RENDER_PAGE in ${RENDER_PAGES};do
Alain Reguera Delgado 2c7b25
        /usr/bin/xsltproc -o ${LOCATION} --nonet \
Alain Reguera Delgado 2c7b25
            ${DOCBOOK_XSL}/docbook2xhtml-${RENDER_PAGE}.xsl ${TARGET_INSTANCES[${COUNTER}]}
Alain Reguera Delgado 2c7b25
    done
Alain Reguera Delgado 2c7b25
Alain Reguera Delgado 2c7b25
}