home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / index / tcl.txt < prev    next >
Text File  |  1997-09-22  |  2KB  |  64 lines

  1. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. INDEX ENTRY FOR TCL/TK:
  3. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  4.  
  5. Name: Tcl/Tk - Tool Command Language
  6.  
  7. Version: 8.0
  8.  
  9. Author(s):  John Ousterhout <john.ousterhout@eng.sun.com>
  10.  
  11.    John Ousterhout
  12.    Sun Microsystems Laboratories
  13.    john.ousterhout@eng.sun.com
  14.  
  15. On the CD-ROM in: sysadm/tcl.tar
  16.  
  17. Ftp source: ftp.sunlabs.com:/pub/tcl
  18.             ftp.neosoft.com:/pub/tcl (contributed code and docs)
  19.  
  20. Size on the CD: 3.6 MB (compressed)
  21.  
  22. Description:
  23.  
  24.     Tcl (Tool Command Language) is an interpreted scripting  language.
  25.     It has the power of being "embeddable" in other C through calls to
  26.     its interpreter library. This makes it extendible to other
  27.     applications, the most noteworthy of which is "tk" (included in
  28.     the CD). tk is a general-purpose GUI toolkit making it much easier
  29.     to implement Graphical User Interfaces (GUIs). tk was originally
  30.     developed for an X environment, but both tcl and tk have been
  31.     ported to PCs and Macs.
  32.  
  33.     On Tcl 8.0:
  34.  
  35.     Tcl 8.0 is a major new release that replaces the core of the
  36.     interpreter with an on-the-fly bytecode compiler to improve
  37.     execution speed. It also includes several other new features such
  38.     as namespaces and binary I/O, plus many bug fixes. The compiler
  39.     introduces a few incompatibilities that may affect existing Tcl
  40.     scripts; the incompatibilities are relatively obscure but may
  41.     require modifications to some old scripts before they can run
  42.     with this version. The compiler introduces many new C-level APIs,
  43.     but the old APIs are still supported.
  44.  
  45.     -- Quoted from the 8.0 README file
  46.  
  47.     On Tk 8.0:
  48.  
  49.     Tk 8.0 is a major release with significant new features such as
  50.     native look and feel on Macintoshes and PCs, a new font
  51.     mechanism, application embedding, and proper support for
  52.     Safe-Tcl. There should be no backward incompatibilities in Tk 8.0
  53.     that affect scripts.
  54.  
  55.     Note: with this release the Tk version number skips from 4.2 to
  56.     8.0. The jump was made in order to synchronize the Tcl and Tk
  57.     version numbers.
  58.  
  59.     -- Quoted from the 8.0 README file
  60.  
  61. Advertised architectures: Not listed.
  62.  
  63. Prerequisites: C compiler
  64.