X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=action.sh;fp=action.sh;h=0000000000000000000000000000000000000000;hb=456423f02f12ac71d2d14e1abf959dafdc5eb041;hp=caf214c410310da54f6befbe5f95cd6cfa711cf1;hpb=397e40b92e591ae9066dcabb414d8097555beea8;p=cgilite diff --git a/action.sh b/action.sh deleted file mode 100755 index caf214c..0000000 --- a/action.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/zsh - -# Copyright 2014 Paul Hänsch -# -# This file is part of Serve0. -# -# Serve0 is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Serve0 is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with Serve0. If not, see . - -ACTION="$(printf %s "${_GET[action]}" |egrep '^[a-zA-Z0-9_-]+$')" -ACTION="${_EXEC}/actions/${ACTION}.sh" - -if [ -x "$ACTION" ]; then - debug "trying to execute $ACTION" - . $ACTION -else - debug "unable to execute $ACTION" - printf "Location: ?p=error\n\n" -fi -