Blame Scripts/Bash/Functions/Render/render_setThemesDirStructure.sh

Alain Reguera Delgado 64aead
#!/bin/bash
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# render_setThemeDirectoryStructre.sh -- This function verifies
Alain Reguera Delgado 64aead
# theme-specific directory structures using common theme models
Alain Reguera Delgado 64aead
# directory structure as pattern. If there are missing directories inside
Alain Reguera Delgado 64aead
# theme-specific directories, this function will create it.  This is a
Alain Reguera Delgado 64aead
# requisite of rendition process, so be sure to call this function
Alain Reguera Delgado 64aead
# before building the list of render-able theme directories.
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 64aead
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 64aead
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 64aead
# your option) any later version.
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 64aead
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 64aead
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 64aead
# General Public License for more details.
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 64aead
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 64aead
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 64aead
#
Alain Reguera Delgado 64aead
# ----------------------------------------------------------------------
Alain Reguera Delgado 64aead
# $Id$
Alain Reguera Delgado 64aead
# ----------------------------------------------------------------------
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
function render_setThemesDirStructure {
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
    local THEMES_SOURCE_DIR=$(cli_checkRepoDirSource "${1}")
Alain Reguera Delgado 64aead
    local THEMES_TARGET_DIR=$(cli_checkRepoDirSource "${2}")
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
    local THEMES_FILTER=$(cli_getPathComponent ${ACTIONVAL} --repo-dir)
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
    THEMES_TARGET_DIRS=$(cli_getFilesList ${THEMES_TARGET_DIR} \
Alain Reguera Delgado 64aead
        --pattern=".+/[[:digit:]]+$" --maxdepth=2 --mindepth=2 \
Alain Reguera Delgado 64aead
        | grep "${THEMES_FILTER}")
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
    for THEMES_TARGET_DIR in $THEMES_TARGET_DIRS;do
Alain Reguera Delgado 64aead
        cli_printMessage "$THEMES_TARGET_DIR `gettext "directory structure..."`" --as-checking-line
Alain Reguera Delgado 64aead
        cli_runFnEnvironment prepare ${THEMES_SOURCE_DIR} ${THEMES_TARGET_DIR} --directories
Alain Reguera Delgado 64aead
    done
Alain Reguera Delgado 64aead
Alain Reguera Delgado 64aead
}