Blame Scripts/Bash/Functions/Manual/manual_updateTexinfoStructure.sh

2bd980
#!/bin/bash
2bd980
#
2bd980
# manual_updateTexinfoStructure.sh -- This function updates texinfo
2bd980
# documentation structure based on a documentation entry. This
2bd980
# function is useful to keep documentation structure syncronized with
2bd980
# repository directory structure. 
2bd980
#
2bd980
# Copyright (C) 2009, 2010 Alain Reguera Delgado
2bd980
# 
2bd980
# This program is free software; you can redistribute it and/or
2bd980
# modify it under the terms of the GNU General Public License as
2bd980
# published by the Free Software Foundation; either version 2 of the
2bd980
# License, or (at your option) any later version.
2bd980
# 
2bd980
# This program is distributed in the hope that it will be useful, but
2bd980
# WITHOUT ANY WARRANTY; without even the implied warranty of
2bd980
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2bd980
# General Public License for more details.
2bd980
#
2bd980
# You should have received a copy of the GNU General Public License
2bd980
# along with this program; if not, write to the Free Software
2bd980
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
2bd980
# USA.
2bd980
# 
2bd980
# ----------------------------------------------------------------------
2bd980
# $Id$
2bd980
# ----------------------------------------------------------------------
2bd980
2bd980
function manual_updateTexinfoStructure {
2bd980
2bd980
    # Update Texinfo menu information.
2bd980
    manual_updateMenu
2bd980
2bd980
    # Update Texinfo nodes information.
2bd980
    manual_updateNodes
2bd980
2bd980
    # Update Texinfo cross-reference information.
2bd980
    manual_restoreCrossReferences
2bd980
2bd980
    # Update Texinfo output.
2bd980
    manual_updateOutputFiles
2bd980
2bd980
}