Blame Scripts/Functions/cli_getRepoParallelDirs.sh

328582
#!/bin/bash
328582
#
179346
# cli_getRepoParallelDirs.sh -- This function returns the parallel
179346
# directories related to the first positional paramenter passed as
179346
# parent directory. 
328582
#
e6e90a
# 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
dcd347
# the Free Software Foundation; either version 2 of the License, or (at
dcd347
# your option) any later version.
fa95b1
#
dcd347
# This program is distributed in the hope that it will be useful,
dcd347
# but WITHOUT ANY WARRANTY; without even the implied warranty of
328582
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
328582
# General Public License for more details.
328582
#
328582
# You should have received a copy of the GNU General Public License
328582
# along with this program; if not, write to the Free Software
dcd347
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
328582
# ----------------------------------------------------------------------
328582
# $Id$
328582
# ----------------------------------------------------------------------
328582
179346
function cli_getRepoParallelDirs {
328582
179346
    local BOND=''
179346
    local TDIR=''
179346
    local -a PDIRS
328582
179346
    # Define bond string using first positional parameter as
179346
    # reference.
179346
    if [[ "$1" != '' ]];then
179346
        BOND="$1"
179346
    elif [[ "$ACTIONVAL" != '' ]];then
179346
        BOND="$ACTIONVAL"
179346
    else
e508e7
        cli_printMessage "${FUNCNAME}: `gettext "The bond string is required."`" 'AsErrorLine'
eee226
        cli_printMessage "${FUNCDIRNAM}" 'AsToKnowMoreLine'
179346
    fi
328582
179346
    # Define repository top level directory.
179346
    TDIR=$(cli_getRepoTLDir ${BOND})
328582
179346
    # Define parallel directory base structures.
77e30a
    PDIRS[0]=Manuals/$(cli_getCurrentLocale)/Texinfo/Repository/$(cli_getRepoTLDir "${BOND}" '--relative')
179346
    PDIRS[1]=Scripts/Bash/Functions/Render/Config
77e30a
    PDIRS[2]=Locales
179346
179346
    # Redefine bond string without its top level directory structure.
e6e90a
    BOND=$(echo $BOND | sed -r "s,^${TDIR}/(.+)$,\1,")
179346
179346
    # Concatenate repository top level directory, parallel directory
179346
    # base structure, and bond information; in order to produce the
179346
    # final parallel directory path.
e6e90a
    for PDIR in "${PDIRS[@]}";do
179346
        echo ${TDIR}/${PDIR}/${BOND}
179346
    done
328582
328582
}