|
|
4c79b5 |
#!/bin/bash
|
|
|
4c79b5 |
#
|
|
|
ab1d67 |
# render.sh -- This function initializes rendition variables and
|
|
|
294842 |
# actions to centos-art.sh script.
|
|
|
4c79b5 |
#
|
|
|
9f5f2e |
# 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 |
|
|
|
ab1d67 |
function render {
|
|
|
4c79b5 |
|
|
|
d538ed |
local ACTIONNAM=''
|
|
|
4d7186 |
local ACTIONVAL=''
|
|
|
4d7186 |
|
|
|
61bb5b |
# Initialize `--releasever' option. The release version option
|
|
|
61bb5b |
# controls the release number used to produce release-specific
|
|
|
61bb5b |
# content. By default no release number is used.
|
|
|
49237e |
local FLAG_RELEASEVER=''
|
|
|
15b1d2 |
|
|
|
61bb5b |
# Initialize `--basearch' option. The base architecture option
|
|
|
61bb5b |
# controls the architecture type used to produce
|
|
|
61bb5b |
# architecture-specific content. By default no architecture type
|
|
|
61bb5b |
# is used.
|
|
|
49237e |
local FLAG_BASEARCH=''
|
|
|
c9f7fa |
|
|
|
61bb5b |
# Initialize `--theme-model' option. The theme model option
|
|
|
61bb5b |
# specifies the the theme model name used to produce theme
|
|
|
61bb5b |
# artistic motifs.
|
|
|
294842 |
local FLAG_THEME_MODEL='Default'
|
|
|
294842 |
|
|
|
61bb5b |
# Initialize `--convert' option. The convert option controls
|
|
|
61bb5b |
# whether convert or not content produced by centos-art
|
|
|
61bb5b |
# base-rendition. By default there is no content convertion.
|
|
|
61bb5b |
local FLAG_CONVERT=''
|
|
|
b463d6 |
|
|
|
61bb5b |
# Initialize `--rotate' option. The rotate option controls whether
|
|
|
61bb5b |
# rotate or not image content produced by centos-art
|
|
|
61bb5b |
# base-rendition. By default there is no content rotation.
|
|
|
61bb5b |
local FLAG_ROTATE=''
|
|
|
61bb5b |
|
|
|
61bb5b |
# Initialize `--resize' option. The resize option controls whether
|
|
|
61bb5b |
# resize or not content produced by centos-art base-rendition. By
|
|
|
61bb5b |
# default there is no content resizing.
|
|
|
61bb5b |
local FLAG_RESIZE=''
|
|
|
61bb5b |
|
|
|
61bb5b |
# Initialize `--group-by' option. The grouped-by option specifies
|
|
|
61bb5b |
# whether grouping or not content produced by centos-art
|
|
|
61bb5b |
# base-rendition. By default there is no content grouping.
|
|
|
b463d6 |
local FLAG_GROUPED_BY=''
|
|
|
b463d6 |
|
|
|
49237e |
# Interpret arguments and options passed through command-line.
|
|
|
d3dc02 |
render_getArguments
|
|
|
4c79b5 |
|
|
|
49237e |
# Redefine positional parameters using ARGUMENTS. At this point,
|
|
|
49237e |
# option arguments have been removed from ARGUMENTS variable and
|
|
|
49237e |
# only non-option arguments remain in it.
|
|
|
49237e |
eval set -- "$ARGUMENTS"
|
|
|
49237e |
|
|
|
d538ed |
# Define action name. No matter what option be passed to
|
|
|
d538ed |
# centos-art, there is only one action to perform (i.e., the
|
|
|
d538ed |
# base-rendition flow).
|
|
|
d538ed |
ACTIONNAM="${FUNCNAME}_doBaseActions"
|
|
|
d538ed |
|
|
|
eb2554 |
# Define action value. We use non-option arguments to define the
|
|
|
eb2554 |
# action value (ACTIONVAL) variable.
|
|
|
49237e |
for ACTIONVAL in "$@";do
|
|
|
49237e |
|
|
|
49237e |
if [[ $ACTIONVAL == '--' ]];then
|
|
|
49237e |
continue
|
|
|
49237e |
fi
|
|
|
49237e |
|
|
|
49237e |
# Check action value. Be sure the action value matches the
|
|
|
49237e |
# convenctions defined for source locations inside the working
|
|
|
49237e |
# copy.
|
|
|
49237e |
cli_checkRepoDirSource
|
|
|
49237e |
|
|
|
49237e |
# Syncronize changes between repository and working copy. At
|
|
|
49237e |
# this point, changes in the repository are merged in the
|
|
|
49237e |
# working copy and changes in the working copy committed up to
|
|
|
49237e |
# repository.
|
|
|
49237e |
cli_syncroRepoChanges
|
|
|
49237e |
|
|
|
d538ed |
# Execute action name.
|
|
|
d538ed |
if [[ $ACTIONNAM =~ "^${FUNCNAM}_[A-Za-z]+$" ]];then
|
|
|
d538ed |
eval $ACTIONNAM
|
|
|
d538ed |
else
|
|
|
d538ed |
cli_printMessage "`gettext "A valid action is required."`" 'AsErrorLine'
|
|
|
eee226 |
cli_printMessage "${FUNCDIRNAM}" 'AsToKnowMoreLine'
|
|
|
d538ed |
fi
|
|
|
49237e |
|
|
|
49237e |
# Commit changes from working copy to central repository only.
|
|
|
49237e |
# At this point, changes in the repository are not merged in
|
|
|
49237e |
# the working copy, but chages in the working copy do are
|
|
|
49237e |
# committed up to repository.
|
|
|
49237e |
cli_commitRepoChanges
|
|
|
49237e |
|
|
|
49237e |
done
|
|
|
49237e |
|
|
|
4c79b5 |
}
|