Blame Scripts/Bash/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="\
4c79b5
        @node $CHAPTERNAME
4c79b5
        @chapter $CHAPTERNAME
4c79b5
        @cindex $(echo $CHAPTERNAME | tr '[[:upper:]]' '[[:lower:]]')
4c79b5
        @include $CHAPTERNAME/${MANUALS_FILE[7]}
4c79b5
        @include $CHAPTERNAME/${MANUALS_FILE[8]}
4c79b5
        @include $CHAPTERNAME/${MANUALS_FILE[9]}"
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.
4c79b5
    if [[ ! -d $ENTRYCHAPTER ]];then
4c79b5
        mkdir $ENTRYCHAPTER
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.
4c79b5
    echo "$CHAPTERBODY" > $ENTRYCHAPTER/${MANUALS_FILE[6]}
4c79b5
    echo "" > $ENTRYCHAPTER/${MANUALS_FILE[8]}
4c79b5
    echo "" > $ENTRYCHAPTER/${MANUALS_FILE[9]}
4c79b5
4c79b5
    # Initialize chapter instroduction using template file.
4c79b5
    cp ${MANUALS_DIR[6]}/repository-chapter-intro.texi $ENTRYCHAPTER/${MANUALS_FILE[7]}
4c79b5
    sed -r -i \
4c79b5
        -e "s!=GOALS=!`gettext "Goals"`!g" \
4c79b5
        -e "s!=USAGE=!`gettext "Usage"`!g" \
4c79b5
        -e "s!=CONCEPTS=!`gettext "Concepts"`!g" \
4c79b5
        -e "s!=DIRECTORIES=!`gettext "Directories"`!g" \
4c79b5
        $ENTRYCHAPTER/${MANUALS_FILE[7]}
4c79b5
}