|
|
4c79b5 |
#!/bin/bash
|
|
|
4c79b5 |
#
|
|
|
ab1d67 |
# render.sh -- This function initializes rendition variables and
|
|
|
294842 |
# actions to centos-art.sh script.
|
|
|
4c79b5 |
#
|
|
|
2d3646 |
# Copyright (C) 2009, 2010, 2011 The CentOS Project
|
|
|
fa95b1 |
#
|
|
|
fa95b1 |
# This program is free software; you can redistribute it and/or modify
|
|
|
fa95b1 |
|
|
|
dcd347 |
|
|
|
dcd347 |
|
|
|
fa95b1 |
#
|
|
|
74a058 |
|
|
|
74a058 |
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# General Public License for more details.
|
|
|
4c79b5 |
#
|
|
|
4c79b5 |
|
|
|
4c79b5 |
# along with this program; if not, write to the Free Software
|
|
|
dcd347 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
7ac5a5 |
#
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
418249 |
# $Id$
|
|
|
4c79b5 |
# ----------------------------------------------------------------------
|
|
|
4c79b5 |
|
|
|
ab1d67 |
function render {
|
|
|
4c79b5 |
|
|
|
d538ed |
local ACTIONNAM=''
|
|
|
4d7186 |
local ACTIONVAL=''
|
|
|
4d7186 |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
49237e |
local FLAG_RELEASEVER=''
|
|
|
15b1d2 |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
49237e |
local FLAG_BASEARCH=''
|
|
|
c9f7fa |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
294842 |
local FLAG_THEME_MODEL='Default'
|
|
|
294842 |
|
|
|
61bb5b |
|
|
|
1badd6 |
# whether to convert or not content produced as result of
|
|
|
61bb5b |
|
|
|
61bb5b |
local FLAG_CONVERT=''
|
|
|
b463d6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
local FLAG_COMMENT="`gettext "Created in CentOS Arwork Repository"` ($(cli_printUrl '--projects-artwork'))"
|
|
|
61bb5b |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
|
|
|
1badd6 |
local FLAG_SHARPEN=''
|
|
|
61bb5b |
|
|
|
61bb5b |
|
|
|
1badd6 |
|
|
|
61bb5b |
# whether grouping or not content produced by centos-art
|
|
|
61bb5b |
|
|
|
b463d6 |
local FLAG_GROUPED_BY=''
|
|
|
b463d6 |
|
|
|
49237e |
# Interpret arguments and options passed through command-line.
|
|
|
5792d8 |
render_getOptions
|
|
|
4c79b5 |
|
|
|
49237e |
# Redefine positional parameters using ARGUMENTS. At this point,
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
eval set -- "$ARGUMENTS"
|
|
|
49237e |
|
|
|
eb2554 |
|
|
|
eb2554 |
|
|
|
49237e |
for ACTIONVAL in "$@";do
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
cli_checkRepoDirSource
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
cli_syncroRepoChanges
|
|
|
49237e |
|
|
|
cff13a |
|
|
|
cff13a |
if [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/Identity/Images/Themes" ]];then
|
|
|
cff13a |
ACTIONNAM="${FUNCNAME}_doThemeActions"
|
|
|
cff13a |
elif [[ $ACTIONVAL =~ "^$(cli_getRepoTLDir)/Identity/Images" ]];then
|
|
|
cff13a |
ACTIONNAM="${FUNCNAME}_doBaseActions"
|
|
|
cff13a |
else
|
|
|
0ff158 |
cli_printMessage "`gettext "The path provided do not support rendition."`"
|
|
|
cff13a |
fi
|
|
|
cff13a |
|
|
|
d538ed |
|
|
|
d538ed |
if [[ $ACTIONNAM =~ "^${FUNCNAM}_[A-Za-z]+$" ]];then
|
|
|
d538ed |
eval $ACTIONNAM
|
|
|
d538ed |
else
|
|
|
0ff158 |
cli_printMessage "`gettext "A valid action is required."`" --as-error-line
|
|
|
d538ed |
fi
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
|
|
|
49237e |
cli_commitRepoChanges
|
|
|
49237e |
|
|
|
49237e |
done
|
|
|
49237e |
|
|
|
4c79b5 |
}
|