Blame Scripts/centos-art.sh/Functions/Manual/manual_updateChaptersFiles.sh

4c79b5
#!/bin/bash
4c79b5
#
4de5d4
# manual_updateChaptersFiles.sh -- This function updates chapter related
4c79b5
# files.
4c79b5
#
9f5f2e
# Copyright (C) 2009-2011 Alain Reguera Delgado
4c79b5
# 
7cd8e9
# This program is free software; you can redistribute it and/or
7cd8e9
# modify it under the terms of the GNU General Public License as
7cd8e9
# published by the Free Software Foundation; either version 2 of the
7cd8e9
# License, or (at your option) any later version.
4c79b5
# 
4c79b5
# This program is distributed in the hope that it will be useful, but
4c79b5
# WITHOUT ANY WARRANTY; without even the implied warranty of
4c79b5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4c79b5
# General Public License for more details.
4c79b5
#
4c79b5
# You should have received a copy of the GNU General Public License
4c79b5
# along with this program; if not, write to the Free Software
4c79b5
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
4c79b5
# USA.
4c79b5
# 
4c79b5
# ----------------------------------------------------------------------
418249
# $Id$
4c79b5
# ----------------------------------------------------------------------
4c79b5
4de5d4
function manual_updateChaptersFiles {
4c79b5
4c79b5
    # Define chapter's generic structure. 
4c79b5
    local CHAPTERBODY="\
5285d6
        @node $MANUAL_CHA_NAME
5285d6
        @chapter $MANUAL_CHA_NAME
5285d6
        @cindex $(echo $MANUAL_CHA_NAME | tr '[[:upper:]]' '[[:lower:]]')
5285d6
        @include $MANUAL_CHA_NAME/chapter-intro.texi
5285d6
        @include $MANUAL_CHA_NAME/chapter-menu.texi
5285d6
        @include $MANUAL_CHA_NAME/chapter-nodes.texi"
4c79b5
4c79b5
    # Remove any space/tabs at the begining of @... lines.
4c79b5
    CHAPTERBODY=$(echo "$CHAPTERBODY" | sed -r 's!^[[:space:]]+@!@!')
4c79b5
4c79b5
    # Create directory to store chapter files.
5285d6
    if [[ ! -d $MANUAL_DIR_CHAPTER ]];then
5285d6
        mkdir $MANUAL_DIR_CHAPTER
4c79b5
    fi
4c79b5
4c79b5
    # Create files to store chapter information. If chapter files
4c79b5
    # already exist, they will be re-written and any previous
4c79b5
    # information inside them will be lost.
5285d6
    echo "$CHAPTERBODY" > $MANUAL_DIR_CHAPTER/chapter.texi
5285d6
    echo "" > $MANUAL_DIR_CHAPTER/chapter-menu.texi
5285d6
    echo "" > $MANUAL_DIR_CHAPTER/chapter-nodes.texi
4c79b5
4c79b5
    # Initialize chapter instroduction using template file.
5285d6
    cp ${FUNCCONFIG}/manual-cha-intro.texi $MANUAL_DIR_CHAPTER/chapter-intro.texi
5285d6
4c79b5
}