Blame Scripts/Functions/Help/Modules/Texinfo/texinfo_updateChaptersFiles.sh

4c79b5
#!/bin/bash
4c79b5
#
1afa3c
# texinfo_updateChaptersFiles.sh -- This function updates chapter related
4c79b5
# files.
4c79b5
#
2d3646
# 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
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
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
7ac5a5
#
4c79b5
# ----------------------------------------------------------------------
418249
# $Id$
4c79b5
# ----------------------------------------------------------------------
4c79b5
1afa3c
function texinfo_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.
25d664
    cp ${MANUAL_TEMPLATE}/manual-chapter-intro.texi $MANUAL_CHAPTER_DIR/chapter-intro.texi
5285d6
4c79b5
}