|
|
641be4 |
#!/bin/bash
|
|
|
641be4 |
#
|
|
|
641be4 |
# svg_getActions.sh -- This function initializes SVG string
|
|
|
a33931 |
# manipulation functionalities, using the action value of
|
|
|
641be4 |
# centos-art.sh script as reference.
|
|
|
641be4 |
#
|
|
|
7cd8e9 |
# Copyright (C) 2009, 2010 Alain Reguera Delgado
|
|
|
641be4 |
#
|
|
|
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.
|
|
|
641be4 |
#
|
|
|
641be4 |
# This program is distributed in the hope that it will be useful, but
|
|
|
641be4 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
641be4 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
641be4 |
# General Public License for more details.
|
|
|
641be4 |
#
|
|
|
641be4 |
# You should have received a copy of the GNU General Public License
|
|
|
641be4 |
# along with this program; if not, write to the Free Software
|
|
|
641be4 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
641be4 |
# USA.
|
|
|
641be4 |
#
|
|
|
641be4 |
# ----------------------------------------------------------------------
|
|
|
641be4 |
# $Id$
|
|
|
641be4 |
# ----------------------------------------------------------------------
|
|
|
641be4 |
|
|
|
641be4 |
function svg_getActions {
|
|
|
641be4 |
|
|
|
a33931 |
# Evaluate action name and define which actions does centos-art.sh
|
|
|
641be4 |
# script supports.
|
|
|
a33931 |
case $ACTIONNAM in
|
|
|
641be4 |
|
|
|
641be4 |
'--update-metadata' )
|
|
|
641be4 |
# Update metadata inside svg files using metadata
|
|
|
641be4 |
# templates.
|
|
|
641be4 |
svg_updateMetadata
|
|
|
641be4 |
;;
|
|
|
641be4 |
|
|
|
ae2c20 |
'--vacuum-defs' )
|
|
|
ae2c20 |
# Remove unused items inside svg files.
|
|
|
ae2c20 |
svg_vacuumDefs
|
|
|
ae2c20 |
;;
|
|
|
ae2c20 |
|
|
|
641be4 |
* )
|
|
|
a33931 |
cli_printMessage "`gettext "The option provided is not valid."`" 'AsErrorLine'
|
|
|
b6a56c |
cli_printMessage "$(caller)" 'AsToKnowMoreLine'
|
|
|
641be4 |
;;
|
|
|
641be4 |
|
|
|
641be4 |
esac
|
|
|
641be4 |
|
|
|
641be4 |
}
|