Blame Scripts/Functions/Help/Backends/Docbook/docbook_updateOutputFiles.sh

13bbeb
#!/bin/bash
13bbeb
#
13bbeb
# docbook_updateOutputFiles.sh -- This function exports documentation
13bbeb
# manual from docbook input format to different output formats (e.g.,
13bbeb
# pdf, xhtml, rtf and txt).
13bbeb
#
13bbeb
# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
13bbeb
#
13bbeb
# This program is free software; you can redistribute it and/or modify
13bbeb
# it under the terms of the GNU General Public License as published by
13bbeb
# the Free Software Foundation; either version 2 of the License, or (at
13bbeb
# your option) any later version.
13bbeb
#
13bbeb
# This program is distributed in the hope that it will be useful, but
13bbeb
# WITHOUT ANY WARRANTY; without even the implied warranty of
13bbeb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13bbeb
# General Public License for more details.
13bbeb
#
13bbeb
# You should have received a copy of the GNU General Public License
13bbeb
# along with this program; if not, write to the Free Software
13bbeb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
13bbeb
#
13bbeb
# ----------------------------------------------------------------------
13bbeb
# $Id$
13bbeb
# ----------------------------------------------------------------------
13bbeb
13bbeb
function docbook_updateOutputFiles {
13bbeb
13bbeb
    # Print separator line.
13bbeb
    cli_printMessage '-' --as-separator-line
13bbeb
13bbeb
    # Update docbook output files.
13bbeb
    docbook_updateOutputFilePdf
13bbeb
    docbook_updateOutputFileXhtml
13bbeb
13bbeb
}