X-Git-Url: http://git.plutz.net/?p=cgilite;a=blobdiff_plain;f=index.cgi;fp=index.cgi;h=9c068b54435e49f0d723e318b71a265f796be681;hp=6359a0ae353e009e9dcbfc8425c52b1244bf6112;hb=49831f4301899b008b94f590b4c9765f76b4c0f0;hpb=fa5c15e6e36107359d926ece94df2b614f37a37b diff --git a/index.cgi b/index.cgi index 6359a0a..9c068b5 100755 --- a/index.cgi +++ b/index.cgi @@ -17,7 +17,9 @@ # You should have received a copy of the GNU Affero General Public License # along with shcgi. If not, see . -export LC_ALL=C +export LC_ALL=C LANG=C +DBG_ENABLED=false +DBG_FILE=/dev/stderr # this program is supposed to be symlinked into a http root directory # we will use the http root as object storage (data directory) and call sub @@ -28,16 +30,24 @@ real="$(readlink -f $call)" _DATA="$(dirname "$call")" #storage directory _EXEC="${real%/shcgi/index.cgi}" #execution directory +# put debug options in the local.opts file +[ -r "$_DATA/local.opts" ] && . "$_DATA/local.opts" + # basic functions -die() { - echo "$@" >&2 - exit 1 +debug() { #change to false to disable debugging + if [ "$DBG_ENABLED" = true -a -n "$*" ]; then + echo -E "$@" >>"$DBG_FILE" + elif [ "$DBG_ENABLED" = true -a -z "$*" ]; then + tee -a "$DBG_FILE" + elif [ -z "$*" ]; then + cat + fi } -debug() { #change to false to disable debugging - #true && echo "$*" >>debug - true && [ -n "$*" ] && echo -E "$*" >>/dev/stderr - true && [ -z "$*" ] && tee /dev/stderr +die() { + debug "$@" + echo -E "$@" >>/dev/stderr + exit 1 } data_dirs(){