Blame Scripts/Functions/Help/help_updateOutputFileHtml.sh

d3e9d7
#!/bin/bash
d3e9d7
#
0211a4
# help_updateOutputFileHtml.sh -- This function exports
5285d6
# documentation manual to HTML format.
d3e9d7
#
9f5f2e
# Copyright (C) 2009-2011 Alain Reguera Delgado
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
fa95b1
# the Free Software Foundation; either version 2 of the License, or
fa95b1
# (at your option) any later version.
fa95b1
#
d3e9d7
# This program is distributed in the hope that it will be useful, but
d3e9d7
# WITHOUT ANY WARRANTY; without even the implied warranty of
d3e9d7
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
d3e9d7
# General Public License for more details.
d3e9d7
#
d3e9d7
# You should have received a copy of the GNU General Public License
d3e9d7
# along with this program; if not, write to the Free Software
d3e9d7
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
d3e9d7
# USA.
d3e9d7
# ----------------------------------------------------------------------
d3e9d7
# $Id$
d3e9d7
# ----------------------------------------------------------------------
d3e9d7
0211a4
function help_updateOutputFileHtml {
d3e9d7
5285d6
    # Output action message.
bf22b2
    cli_printMessage "${MANUAL_BASEFILE}-xhtml" 'AsUpdatingLine'
d3e9d7
d3e9d7
    # Check html output directory
bf22b2
    [[ ! -d ${MANUAL_BASEFILE}-xhtml ]] && mkdir -p ${MANUAL_BASEFILE}-xhtml
d3e9d7
d3e9d7
    # Add html output directory into directory stack to make it the
d3e9d7
    # current working directory. Otherwise texi2html may produce
d3e9d7
    # incorrect paths to images included.
bf22b2
    pushd ${MANUAL_BASEFILE}-xhtml > /dev/null
d3e9d7
d3e9d7
    # Update html files.  Use texi2html to export from texinfo file
d3e9d7
    # format to html using CentOS Web default visual style.
bf22b2
    texi2html --init-file=${MANUAL_BASEDIR}/repository.init \
bf22b2
        --output=${MANUAL_BASEDIR}/repository-xhtml \
bf22b2
        ${MANUAL_BASEFILE}.texi
d3e9d7
d3e9d7
    # Apply html transformations. Html transformations rely on
d3e9d7
    # Texi2html default html output. The main goal of these html
d3e9d7
    # transformations is to build specific html structures that match
d3e9d7
    # specific css definitions. This way we extend the visual style of
d3e9d7
    # Texi2html default html output.
d3e9d7
    sed -r -i \
b5a2de
        -f ${HOME}/artwork/trunk/Identity/Manual/repository.sed \
bf22b2
        ${MANUAL_BASEFILE}-xhtml/*.xhtml
d3e9d7
d3e9d7
    # Remove html output directory from directory stack.
d3e9d7
    popd > /dev/null
d3e9d7
d3e9d7
}