]> git.plutz.net Git - cgilite/blobdiff - index.cgi
merge with cgi scripts from busy
[cgilite] / index.cgi
index 6359a0ae353e009e9dcbfc8425c52b1244bf6112..9c068b54435e49f0d723e318b71a265f796be681 100755 (executable)
--- 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 <http://www.gnu.org/licenses/>. 
 
-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(){