home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / cksbwr.txt < prev    next >
Text File  |  2020-01-01  |  5KB  |  127 lines

  1. CKUKER.BWR          "Beware File" for C-Kermit Version 5A        -*- text -*-
  2.  
  3.                                ATARI ST VERSION
  4.  
  5. Applies to 5A(188)
  6. Last update: Sat Nov 28 20:49:23 1992
  7.  
  8. Authors:
  9.   Bruce J. Moore, Allen-Bradley Company.
  10.   Frank da Cruz, Christine M. Gianone, Columbia University.
  11.  
  12.   Copyright (C) 1985, 1992, Trustees of Columbia University in the City of New
  13.   York.  Permission is granted to any individual or institution to use this
  14.   software as long as it is not sold for profit.  This copyright notice must be
  15.   retained.  This software may not be included in commercial products without
  16.   written permission of Columbia University.
  17.  
  18. Report problems, suggestions, fixes, etc, to Frank da Cruz:
  19.  
  20.   Internet: fdc@watsun.cc.columbia.edu  (or)  fdc@columbia.edu
  21.   BITNET/EARN: FDCCU@CUVMA
  22.  
  23. Columbia University Center for Computing Activities
  24. 612 West 115th Street, New York, NY  10025  USA
  25.  
  26.  
  27. DOCUMENTATION
  28.  
  29. C-Kermit 5A is documented in the book "Using C-Kermit" by Frank da Cruz
  30. and Christine M. Gianone, Digital Press, Burlington, MA, USA.  Digital
  31. Press ISBN: 1-55558-108-0; Prentice-Hall ISBN: 0-13-037490-3.  Price: US
  32. $34.95.  In USA, call DECdirect at 1-800-344-4825, refer to order number
  33. EY-J896E-DP.  Available: January 1993.
  34.  
  35.  
  36. GENERAL
  37.  
  38. The Atari ST specifics of C-Kermit 5A were programmed by Bruce J. Moore,
  39. Software Project Engineer, Allen-Bradley Company, <mooreb@cs.hh.ab.com>.
  40. Atari ST C-Kermit is compiled using Mark Williams C 3.0.6 (which is no longer
  41. supported for the Atari), and tested under GEMDOS 1.0 - 1.6.  See CKSINS.DOC
  42. for installation instructions.
  43.  
  44. Atari ST Kermit can be invoked directly from the desktop or from within a
  45. character-mode shell.  A shell is not furnished with the system, but
  46. Mark Williams msh or the public domain shells, Gulam and bash, are widely
  47. used.  Shell-related items (environment variables, DIRECTORY command, shell
  48. escapes like "!" and RUN, etc) work only when C-Kermit is run from a shell.
  49.  
  50. The directory separator is backslash (\), which is also the prefix character
  51. used C-Kermit's command processor for introducing backslash codes, variables,
  52. etc.  File specifications used in Atari ST C-Kermit commands must have
  53. their backslashes doubled, for example "send c:\\mydir\\oofa.txt".
  54.  
  55.  
  56. UNIMPLEMENTED C-KERMIT FEATURES:
  57.  
  58.   The DIAL command
  59.   The SCRIPT command
  60.   Character-set translation
  61.   Automatic parity detection
  62.   Network support
  63.   The CLEAR command doesn't work
  64.   PUSH, RUN, !, or @ with no arguments do not work.
  65.   PUSH, RUN, !, or @ with arguments work, but do not search the PATH,
  66.     (at least not under MSH).
  67.  
  68. DIAL and SCRIPT are omitted because of the lack of an alarm() service in
  69. GEMDOS.
  70.  
  71.  
  72. CHARACTER SETS
  73.  
  74. C-Kermit's character-set translation is not included in Atari ST C-Kermit.
  75. Adding it is only a matter of creating CKSXLA.H and CKSXLA.C files similar to
  76. the Macintosh CKMXLA.H and CKMXLA.C files, but with new translation tables for
  77. the Atari ST character set, and then rebuilding the program without the
  78. NOCSETS compilation option.
  79.  
  80. The Atari ST character set (at least in the US model) is similar to an IBM PC
  81. code page (which one?), with the following differences:
  82.  
  83.       B               C               D
  84.  
  85.   0       a tilde         y umlaut        samekh
  86.   1       o tilde         IJ              ayin
  87.   2       O slash         aleph           pe
  88.   3       o slash         beth            sade
  89.   4       oe              gimel           qoph
  90.   5       OE              daleth          resh
  91.   6       A aigu          he              sin
  92.   7       A tilde         vav             tav
  93.   8       O tilde         zayin           nun
  94.   9       umlaut          heth            kaph
  95.   A       grave           teth            mem
  96.   B       dagger          yod             pe
  97.   C       paragraph       kaph            sade
  98.   D       copyright       lamedh          Integral sign with circle
  99.   E       register TM     mem             circumflex
  100.   F       TM              nun             infinity
  101.  
  102.   E7      Lowercase tau
  103.   EC      Integral sign with circle
  104.   F9      No idea
  105.   FA      Centered dot
  106.   FC      Set intersection
  107.   FD      Superscript 2
  108.   FE      Superscript 3
  109.   FF      Macron
  110.  
  111. Your console (keyboard and screen) must be configured to use these characters.
  112. Within C-Kermit, you must SET COMMAND BYTESIZE 8 to use them at command level,
  113. as well as SET TERMINAL BYTESIZE 8 to use them during CONNECT mode.
  114.  
  115.  
  116. SERVER MODE
  117.  
  118. C-Kermit ST can act a server.  You must SET SERVER DISPLAY ON, and SET SERVER
  119. TIMEOUT.  If this is not done, then one cannot terminate the server.  An idle
  120. server can only be terminated when a timeout occurs. This means if the server
  121. timeout is set to 15 seconds, one might have to wait as long as 15 seconds
  122. before the Control-C is detected.  Exiting the program is recommended after a
  123. Control-C from an idle server.  The Atari ST C-Kermit server does not
  124. implement the MAIL and REMOTE PRINT commands.
  125.  
  126. (End of CKSKER.BWR)
  127.