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

4c79b5
#!/bin/bash
4c79b5
#
4c79b5
# render_getIdentityTemplateDir.sh -- This function re-defines absolute
cabeaa
# path to artwork's related design templates directory.
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
4c79b5
function render_getIdentityTemplateDir {
4c79b5
cabeaa
    # Initialize design models location using action value as
cabeaa
    # reference.
12f1d8
    SVG=$ACTIONVAL
12f1d8
cabeaa
    # Sanitate design models location.  Be sure design models do
cabeaa
    # always point to trunk directory structure. This is useful to let
cabeaa
    # `centos-art.sh' script do rendering under branches directory
cabeaa
    # structure, reusing design models under trunk directory
cabeaa
    # structure.
12f1d8
    SVG=$(echo "$SVG" | sed "s!/branches/!/trunk/!")
12f1d8
cabeaa
    # Sanitate design models location.
12f1d8
    if [[ -d $SVG/Tpl ]];then
cabeaa
        # Using Tpl/ directory is an obsolete practice that should be
cabeaa
        # avoided. The concept of Tpl/ directory per artwork directory
cabeaa
        # has been replaced by a common design model directory
cabeaa
        # structure where we centralize design models for all
cabeaa
        # different artistic motifs.  However, there are some cases
cabeaa
        # that we may need to use Tpl/ directory still, so we verify
cabeaa
        # its existence and use it if present.
12f1d8
        SVG=$SVG/Tpl
cabeaa
    else
cabeaa
        # Redefine design model location based on theme model
cabeaa
        # (THEMEMODEL) variable value. The theme model variable is
cabeaa
        # defined in the associated pre-rendering configuration script
cabeaa
        # and can be used to set which design model to use among a
cabeaa
        # list of different design models that we can choose from.
cabeaa
        SVG=$(echo "$SVG" | sed "s!Motifs/$(cli_getThemeName)!Models/$THEMEMODEL!")
12f1d8
    fi
4c79b5
4c79b5
}