|
|
c979f9 |
#!/bin/bash
|
|
|
c979f9 |
#
|
|
|
9b8686 |
# render_doPostActions.sh -- This function performs post-rendition
|
|
|
9b8686 |
# actions for all files.
|
|
|
c979f9 |
#
|
|
|
2d3646 |
# Copyright (C) 2009, 2010, 2011 The CentOS Project
|
|
|
fa95b1 |
#
|
|
|
fa95b1 |
# This program is free software; you can redistribute it and/or modify
|
|
|
fa95b1 |
# it under the terms of the GNU General Public License as published by
|
|
|
dcd347 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
|
dcd347 |
# your option) any later version.
|
|
|
fa95b1 |
#
|
|
|
74a058 |
# This program is distributed in the hope that it will be useful, but
|
|
|
74a058 |
# 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
|
|
|
dcd347 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
7ac5a5 |
#
|
|
|
c979f9 |
# ----------------------------------------------------------------------
|
|
|
c979f9 |
# $Id$
|
|
|
c979f9 |
# ----------------------------------------------------------------------
|
|
|
c979f9 |
|
|
|
ab1d67 |
function render_doPostActions {
|
|
|
c979f9 |
|
|
|
c979f9 |
local ACTION=''
|
|
|
c979f9 |
|
|
|
9b8686 |
# Define common post-rendition actions.
|
|
|
9b8686 |
if [[ $FLAG_GROUPED_BY != '' ]];then
|
|
|
9b8686 |
POSTACTIONS[((++${#POSTACTIONS[*]}))]="groupSimilarFiles:${FLAG_GROUPED_BY}"
|
|
|
9b8686 |
fi
|
|
|
9b8686 |
|
|
|
9b8686 |
# Execute common post-rendition actions.
|
|
|
c979f9 |
for ACTION in "${POSTACTIONS[@]}"; do
|
|
|
c979f9 |
|
|
|
c979f9 |
case "${ACTION}" in
|
|
|
c979f9 |
|
|
|
ddd73c |
groupSimilarFiles:* )
|
|
|
ab1d67 |
render_groupSimilarFiles
|
|
|
c979f9 |
;;
|
|
|
c979f9 |
|
|
|
c979f9 |
esac
|
|
|
c979f9 |
|
|
|
c979f9 |
done
|
|
|
c979f9 |
|
|
|
c979f9 |
}
|