Blame Scripts/Functions/Help/help_updateChaptersFiles.sh

4c79b5
#!/bin/bash
4c79b5
#
0211a4
# help_updateChaptersFiles.sh -- This function updates chapter related
4c79b5
# files.
4c79b5
#
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
#
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
# ----------------------------------------------------------------------
418249
# $Id$
4c79b5
# ----------------------------------------------------------------------
4c79b5
0211a4
function help_updateChaptersFiles {
4c79b5
4c79b5
    # Define chapter's generic structure. 
4c79b5
    local CHAPTERBODY="\
7f7f8f
        @node $MANUAL_CHAPTER_NAME
7f7f8f
        @chapter $MANUAL_CHAPTER_NAME
7f7f8f
        @cindex $(echo $MANUAL_CHAPTER_NAME | tr '[[:upper:]]' '[[:lower:]]')
7f7f8f
        @include $MANUAL_CHAPTER_NAME/chapter-intro.texi
7f7f8f
        @include $MANUAL_CHAPTER_NAME/chapter-menu.texi
7f7f8f
        @include $MANUAL_CHAPTER_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.
7f7f8f
    if [[ ! -d $MANUAL_CHAPTER_DIR ]];then
7f7f8f
        mkdir $MANUAL_CHAPTER_DIR
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.
7f7f8f
    echo "$CHAPTERBODY" > $MANUAL_CHAPTER_DIR/chapter.texi
7f7f8f
    echo "" > $MANUAL_CHAPTER_DIR/chapter-menu.texi
7f7f8f
    echo "" > $MANUAL_CHAPTER_DIR/chapter-nodes.texi
4c79b5
4c79b5
    # Initialize chapter instroduction using template file.
7f7f8f
    cp ${FUNCCONFIG}/manual-cha-intro.texi $MANUAL_CHAPTER_DIR/chapter-intro.texi
5285d6
4c79b5
}