#!/bin/sh
# webtk - HTML editor
#
# Copyright (c) 1996 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Start a the HTML editor/browser
# \
exec /net/bisque.eng/export/vol0/tcl/install/5.x-sparc/bin/wish4.2 "$0" ${1+"$@"}

if {$tk_version < 4.1} {
    Stderr "WebEdit requires Tk 4.1, this is only $tk_version"
    exit 1
}
# The following is patched in by the installation script, webtk.install

#CONFIGURATION
set wish /net/bisque.eng/export/vol0/tcl/install/5.x-sparc/bin/wish4.2
set WebTk(version) {1.0beta5 12/4/96}
set maintainer Brent.Welch@eng.sun.com
set WebTk(server) webcache1.eng
set WebTk(port) 8080
set WebTk(library) /net/bisque.eng/export/vol0/tcl/install/lib/webtk1.0
set WebTk(bin) /net/bisque.eng/export/vol0/tcl/install/bin
set WebTk(html) /net/bisque.eng/export/vol0/tcl/install/lib/webtk1.0/html
set WebTk(images) /net/bisque.eng/export/vol0/tcl/install/lib/webtk1.0/images
set WebTk(cache) /tmp/webtkcache
#END CONFIGURATION

lappend auto_path $WebTk(library)

#set WebTk(home) [file dirname $here]


WebTk

