|
Alain Reguera Delgado |
8f60cb |
#!/bin/bash
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# prepare_updateImages.sh -- This option initializes image files inside
|
|
Alain Reguera Delgado |
8f60cb |
# the working copy. When you provide this option, the centos-art.sh
|
|
Alain Reguera Delgado |
8f60cb |
# scripts renders image files from all design models available in the
|
|
Alain Reguera Delgado |
8f60cb |
# working copy. This step is required in order to satisfy dependencies
|
|
Alain Reguera Delgado |
8f60cb |
# from different components inside the working copy.
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# Copyright (C) 2009-2013 The CentOS Project
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
8f60cb |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
8f60cb |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
8f60cb |
# your option) any later version.
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
8f60cb |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
8f60cb |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
8f60cb |
# General Public License for more details.
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
8f60cb |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
8f60cb |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
8f60cb |
#
|
|
Alain Reguera Delgado |
8f60cb |
# ----------------------------------------------------------------------
|
|
Alain Reguera Delgado |
8f60cb |
# $Id$
|
|
Alain Reguera Delgado |
8f60cb |
# ----------------------------------------------------------------------
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
function prepare_updateImages {
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
# Define list of directories that need to be rendered.
|
|
Alain Reguera Delgado |
8f60cb |
local DIRS=$(cli_getFilesList \
|
|
Alain Reguera Delgado |
8f60cb |
${TCAR_WORKDIR}/Identity/Images --maxdepth="1" \
|
|
Alain Reguera Delgado |
8f60cb |
--mindepth="1" --type="d" --pattern=".+/[[:alnum:]]+")
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
# CAUTION: The order in which the image components are rendered is
|
|
Alain Reguera Delgado |
8f60cb |
# very important. For example, in order for theme images to hold
|
|
Alain Reguera Delgado |
8f60cb |
# the branding information the `Identity/Images/Brands' directory
|
|
Alain Reguera Delgado |
8f60cb |
# must be rendered before the `Identity/Images/Themes' directory.
|
|
Alain Reguera Delgado |
8f60cb |
# The reason of this is that brand images are not draw inside
|
|
Alain Reguera Delgado |
8f60cb |
# theme design models themselves, but combined with theme images
|
|
Alain Reguera Delgado |
8f60cb |
# using the ImageMagick tool suite once both have been rendered.
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
# Update list of directories to be sure that brands will always be
|
|
Alain Reguera Delgado |
8f60cb |
# rendered as first image component. Here we remove the brand
|
|
Alain Reguera Delgado |
8f60cb |
# component from the list and add it explicitly on top of all
|
|
Alain Reguera Delgado |
8f60cb |
# other directories in the list.
|
|
Alain Reguera Delgado |
8f60cb |
DIRS="${TCAR_WORKDIR}/Identity/Images/Brands
|
|
Alain Reguera Delgado |
8f60cb |
$(echo "$DIRS" | grep -v 'Identity/Images/Brands')"
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
# Render image components using the list of directories.
|
|
Alain Reguera Delgado |
8f60cb |
cli_runFnEnvironment render ${DIRS} --with-brands
|
|
Alain Reguera Delgado |
8f60cb |
|
|
Alain Reguera Delgado |
8f60cb |
}
|