Blame Scripts/Bash/Functions/Render/Config/Identity/Widgets2/render.conf.sh

44ac45
#!/bin/bash
44ac45
#
44ac45
# render_loadConfig.sh -- This function defines widgets pre-rendering
44ac45
# configuration script.
44ac45
#
44ac45
# Copyright (C) 2009-2011  Alain Reguera Delgado
44ac45
# 
44ac45
# This program is free software; you can redistribute it and/or
44ac45
# modify it under the terms of the GNU General Public License as
44ac45
# published by the Free Software Foundation; either version 2 of the
44ac45
# License, or (at your option) any later version.
44ac45
# 
44ac45
# This program is distributed in the hope that it will be useful, but
44ac45
# WITHOUT ANY WARRANTY; without even the implied warranty of
44ac45
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
44ac45
# General Public License for more details.
44ac45
#
44ac45
# You should have received a copy of the GNU General Public License
44ac45
# along with this program; if not, write to the Free Software
44ac45
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
44ac45
# USA.
44ac45
# 
44ac45
# ----------------------------------------------------------------------
44ac45
# $Id$
44ac45
# ----------------------------------------------------------------------
44ac45
44ac45
function render_loadConfig {
44ac45
44ac45
    # Define rendering actions.
44ac45
    ACTIONS[0]='BASE:renderImage'
44ac45
44ac45
    # Define matching list.
44ac45
    MATCHINGLIST="\
44ac45
    poweredby.svg: \
44ac45
        poweredby-1.sed poweredby-2.sed poweredby-3.sed\
44ac45
        poweredby-4.sed poweredby-5.sed poweredby-6.sed
44ac45
    icon-arrow.svg: \
44ac45
        icon-arrow-right-blue.sed\
44ac45
        icon-arrow-right-green.sed\
44ac45
        icon-arrow-right-orange.sed\
44ac45
        icon-arrow-right-violet.sed\
44ac45
        icon-arrow-right-red.sed\
44ac45
        icon-arrow-right.sed
44ac45
    icon-admonition-alert.svg:      icon-admonition-alert.sed
44ac45
    icon-admonition-info.svg:       icon-admonition-info.sed
44ac45
    icon-admonition-attention.svg:  icon-admonition-attention.sed
44ac45
    icon-admonition-error.svg:      icon-admonition-error.sed
44ac45
    icon-admonition-star.svg:       icon-admonition-star.sed
44ac45
    icon-admonition-idea.svg:       icon-admonition-idea.sed
44ac45
    icon-admonition-doc-old.svg:      icon-admonition-doc-old.sed
44ac45
    icon-admonition-doc-redirect.svg: icon-admonition-doc-redirect.sed
44ac45
    icon-admonition-success.svg: icon-admonition-success.sed
44ac45
    icon-admonition-ruler.svg: icon-admonition-ruler.sed
44ac45
    "
44ac45
}