#! /bin/sh
# One line description: bridging shell script (readonly)

# cut over to perl using wiki config in curdir
# used to reduce need to name files emding in .cgi or .pl

# <wiki editors "(none)" "noteditor" >
# do not put stuff in this file if you can help it.
# all WEBs linked together to make maint of them from single place

# stderr back to browser to catch aborts
exec 2>&1

SCRIPT=`basename ${SCRIPT_NAME}`
export SCRIPT

# if there are fixups, do them
if [ -f ./._wiki_self_heal.cgi ] ; then
  . ./._wiki_self_heal.cgi
 fi
 
echo "Content-type: text/html
"
DID_CONTENTTYPE=1
export DID_CONTENTTYPE

perl ._wiki_config.pl
