home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / cdccyber / cd3ker.ann next >
Text File  |  2020-01-01  |  5KB  |  111 lines

  1. CDC Cyber Kermit Version 3 Available.                                   3/19/87
  2.   
  3. A new version of Kermit is available for CDC Cybers running NOS.  It is derived
  4. from the U of Texas Fortran 5 Kermit, with NOS/BE and UT2D support removed.  It
  5. contains the following new features and changes (items 8 through 10 are new for
  6. Version 3.3.) 
  7.   
  8. 1.  Wildcard file names on the SEND command and server GET command.  A '*'
  9.     stands for any 0 or more characters.  A '?' stands for any one character. 
  10.   
  11.     For example: 
  12.          *BUG      All files ending in BUG.
  13.          *DOG*     All files containing DOG.
  14.          F*        All files starting with F.
  15.          F?X*      All files whose names start with F and contain X in the
  16.                    the third position, followed by 0 or more characters.
  17.   
  18. 2.  Local and permanent file SEND and server GET.  If no local files match the
  19.     request, the user's permanent file catalog is searched.
  20.   
  21.     If the specified file name is preceeded by 'L:', only local files are
  22.     sent.  If preceeded by 'P:', only permanent files are sent.
  23.   
  24. 3.  A DIRECTORY command and server REMOTE DIRECTORY command.  Lists local
  25.     (by default) or permanent file names.  Accepts wildcards and/or L: and
  26.     P: specifications (above).
  27.   
  28. 4.  Automatic recognition of DISPLAY CODE, 6/12 ASCII, and 8/12 ASCII file
  29.     text modes on SEND.  Receives 6/12 ASCII by default.
  30.   
  31.     The SET FILE-MODE command allows BINARY and TEXT file types.
  32.   
  33.     SET TEXT-MODE allows AUTO to set automatic recognition (above), or
  34.     DISPLAY, 6/12-ASCII, or 8/12-ASCII to force a specific character
  35.     translation for TEXT file mode.
  36.   
  37.     BINARY file mode stores characters as 7.5 8-bit characters per 60 bit
  38.     Cyber word.
  39.   
  40. 5.  Supports repeated character compression (if the micro Kermit allows). 
  41.   
  42. 6.  Supports long file transfer packets up to 1000 characters (if the
  43.     micro Kermit allows).
  44.   
  45.     Use the SET RECEIVE PACKET 1000 command within Cyber Kermit to enable
  46.     long packet receive.  To send long packets, enter the above command in 
  47.     your micro Kermit, if it supports long packets.
  48.   
  49. 7.  Cyber Kermit no longer affects the parity of your terminal connection.
  50.     If you have trouble sending or receiving files, check your parity
  51.     setting.  On the Cyber, the parity at login is set to NONE.  Note that 
  52.     changing your terminal class (TC parameter) via TRMDEF or %TC=?? will
  53.     reset your parity setting.
  54.   
  55. 8.  ***New for V3.3***   (May, 1987)
  56.     Kermit will take commands from the file KERMINI at startup time.  You
  57.     may use this to set non-standard parameters, start up an server
  58.     automatically, etc.  Kermit will first look for a local KERMINI, then
  59.     for a permanent file KERMINI.
  60.   
  61. 9.  ***New for V3.3***
  62.     There is now a   TAKE filename  command to direct Kermit to read its 
  63.     commands from a local or permanent file.  It searches for local and
  64.     permanent files like the SEND command, above.
  65.   
  66. 10. ***New for V3.3***
  67.     When files are being received by the Cyber, Kermit will now attempt to
  68.     use up to 3 characters of the micro's filename's extension as part of the
  69.     Cyber's file name.  This allows file transfers of the form   LONGNAME.* 
  70.     to proceed with fewer file name conflict problems.
  71.   
  72. Please contact me if you have any problems with Cyber Kermit Version 3.
  73.   
  74.       Steve Roseman 
  75.       Lehigh University
  76.       LUSGR@LEHICDC1.BITNET
  77.       (215) 758-3987
  78.  
  79. ------------------------------
  80.  
  81. Date:     Wed, 30 Sep 87  14:15:20 EDT
  82. From:     op%VIRGINIA.BITNET@CUVMA.COLUMBIA.EDU (Olaf Pors  804-924-0633)
  83. Subject:  Updates for CDC Cyber NOS Kermit (CD3KER)
  84.  
  85. The files CD3KER.INS and CD3KER.MOD contain feature addition to CDC NOS
  86. Kermit (the CD3 Kermit).  CD3KER.INS is a replacement for that file on the
  87. Kermit distribution.  CD3KER.MOD is the only source code you need to upgrade
  88. CD3 Kermit from version 3.2 to the one I created (3.3); this file should be
  89. added to the rest of the CD3KER files on the distribution, so it can be
  90. applied using the CDC UPDATE utility.  UPDATE works with a base file
  91. (usually quite large) and applies modifications (usually small) to create a
  92. file for compilation.  This is the way that CDC maintains their system
  93. software, and I think CD3 Kermit should be handled this way too; i.e., have
  94. a large, unchanging base file and a small modification on the distribution.
  95. New changes would be added to the modification file until it gets too
  96. unwieldy, at which time a new base file would be created.  The CD3KER.INS
  97. file I've supplied assumes the (possible) existence of such a modification
  98. file.  See also the comments in CD3KER.INS.  All the documentation needed
  99. concerning my enhancements (upward compatible) is at the beginning of the
  100. CD3KER.MOD file.
  101.  
  102. [Ed. - Thanks, Olaf!  And apologies for taking so long to bring your
  103. contribution to public light.  Olaf's changes include support for 8/12 ASCII
  104. binary files, optional kinds of EOF conversion, and support for CDCNET.
  105. Unfortunately, in August 1987 (several months before you submitted this
  106. one), Steve Roseman of Lehigh University (LUSGR@LEHICDC1.BITNET) submitted
  107. another, different, version 3.3 of this program, announced in Info-Kermit V6
  108. #17.  Your files have been put in KER:CD3KER.IN2 (so as not to interfere
  109. with Steve's CD3KER.INS), and CD3KER.MOD.  Meanwhile, let's hope someone
  110. will be able to reconcile the two versions and maybe produce a version 3.4?]
  111.