|
|
4c79b5 |
#!/bin/bash
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# render_getIdentityFileslist.sh -- This function re-defines list of
|
|
|
4c79b5 |
# files that will be rendered using matching list and translation path
|
|
|
4c79b5 |
# information as reference.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# Copyright (C) 2009-2010 Alain Reguera Delgado
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
# This program is free software; you can redistribute it and/or modify
|
|
|
4c79b5 |
# it under the terms of the GNU General Public License as published by
|
|
|
4c79b5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
|
4c79b5 |
# (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 |
# ----------------------------------------------------------------------
|
|
|
4c79b5 |
# $Id: render_getIdentityFileslist.sh 53 2010-09-17 10:51:42Z al $
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
4c79b5 |
|
|
|
4c79b5 |
function render_getIdentityFileslist {
|
|
|
4c79b5 |
|
|
|
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
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Re-define filter string to apply.
|
|
|
4c79b5 |
FILTER="^$LOCATION/${REGEX}.*\.${EXTENSION}$"
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# Re-define list of file to render using filter string.
|
|
|
4c79b5 |
FILES=$(find $LOCATION -regextype posix-egrep -regex "$FILTER" | sort )
|
|
|
4c79b5 |
|
|
|
4c79b5 |
}
|