home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / d / prime.upd < prev    next >
Text File  |  2020-01-01  |  8KB  |  152 lines

  1. PRIME.UPD                   PRIME KERMIT 8.00                   January 1990
  2.  
  3. The documentation included will show users the new commands available.
  4. Below are some of the main changes, but for more details it will be
  5. necessary to look at the code. Options on the command line and to parameter
  6. settings may be abbreviated to some extent; i.e. YES may be given as Y, OK,
  7. or just Carriage Return; FILE_TYPE my be abbreviated to FT, and so on.
  8.  
  9. The following changes are in the new version of Kermit :
  10.  
  11. 1) Many commonly used constants have been put into COMMON, these include
  12.    character constants, CTRL-A in 7-bit and 8-bit ASCII, etc.
  13.  
  14. 2) All of the code has been looked at, and "cosmetically" tidied up.
  15.  
  16. 3) Unused subroutines/functions have been removed; others have been
  17.    replaced as in-line code; and yet others re-written to make more use of
  18.    COMMON variables.
  19.  
  20. 4) "Transparent" mode has been made available. This is basically when NO
  21.    parity is used; 8-bit parity checks are done. The code was there before
  22.    but not available to the user (why?). This also means that parity can
  23.    be SET or given on the command line itself.
  24.  
  25. 5) Most of the previous code did not check for ANY error messages from
  26.    the PRIMOS subroutines used - I think this is where most of the bugs
  27.    came from. Nearly all of the subroutines are now checked for errors
  28.    and appropriate action is taken. Meaningful messages will be displayed
  29.    to the user, or a number given. A number means real big trouble!
  30.    Some of the old subroutines have been replaced by new ones, and some
  31.    old code replaced by PRIMOS subroutines. Only inconsequential subroutines
  32.    have been left un-checked, e.g. file-units not closed, but since
  33.    file-units are dynamically allocated it doesn't matter whether they are
  34.    closed or not.
  35.  
  36. 6) The use of pathnames has been extensively adopted. This will allow more
  37.    flexibility for the user; they don't have to continuously change
  38.    directories now. The code is also more robust, since the subroutines will
  39.    easily handle pathnames, rather than the code having to attach all
  40.    over the place and then to attach back (this is asking for trouble).
  41.  
  42. 7) The LOG file is now checked to see if it is already in use. The CLOSE
  43.    command has been added, so that the user may close it now if they wish.
  44.  
  45. 8) The type of file system object being SENT is now checked. It is only
  46.    possible to send SAM, DAM, or CAM files. An error message is displayed
  47.    if the user tries to send a directory of any sort.
  48.  
  49. 9) There are more command line options available; -HELP will show you them.
  50.    The help message has been tidied up, and -USAGE added just to show the
  51.    syntax. The options may also be used before entering interactive mode.
  52.    The options -SEND, -RECEIVE, and -SERVER are checked for compatability;
  53.    and if none of them are present then interactive mode is entered.
  54.    The values of any command line options are also checked for syntax; the
  55.    code is now more robust.
  56.  
  57.   10) Some subroutines/functions have had their arguments changed or removed;
  58.    some subroutines have become functions and vice-versa.
  59.  
  60.   11) The INCOMPLETE variable may now be SET. This will/will not keep files
  61.    that arrive incomplete.
  62.  
  63.   12) The POUND variable may also be SET. This will convert pound signs
  64.    correctly for files sent to and from DOS machines. If it causes problems,
  65.    then SET it to OFF.
  66.  
  67.   13) The CONVERT command has been made available. This will "convert" a file
  68.    to PRIME format. Basically it sets the 8th-bit throughout the file, and
  69.    sets the end of line correctly to line-feed. The code was there before,
  70.    but not shown in HELP at all.
  71.  
  72.   14) File attributes may be used now by Kermit - this is SETtable. For files
  73.    sent, the file size is sent in bytes and Kbytes; and the files date/time
  74.    of creation is sent. For files received the file size is checked against
  75.    the available disk space quota; the DTC is set if present and the user
  76.    has O or P rights in the directory, and the file type is used to determine
  77.    the method of storage. Note that according to the Protocol the DTC should
  78.    be used, NOT the date/time last modified which was previously coded.
  79.    Any files which are too big to be sent or received result in a warning
  80.    message. If wildcards are used then it will continue with smaller files.
  81.    This keeps in line with the Protocol. The last part is also useful when
  82.    transfering large files; previously the whole thing would just bomb out,
  83.    and the user would have to start again.
  84.  
  85.   15) The TAKE command may now be nested to 25 levels. Previously the user
  86.    would simply tread on the previous file with no warning or anything!
  87.    POP is available to exit the current TAKE file, and return to the
  88.    previous file - if any. Also STOP has been coded to exit ALL of the
  89.    users TAKE files.
  90.  
  91.   16) More generic commands are available; Disk USAGE (or SPACE), RENAME, COPY,
  92.    WHO (although this isn't too good), and SEND (or MESSAGE).
  93.  
  94.   17) Some of the messages displayed have been "cosmetically" changed.
  95.  
  96.   18) Sending files with DOS wildcards from the PRIME is a dubious area since
  97.    it requires knowing what the user MEANS! The special case "*.*" is taken
  98.    to mean send ALL files, not just ones of 2 components. Other cases are
  99.    translated as * to @, and ? to +.
  100.  
  101.   19) The received timeout is now used, rather than just using 2 minutes as
  102.    a fixed time. If necessary it may be possible to reset the timeout on
  103.    the local Kermit.
  104.  
  105.   20) The PUSH command has been added to enable the user to jump to PRIMOS.
  106.    Kermit is re-entered either by using the S (START) command, or REN
  107.    (for Re-ENter). REN is a bit more reliable, it depends on what the user
  108.    does at PRIMOS level. Kermit itself may be invoked again, and PUSHed
  109.    from again. The limit to this is set per-user by the sites' PRIME
  110.    system administrator. (Here they can do it about 10 times.)
  111.  
  112.   21) The code is more robust in the checking of values given for the quoting
  113.    and 8-bit quoting characters, and for the parity being used. Previously
  114.    it would have violated the Protocol by allowing the characters to be
  115.    the same.
  116.  
  117.   22) It is now possible to avoid received file name collisions. This is a
  118.    setable option. The new file name is sent with the F packet
  119.    acknowledgement, so this may be printed out by the local Kermit.
  120.    The new file name tries to append four digits to the files prefix, or
  121.    if necessary it will overwrite the last characters of the prefix.
  122.  
  123.  
  124.  
  125.    This version has been tested at PRIMOS revisions 21.0.5q and 22.0.1a.
  126.    The only PRIMOS/Site problems I can envisage are possibly the fact that
  127.    odd file lengths are indicated by setting the read/write lock to NONE.
  128.    This will fail (with no warning) if the user doesn't have P or O rights
  129.    to the directory. The consequence of this is simply a final control-Z
  130.    in the file. The second problem could be that the nested TAKE files
  131.    use file units in the range from 7 to 127, some sites may have limited
  132.    the number of file units a user can have. In this case a minor change
  133.    to the code should get around any problem. The Date/Time file created
  134.    attribute can only be set if the user has P or O rights, although this
  135.    shouldn't matter to most people. And finally the user will obviously
  136.    require rights to be able to delete, add, read, and write to files.
  137.  
  138. The new files are online as 
  139.  
  140. kermit/pri/prime8.ann
  141. kermit/pri/prime8.src     This file is a concatination of the following :
  142.  
  143.               1) PRIME.HLP - a BRIEF description of the changes made,
  144.               2) KERMIT.BUILD.CPL - a build file for the PRIME kermit,
  145.               3) 4 INSERT (.INS.PLP) files for use by the source code,
  146.               4) 39 source code files written in PLP - PRIME's PL1.
  147.  
  148.               each of these files is separated by a line of -----'s
  149.               and can be separated using an editor.
  150.  
  151. End of PRIME8.UPD.
  152.