home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / ibmtsoqueens / ts2ker.msg < prev    next >
Internet Message Format  |  2020-01-01  |  7KB

  1. Date: 05/07 05:43:19
  2. From: M70B@CBEBDA3T
  3. Subject: New TSO Kermit in Pascal
  4.  
  5. Finally my version of TSO-KERMIT is finished.  I read in a file on the
  6. KERMIT-server that you're expecting my version since a year.  I have had my
  7. program for beta-test since Nov 85, but the guys were not so sensitive to
  8. inform me about their experiences.  But on our installation we run it with
  9. great success.
  10.  
  11. There is a total of 7 files, containing the following:
  12.  
  13.      * TS2DS.ASM     Some ASM routines for TSODS command
  14.      * TS2DS.INS     Installation procedure for TSODS command
  15.      * TS2DS.PLI     Some PL/I rotines for TSODS command
  16.  
  17.      # TS2KER.INS    Installation of TSO/KERMIT
  18.      # TS2KER.DOC    User's Guide of TSO/KERMIT
  19.      # TS2KER.ASM    Some ASM routines for KERMIT
  20.      # TS2KER.PAS    KERMIT main program
  21.  
  22. *) The TSODS command is used within the KERMIT program, to redirect
  23.    TSO command output into a temporary file, accessible from the PASCAL
  24.    main program.
  25.  
  26.    Fritz Buetikofer
  27.    Amt fuer Informatik des Kt. Bern
  28.    Laengassstrasse 51
  29.    CH-3012 BERN (Switzerland)
  30.    BITNET: M70B@CBEBDA3T
  31.  
  32. [Ed. - The files are installed in KER:TS2*.* on CU20B, and TS2* * on CUVMA.
  33. This version is based in part on the Pascal/VS Kermit for VM/CMS by Victor
  34. Lee of Queen's University.  This version of Kermit is more advanced than the
  35. old assembler version from the University of Chicago (KER:TSO*.*); it allows
  36. transfer of binary files, includes 8th-bit prefixing, wildcard send, repeat
  37. count compression (receive only), alternate block checks, server mode, etc.
  38. It runs only on line-mode ASCII connections through a 3705-style front end;
  39. there is currently no support for Series/1-style protocol converters.]
  40.  
  41. ------------------------------
  42.  
  43. Date: 23 Sep 86  14:15 CET
  44. From: Fritz Buetikofer <M70B@CBEBDA3T.BITNET>
  45. Subject: New Release 1.6 of KERMIT/TSO
  46.  
  47. Since May 86 some bugs in the version 1.4 have appeared. And furthermore
  48. some new commands have been implemented:
  49.  
  50.  * Bugs fixed and error handling improved in the routine which checks
  51.    for the presence of a file (Check_Dsn).
  52.  * New command TAKE to execute KERMIT-commands from within a file.
  53.  * When displaying STATUS screen, you will find a notice, whether
  54.    the INIT-file (KERMIT.SETUP) has been found or not.
  55.  * New command SET ATOE/ETOA to modify the ASCII <-> EBCDIC translation
  56.    tables, while running KERMIT.
  57.  * New command SET INCOMPLETE, to specify what has to be done with a
  58.    file when user aborts the transfer.
  59.  * Update of SEND command, so that the user may specify a filename,
  60.    which is sent to the micro (instead of generating one automatically).
  61.  
  62. For the very next future, I'm going to implement a STATISTICS command,
  63. handling of attribute packets and (maybe) long packets.  All modifications
  64. and improvements I made are inside the pascal source.  All I had to do is to
  65. adapt the documentation file to all changes.
  66.  
  67. Regards to all TSO freaks, F.Buetikofer
  68.  
  69. ------------------------------
  70.  
  71. Date: Tue, 3 Feb 1987
  72. From: Fritz Buetikofer <M70B@CBEBDA3T.BITNET>
  73. Subject: New Release 2.0 of Kermit/TSO
  74.  
  75. Good new year ... good news !!!
  76.  
  77. Finally I found time to implement long packets into Kermit/TSO !
  78.  
  79. After reading thorougly the documentation of long packets and sliding
  80. windows, I decided to try an implementation of long packets only,
  81. because you don't get any full duplex channels on a TSO system
  82. (Here I refer to the letter of Roger Fajman of Tue, 30 Jul 1985).
  83. To my astonishment the changes for long packets were not so many !!
  84. And after one day of testing I had the first transfer with long packets
  85. running. As we are connected via a local area network to the host,
  86. I decided to start with a maximum packet size of 1K, which seems to be
  87. wide spread. Then I thought it would be useful, to set the checktype
  88. automatically to 3 (CRC), if the packet size exceeds a certain limit,
  89. which I put to 256 chars. In this period I found severe problems
  90. in this Kermit version, because it sent wrong checktypes in certain
  91. cases. So I had to fix this too ...
  92.  
  93. At this point I'd like to send a 'thank you' to the makers of Kermit-MS.
  94. As the latest test version of Kermit-MS supports long packets, I had
  95. a good test partner for my version.
  96.  
  97. In the past time I had some questions about the extended ascii table,
  98. supported in my Kermit version. I think I should explain a little bit
  99. more what I mean with this feature:
  100.    In early days of filetransfer, people usually sent programs to and
  101. fro, and these programs normally included only characters in the range
  102. of ASCII 32..126. And all text formating was done on the micros. But
  103. later, people wanted to share the text documents with others. And
  104. these texts include now simple graphics characters, greek chars and in
  105. Europe our special characters, the 'Umlaute'! There I thought it should
  106. be possible to specify on the mainframe side a table (or maybe only
  107. a table-extension). And in the original CMS version of Victor Lee I
  108. found this table and implemented a full ASCII table according to the
  109. character set of the IBM PC. When I tranfer files from my MAC I have to
  110. modify this table using an external file with SET ATOE's.
  111.  
  112. Well, these are all notes I'd like to append to this new Kermit version.
  113. Changes have been made mainly to the Pascal source, the assembler
  114. subroutines to be able to handle 1K packets instead of 94 chars, in
  115. the documentation file and some little modifications in the install
  116. procedure ... so you have to get all TS2KER files !!
  117.  
  118. I hope you enjoy this new version and take profit of the increased
  119. transfer rate of up to 200% (with long packets) !!
  120.  
  121. -----Fritz
  122.  
  123. ------------------------------
  124.  
  125. Date:        18 Sep 87 09:47:24 ADT
  126. Subject:     Yet another version of ts2 kermit
  127. From:        "Michael J. MacDonald" <MIKEMAC@UNB>
  128.  
  129.   I have modified ts2 kermit so that it works through the ibm3705 and
  130.   the ibm7171 in transparent mode.  If your interested I will package it
  131.   into a reasonable form and send it to you.
  132.  
  133.  Michael MacDonald
  134.  Software Specialist, School of Computer Science
  135.  University of New Brunswick
  136.  Po. Box 4400
  137.  Fredericton, New Brunswick
  138.  CANADA    E3B 5A3
  139.  
  140.  (506) 453-4566
  141.  
  142.  Netnorth/BITNET: MIKEMAC @ UNBMVS1
  143.  
  144. (This message was forwarded to Fritz, and Mike was encouraged to get together
  145. with Fritz to combine their work.)
  146.  
  147. ------------------------------
  148.  
  149. Date: 01 OCT 87   15:13  GMT
  150. From: M70B@CBEBDA3T.BITNET  (F.Buetikofer, Help desk UNI Bern)
  151. Subject: Maintenance Release 2.3 of TSO kermit
  152. Keywords: TSO Kermit
  153.  
  154. After a hot summer while I did not very much additional work on my
  155. TSO-Kermit, I encountered some hidden bugs ... and fixed them.
  156.  
  157. The biggest problem was a system connected with 300 baud (!) to our
  158. mainframe.  TSO Kermit didn't check for the right Y packet to come in, and
  159. continued sending. This should be fixed now.  Another not official goodie is,
  160. that my kermit should understand attribute packets (they are logged to the
  161. KERMIT.LOG file, so I can analyse what's coming from the micro).
  162.  
  163. I'm appending the hottest version of Kermit (Pascal and documentation)
  164. so you can put it in the distribution library.
  165.  
  166. Thanks and regards ... Fritz
  167.  
  168. [Ed. - And thanks to you!  The new files are in KER:TS2KER.PAS and
  169. KER:TS2KER.DOC.  The other KER:TS2*.* files remain unchanged.]
  170.  
  171. ------------------------------
  172.  
  173.