Blame Functions/Render/render_doLastActions.sh

c979f9
#!/bin/bash
c979f9
#
ab1d67
# render_doLastActions.sh -- This function performs
8af4d8
# last-rendition actions for all files.
c979f9
#
c979f9
# Copyright (C) 2009-2011 Alain Reguera Delgado
c979f9
# 
c979f9
# This program is free software; you can redistribute it and/or
c979f9
# modify it under the terms of the GNU General Public License as
c979f9
# published by the Free Software Foundation; either version 2 of the
c979f9
# License, or (at your option) any later version.
c979f9
# 
c979f9
# This program is distributed in the hope that it will be useful, but
c979f9
# WITHOUT ANY WARRANTY; without even the implied warranty of
c979f9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
c979f9
# General Public License for more details.
c979f9
#
c979f9
# You should have received a copy of the GNU General Public License
c979f9
# along with this program; if not, write to the Free Software
c979f9
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
c979f9
# USA.
c979f9
# 
c979f9
# ----------------------------------------------------------------------
c979f9
# $Id$
c979f9
# ----------------------------------------------------------------------
c979f9
ab1d67
function render_doLastActions {
c979f9
c979f9
    local ACTION=''
c979f9
8af4d8
    # Verify position of file being produced in the list of files been
8af4d8
    # currently processed.
8af4d8
    if [[ $THIS_FILE_DIR != $NEXT_FILE_DIR ]];then
c979f9
8af4d8
        # At this point centos-art.sh should be producing the last
8af4d8
        # file from the same unique directory structure, so, before
8af4d8
        # producing images for the next directory structure lets
8af4d8
        # execute last-rendition actions for the current directory
8af4d8
        # structure. 
8af4d8
        for ACTION in "${LASTACTIONS[@]}"; do
c979f9
8af4d8
            case "${ACTION}" in
c979f9
4b5b21
                groupSimilarFiles:* )
ab1d67
                    render_groupSimilarFiles
8af4d8
                    ;;
8af4d8
            esac
c979f9
8af4d8
        done
c979f9
8af4d8
    fi
c979f9
c979f9
}