Blame Scripts/Functions/Help/Texinfo/texinfo_updateOutputFileXml.sh

5285d6
#!/bin/bash
5285d6
#
993f6a
# texinfo_updateOutputFileXml.sh -- This function exports documentation
5285d6
# manual to XML format.
5285d6
#
2fe9b7
# Copyright (C) 2009, 2010, 2011 The CentOS Project
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
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
74a058
# This program is distributed in the hope that it will be useful, but
74a058
# WITHOUT ANY WARRANTY; without even the implied warranty of
5285d6
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
5285d6
# General Public License for more details.
5285d6
#
5285d6
# You should have received a copy of the GNU General Public License
5285d6
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
5285d6
# ----------------------------------------------------------------------
5285d6
# $Id$
5285d6
# ----------------------------------------------------------------------
5285d6
993f6a
function texinfo_updateOutputFileXml {
5285d6
1e816e
    # Print action message.
1b2f82
    cli_printMessage "${MANUAL_BASEFILE}.xml" --as-response-line
5285d6
1e816e
    # Update xml output format.
5285d6
    /usr/bin/makeinfo --xml \
9fa13b
        ${MANUAL_BASEFILE}.${MANUAL_EXTENSION} --output=${MANUAL_BASEFILE}.xml \
5285d6
5285d6
}