Blob Blame History Raw
#!/bin/bash
#
# texinfo_createStructure.sh -- This function creates the
# documentation structure of a manual using the current language as
# reference.
#
# Copyright (C) 2009, 2010, 2011, 2012 The CentOS Project
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# ----------------------------------------------------------------------
# $Id$
# ----------------------------------------------------------------------

function texinfo_createStructure {

    # Verify manual main definition file. If it already exist, assume
    # it was correctly created in the past. Otherwise try to create
    # it. Don't use the manual base directory here, it would prevent
    # documentation manuals from being created on different languages.
    if [[ -f ${MANUAL_BASEFILE}.${MANUAL_EXTENSION} ]];then
        return
    else
        cli_printMessage "`eval_gettext "The following documentation manual doesn't exist:"`" --as-stdout-line
        cli_printMessage "${MANUAL_BASEFILE}.${MANUAL_EXTENSION}" --as-response-line
        cli_printMessage "`gettext "Do you want to create it now?"`" --as-yesornorequest-line
    fi

    # Initialize manual's information (e.g., title, subtitle, abstract).
    local MANUAL_TITLE=''
    local MANUAL_SUBTITLE=''
    local MANUAL_ABSTRACT=''

    # Retrieve manual's information from standard input.
    cli_printMessage "`gettext "Enter manual's title"`" --as-request-line
    read MANUAL_TITLE
    cli_printMessage "`gettext "Enter manual's subtitle"`" --as-request-line
    read MANUAL_SUBTITLE
    cli_printMessage "`gettext "Enter manual's abstract"`" --as-request-line
    read MANUAL_ABSTRACT

    # Verify manual's information. The title information must be
    # non-empty value.
    if [[ $MANUAL_TITLE == '' ]];then
        cli_printMessage "`gettext "The manual title cannot be empty."`" --as-error-line
    fi

    # Create manual's top-level directory using default version
    # control system. This is the place where all texinfo
    # documentation manuals are stored in.
    if [[ ! -d ${MANUAL_BASEDIR} ]];then
        cli_printMessage "${MANUAL_BASEDIR}" --as-creating-line
        cli_runFnEnvironment vcs --quiet --mkdir ${MANUAL_BASEDIR}
    fi

    # Create manual's base directory. This is the place where
    # language-specific documentation source files are stored in.
    cli_printMessage "${MANUAL_BASEDIR_L10N}" --as-creating-line
    cli_runFnEnvironment vcs --quiet --mkdir ${MANUAL_BASEDIR_L10N}

    # Define file names required to build the manual.
    local FILE=''
    local FILES=$(cli_getFilesList "${MANUAL_TEMPLATE_L10N}" \
        --maxdepth='1' \
        --pattern="^.+/manual((-menu|-nodes|-index)?\.${MANUAL_EXTENSION}|\.conf)$")

    # Verify manual base file. The manual base file is where the
    # documentation manual is defined in the format format. Assuming
    # no file exists (e.g., a new language-specific manual is being
    # created), use texinfo templates for it.
    for FILE in $FILES;do
        if [[ ! -f ${MANUAL_BASEDIR_L10N}/$(basename ${FILE}) ]];then

            # Be sure the file is inside the working copy and under
            # version control. 
            cli_checkFiles ${FILE} --is-versioned

            # Define target file.
            local DST=${MANUAL_BASEDIR_L10N}/$(basename ${FILE} \
                | sed -r "s!manual!${MANUAL_NAME}!")

            # Print action name.
            cli_printMessage "${DST}" --as-creating-line

            # Copy using subversion to register this action.
            cli_runFnEnvironment vcs --quiet --copy ${FILE} ${DST}

            # Expand common translation markers inside target file.
            cli_expandTMarkers ${DST}

            # Expand specific translation markers inside target file.
            sed -r -i -e "s!=MANUAL_NAME=!${MANUAL_NAME}!g" \
                -e "s!=MANUAL_TITLE=!${MANUAL_TITLE}!g" \
                -e "s!=MANUAL_SUBTITLE=!${MANUAL_SUBTITLE}!g" \
                -e "s!=MANUAL_ABSTRACT=!${MANUAL_ABSTRACT}!g" $DST

        fi
    done

    # Initialize chapter structure inside the manual.
    texinfo_createStructureChapters

    # Redefine absolute path to changed directory.
    MANUAL_CHANGED_DIRS=${MANUAL_BASEDIR}

}