1#!/bin/sh
2#
3# Script to invoke the tclkit wiki
4#
5# This is a sample that won't work without obvious modifications
6# to make it match your own wiki.  For info about the tclkit-based wiki
7# called "wikit", go to http://wiki.tcl.tk/wikit/
8
9cd ~welch/kit
10WIKIT_BASE=http://medlicott.panasas.com:8015/wiki
11export WIKIT_BASE
12
13echo $SCRIPT_NAME > /tmp/wiki.log
14
15
16echo HTTP/1.0 200 ok
17if [ ! -f /usr10/home/welch/kit/tclkit-linux-i686 ]; then
18  echo "wiki.cgi not configured"
19  exit 0
20fi
21exec /usr10/home/welch/kit/tclkit-linux-i686 \
22        /usr10/home/welch/kit/wikit.kit  /usr10/home/welch/kit/panasas.tkd
23