6523cc Update `render' functionality:

Authored and Committed by areguera 13 years ago
    Update `render' functionality:
    
        - Rename internal functions looking for a better name
          organization.
    
    
        
Scripts/Bash/Functions/Render/render_doIdentity.sh CHANGED
@@ -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
- render_doIdentityBase
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
Scripts/Bash/Functions/Render/render_getIdentityBase.sh Scripts/Bash/Functions/Render/render_doIdentityBase.sh
file renamed
+5 -5
Scripts/Bash/Functions/Render/{render_doIdentityBase.sh → render_getIdentityBase.sh} RENAMED
@@ -1,6 +1,6 @@
1
1
#!/bin/bash
2
2
#
3
- # render_doIdentityBase.sh -- This function initiates rendition features
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 render_doIdentityBase {
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
- render_getIdentityTranslationDir
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
- render_getIdentityTemplateDir
45
+ render_getIdentityDirTemplate
46
46
47
47
# Redefine absolute path to artwork's related final output
48
48
# directory.
49
- render_getIdentityOutputDir
49
+ render_getIdentityDirOutput
50
50
51
51
# Redefine parent directory for current workplace.
52
52
PARENTDIR=$(basename $ACTIONVAL)
Scripts/Bash/Functions/Render/render_getIdentityDirOutput.sh Scripts/Bash/Functions/Render/render_getIdentityOutputDir.sh
file renamed
+2 -2
Scripts/Bash/Functions/Render/{render_getIdentityOutputDir.sh → render_getIdentityDirOutput.sh} RENAMED
@@ -1,6 +1,6 @@
1
1
#!/bin/bash
2
2
#
3
- # render_getIdentityOutputDir.sh -- This function re-defines final
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 render_getIdentityOutputDir {
27
+ function render_getIdentityDirOutput {
28
28
29
29
# By default rendered identity artworks are stored immediatly
30
30
# under identity entry structure.
Scripts/Bash/Functions/Render/render_getIdentityDirTemplate.sh Scripts/Bash/Functions/Render/render_getIdentityTemplateDir.sh
file renamed
+2 -2
Scripts/Bash/Functions/Render/{render_getIdentityTemplateDir.sh → render_getIdentityDirTemplate.sh} RENAMED
@@ -1,6 +1,6 @@
1
1
#!/bin/bash
2
2
#
3
- # render_getIdentityTemplateDir.sh -- This function re-defines absolute
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 render_getIdentityTemplateDir {
27
+ function render_getIdentityDirTemplate {
28
28
29
29
# Initialize design models location using action value as
30
30
# reference.
Scripts/Bash/Functions/Render/render_getIdentityDirTranslation.sh Scripts/Bash/Functions/Render/render_getIdentityTranslationDir.sh
file renamed
+2 -2
Scripts/Bash/Functions/Render/{render_getIdentityTranslationDir.sh → render_getIdentityDirTranslation.sh} RENAMED
@@ -1,6 +1,6 @@
1
1
#!/bin/bash
2
2
#
3
- # render_getIdentityTranslationDir.sh -- This function re-defines the
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 render_getIdentityTranslationDir {
29
+ function render_getIdentityDirTranslation {
30
30
31
31
TRANSLATIONPATH=${FUNCDIR}/${FUNCDIRNAM}/Config/$ARTCOMP
32
32