Blame Scripts/Bash/Functions/Render/render_getFilesList.sh

4c79b5
#!/bin/bash
4c79b5
#
07c2fe
# render_getFilesList.sh -- This function redefines the list of files
07c2fe
# that will be rendered using matching list and translation path
4c79b5
# information as reference.
4c79b5
#
72c8a5
# 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
7f1fb7
function render_getFilesList {
4c79b5
7f1fb7
    # Define source location to look files for. In order to define
7f1fb7
    # source location we evaluate both matching list and translation
7f1fb7
    # path information, and based on them, we set which is the source
7f1fb7
    # location and extension used as reference to build list of file
7f1fb7
    # names (without extension) to process for.
4c79b5
    if [[ "${MATCHINGLIST}" != "" ]] \
4c79b5
        && [[ "${TRANSLATIONPATH}" == "" ]];then
4c79b5
4c79b5
        # Use design template as source location.
4c79b5
        LOCATION="$SVG"
4c79b5
        EXTENSION='svg'
4c79b5
4c79b5
    elif [[ "${MATCHINGLIST}" == "" ]] \
4c79b5
        && [[ "${TRANSLATIONPATH}" == "" ]];then
4c79b5
          
4c79b5
        # Use design template as source location.
4c79b5
        LOCATION="$SVG"
4c79b5
        EXTENSION='svg'
4c79b5
    
4c79b5
    elif [[ "${MATCHINGLIST}" == "" ]] \
4c79b5
        && [[ "${TRANSLATIONPATH}" != "" ]];then
4c79b5
        
4c79b5
        # Use translations as source location.
4c79b5
        LOCATION="${TRANSLATIONPATH}"
4c79b5
        EXTENSION='sed'
4c79b5
    
4c79b5
    elif [[ "${MATCHINGLIST}" != "" ]] \
4c79b5
        && [[ "${TRANSLATIONPATH}" != "" ]];then
4c79b5
    
4c79b5
        # Use translations as source location.
4c79b5
        LOCATION="${TRANSLATIONPATH}"
4c79b5
        EXTENSION='sed'
4c79b5
    
4c79b5
    fi
8b5668
8b5668
    # Make regular expression (REGEX) variable local (to avoid
8b5668
    # concatenation the next time cli_getFilesList function be
8b5668
    # called), and redefine it to match files with specific extensions
8b5668
    # inside specific locations.
8b5668
    local REGEX="${REGEX}.*\.${EXTENSION}"
4c79b5
f72d40
    # Define list of files to process.
f72d40
    cli_getFilesList "$LOCATION"
4c79b5
4c79b5
}