Initial revision
authorsls <sls>
Sat, 11 Feb 1995 03:54:13 +0000 (03:54 +0000)
committersls <sls>
Sat, 11 Feb 1995 03:54:13 +0000 (03:54 +0000)
README [new file with mode: 0644]
stl.tcl [new file with mode: 0644]

diff --git a/README b/README
new file mode 100644 (file)
index 0000000..a4624fc
--- /dev/null
+++ b/README
@@ -0,0 +1,24 @@
+                       tkinspect, release 5.0.2
+                           (Feb 10, 1995)
+
+This is the 5th release of my browser for Tk programs.  This version
+of tkinspect requires Tk 4.0b2 or better.
+
+To install: type "wish -f install.tcl", fill out the form, and hit the
+install button.
+
+Hopefully you can learn how to use tkinspect by selecting an
+interpreter (via the File, Select Interpreter menu item) and then
+clicking on things.  Unlike tkinspect-4 there is no online help (but
+writing some is on my todo list.)
+
+tkinspect itself is still public domain, you may do whatever you want
+with it.  However, tkinspect uses a hacked down library that I've
+written at LBL, so the files in stl-lite are copyright 1994 Lawrence
+Berkeley Lab.  See stl-lite/COPYRIGHT for the full copyright notice.
+
+Please send me any comments or suggestions you might have, along with
+any bugs that you may encounter.
+
+       -Sam Shen
+       SLShen@lbl.gov
diff --git a/stl.tcl b/stl.tcl
new file mode 100644 (file)
index 0000000..0404886
--- /dev/null
+++ b/stl.tcl
@@ -0,0 +1,14 @@
+#
+# $Id$
+#
+# Stl is my own tcl library.  It's not quite ready to be released.
+# In the stl-lite directory is an extremely trimmed down version.
+# This proc loads it.
+#
+
+proc stl_lite_init {} {
+    global tkinspect_library
+    foreach file {object.tcl filechsr.tcl simpleentry.tcl tk_util.tcl} {
+       source $tkinspect_library/stl-lite/$file
+    }
+}