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

4c79b5
#!/bin/bash
4c79b5
#
4c79b5
# render_getIdentityTemplateDir.sh -- This function re-defines absolute
4c79b5
# path to artwork's related design templates directory. 
4c79b5
#
7cd8e9
# Copyright (C) 2009, 2010 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
12f1d8
    SVG=$ACTIONVAL
12f1d8
12f1d8
    # Be sure design models are always pointing to trunk. This is
12f1d8
    # useful to let centos-art.sh script do render under branches
12f1d8
    # directory structure.
12f1d8
    SVG=$(echo "$SVG" | sed "s!/branches/!/trunk/!")
12f1d8
12f1d8
    # By default design templates are stored directly under theme
12f1d8
    # model directory structure. The Tpl/ directory is no longer used,
12f1d8
    # except some specific cases that, for organization sake, it is
12f1d8
    # convenient to use them.
12f1d8
    if [[ -d $SVG/Tpl ]];then
12f1d8
        SVG=$SVG/Tpl
12f1d8
    fi
4c79b5
4c79b5
    # If you are rendering theme motifs, design templates are not
4c79b5
    # stored inside Tpl directory. Instead, we use one common theme
12f1d8
    # model structure for all artistic motifs. Inside the common theme
12f1d8
    # model structure, there are several design models that user can
12f1d8
    # alternate among, using the THEMEMODEL variable available on
12f1d8
    # pre-rendering configuration scripts.
12f1d8
    SVG=$(echo "$SVG" | sed "s!Motifs/$(cli_getThemeName)!Models/$THEMEMODEL!")
4c79b5
4c79b5
}