home *** CD-ROM | disk | FTP | other *** search
/ Internet Tools (CDV) / cdv_internet_tools.iso / KATALOG / ARCHIV / PROG / W21452.ZIP / readme.txt < prev   
Encoding:
Text File  |  1999-02-03  |  2.3 KB  |  65 lines

  1. 1 PURPOSE OF THE PROGRAM
  2.  
  3. DustMote is a web server. I wrote it in the Tcl language because Tcl is
  4. free, easy, stable, available on many platforms, and well documented. It
  5. is true that Tcl is not remarkably speedy, but it is fast enough for my
  6. site, and, though not multi-threaded, it can handle many clients at the
  7. same time, asynchronously, by the use of non-blocking channels.
  8.  
  9. Of course, there are now many freeware server programs to be downloaded
  10. from the web, and most of them are sturdy professional jobs that go like
  11. lightning and swarm with useful features. The businessperson ought to
  12. use one of those. I am an amateur, so I had to write the program myself.
  13. There are nearly no features. DustMote merely serves files, both text
  14. and image. I offer it to my fellow amateurs, so they can ignore other
  15. people's features and think up new features that have never been thought
  16. up before.
  17.  
  18.  
  19. 2 INSTALLATION
  20.  
  21. Open dustmote.tcl in a program editor. Change the definition of "root"
  22. to suit your computer. Be sure to use forward slashes, not backward. Tcl
  23. will make the correct changes for your platform at run time.
  24.  
  25. If you plan to use tclsh instead of wish, uncomment the vwait statement
  26. at the bottom of the file. Macintosh users ought to use wish, so that
  27. they can easily stop the program by typing in an exit command; they
  28. ought not to use the vwait statement.
  29.  
  30. This version contains two features which some users may wish to delete,
  31. so as to get more speed. To delete the "peer" feature: delete the peer
  32. procedure, the call to peer, and the setting of the peerCount variable.
  33. To delete the "mime" feature: delete the mime procedure, the call to
  34. mime, and the setting of the mimeType variables. Also: the line reading
  35.  
  36. puts stdout " $line"
  37.  
  38. in the readIt procedure may be deleted or commented out.
  39.  
  40.  
  41. When you have finished editing, just "save" the program and use wish or
  42. tclsh to source it. If your platform has command lines, you may also
  43. start up tclsh mentioning dustmote.tcl on the command line.
  44.  
  45.  
  46. 3 STATUS OF THE PROGRAM
  47.  
  48. This program is in the public domain.
  49.  
  50.  
  51. 4 DISTRIBUTION STATUS
  52.  
  53. DustMote is freely distributable.
  54.  
  55.  
  56. 5 CONTACTING THE AUTHOR
  57.  
  58. Please E-mail complaints to hmk@nadn.navy.mil and do not try to spare my
  59. feelings. The date of this revision is October 18, 1998.
  60.  
  61.  
  62. Yours truly,
  63.  
  64. Harold Kaplan.
  65.