6523cc
Update `render' functionality:
@@ -24,7 +24,7 @@
|
|
24
24
|
# USA.
|
25
25
|
#
|
26
26
|
# ----------------------------------------------------------------------
|
27
|
-
# $Id$
|
27
|
+
# $Id: render_doIdentity.sh 824 2011-01-06 20:54:52Z al $
|
28
28
|
# ----------------------------------------------------------------------
|
29
29
|
|
30
30
|
function render_doIdentity {
|
@@ -113,7 +113,7 @@ function render_doIdentity {
|
|
113
113
|
|
114
114
|
# Start rendition as defined in artwork-specific pre-rendition
|
115
115
|
# configuration file.
|
116
|
-
|
116
|
+
render_getIdentityBase
|
117
117
|
|
118
118
|
# Unset artwork-specific actions so they can be redefined by
|
119
119
|
# artwork-specific pre-rendition configuration scripts. This
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
#
|
3
|
-
#
|
3
|
+
# render_getIdentityBase.sh -- This function initiates rendition features
|
4
4
|
# taking BASEACTIONS as reference.
|
5
5
|
#
|
6
6
|
# Copyright (C) 2009-2011 Alain Reguera Delgado
|
@@ -24,7 +24,7 @@
|
|
24
24
|
# $Id$
|
25
25
|
# ----------------------------------------------------------------------
|
26
26
|
|
27
|
-
function
|
27
|
+
function render_getIdentityBase {
|
28
28
|
|
29
29
|
# Define variables as local to avoid conflicts outside.
|
30
30
|
local TRANSLATIONPATH=''
|
@@ -37,16 +37,16 @@ function render_doIdentityBase {
|
|
37
37
|
local FILES=''
|
38
38
|
|
39
39
|
# Redefine absolute path to artwork's related translation entry.
|
40
|
-
|
40
|
+
render_getIdentityDirTranslation
|
41
41
|
|
42
42
|
# Redefine absolute path to artwork's related design template
|
43
43
|
# directory. By default design templates are stored in the Tpl/
|
44
44
|
# directory which is stored in the workplace's root.
|
45
|
-
|
45
|
+
render_getIdentityDirTemplate
|
46
46
|
|
47
47
|
# Redefine absolute path to artwork's related final output
|
48
48
|
# directory.
|
49
|
-
|
49
|
+
render_getIdentityDirOutput
|
50
50
|
|
51
51
|
# Redefine parent directory for current workplace.
|
52
52
|
PARENTDIR=$(basename $ACTIONVAL)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
#
|
3
|
-
#
|
3
|
+
# render_getIdentityDirOutput.sh -- This function re-defines final
|
4
4
|
# output directory used to store rendered identity artworks.
|
5
5
|
#
|
6
6
|
# Copyright (C) 2009-2011 Alain Reguera Delgado
|
@@ -24,7 +24,7 @@
|
|
24
24
|
# $Id$
|
25
25
|
# ----------------------------------------------------------------------
|
26
26
|
|
27
|
-
function
|
27
|
+
function render_getIdentityDirOutput {
|
28
28
|
|
29
29
|
# By default rendered identity artworks are stored immediatly
|
30
30
|
# under identity entry structure.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
#
|
3
|
-
#
|
3
|
+
# render_getIdentityDirTemplate.sh -- This function re-defines absolute
|
4
4
|
# path to artwork's related design templates directory.
|
5
5
|
#
|
6
6
|
# Copyright (C) 2009-2011 Alain Reguera Delgado
|
@@ -24,7 +24,7 @@
|
|
24
24
|
# $Id$
|
25
25
|
# ----------------------------------------------------------------------
|
26
26
|
|
27
|
-
function
|
27
|
+
function render_getIdentityDirTemplate {
|
28
28
|
|
29
29
|
# Initialize design models location using action value as
|
30
30
|
# reference.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
#
|
3
|
-
#
|
3
|
+
# render_getIdentityDirTranslation.sh -- This function re-defines the
|
4
4
|
# absolute path of artwork related translation entries. Be sure there
|
5
5
|
# is at least one translation file inside it. Otherwise consider
|
6
6
|
# the artwork translation entry as empty value.
|
@@ -26,7 +26,7 @@
|
|
26
26
|
# $Id$
|
27
27
|
# ----------------------------------------------------------------------
|
28
28
|
|
29
|
-
function
|
29
|
+
function render_getIdentityDirTranslation {
|
30
30
|
|
31
31
|
TRANSLATIONPATH=${FUNCDIR}/${FUNCDIRNAM}/Config/$ARTCOMP
|
32
32
|
|