home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / internet / starterpck / !TCPIP / History / New_200e < prev    next >
Text File  |  1994-06-29  |  5KB  |  156 lines

  1. Fixes (2.00e)
  2. =============
  3.  
  4. Whats Fixed?
  5. ============
  6.  
  7. NNTP Long line problem
  8. ----------------------
  9. NNTP bug reported in d.i.s.archimedes. Characters lost from long lines.
  10. Now fixed.
  11.  
  12. Experimentation with test messages seems to indicate that either the
  13. Demon news server or post machine have a general line length limit of
  14. 500 or so characters.
  15.  
  16. From the NNTP server source, it appears that header lines can be upto
  17. 1024 characters long. I have ammended !TCPIP NNTP client to be able to
  18. cope with 1024 characters header lines.
  19.  
  20.  
  21. Windows re-opening
  22. ------------------
  23. Closed windows can sometimes re-open when new text is written to them
  24. causing the cursor to move. This only applies when Cursor follow is
  25. enabled.
  26.  
  27. Now fixed.
  28.  
  29.  
  30. Save Selection
  31. --------------
  32. Save selection via the saveas dbox leaves a shaded option icon visible.
  33. It shouldn't.
  34.  
  35. Now fixed.
  36.  
  37.  
  38. FTP hash
  39. --------
  40. FTP hash command now replies with the ftp prompt.
  41.  
  42.  
  43. FTP server type
  44. ---------------
  45. The FTP server in !TCPIP now replies to mode changes commands (A,I etc)
  46. with Image type OK or Ascii type OK as appropriate.
  47.  
  48.  
  49.  
  50. Changes
  51. =======
  52.  
  53. FTP prompt
  54. ----------
  55. When a transfer is in progress, the "ftp> " prompt changes to "ftp- ".
  56. Also a prompt appears upon completion being determined at this end.
  57.  
  58. The purpose of this change is to make chat scripts easier to use in that
  59. batch fetch can be done by scanning for "ftp> " upon completion of any
  60. operation.
  61.  
  62. If in use, you find an that a prompt doesn't appear as/when expected,
  63. please advise.
  64.  
  65. The following is an example of an extended FTP command file to login to
  66. Demon's FTP server and retrieve a set of files, and then exit.
  67.  
  68.  -----8<---- CUT HERE ----8<-----
  69. ftp ftp.demon.co.uk \ \
  70. "name: " "anonymous\r\n"
  71. "assword: " "username@hostname.demon.co.uk\r\n"
  72. "ftp> " "bin\r\n"
  73. "ftp> " "hash 1\r\n"
  74. "ftp> " "get /pub/archimedes/developers/0README.TXT\r\n"
  75. "ftp> " "get /pub/archimedes/developers/tcpip2info\r\n"
  76. "ftp> " "quit\r\n"
  77.  -----8<---- CUT HERE ----8<-----
  78.  
  79. username should be replace by your own user name,
  80. hostname should be replace by your own host name.
  81.  
  82.  
  83.  
  84. Command box
  85. -----------
  86. Command box at top of windows has had its buffer increased to 1024
  87. characters to better cope with longer command line chat scripts.
  88.  
  89. General TCPIP command processing was, in an earlier V2 release, changed
  90. to allow upto 32 separate tokens to be be used in a command rather than
  91. the original 10 and should still cope with this new buffer length.
  92.  
  93. To make extended command with chat scripts easier to prepare in !Edit or
  94. !Zap etc, newlines in a text file dragged into the command box are
  95. replaced with spaces.
  96.  
  97. If the resulting file plus contents of box exceed 1021 characters, a
  98. beep is heard, but error is given.
  99.  
  100. Control characters other than '\n' ie normal end of line in !Edit may
  101. terminate command extraction from an imported text file.
  102.  
  103.  
  104.  
  105. Small NNTP, SMTP and POP windows
  106. --------------------------------
  107. These small windows were introduced in version 2.00d as an experiment
  108. for comment following comments made on versions 2.00a-2.00c.
  109.  
  110. Further comments received on these small windows have led to a further
  111. change that should more or less solve the dialemma.
  112.  
  113. These windows will now have their normal (80 x 24) maximum size by
  114. default, but will be opened at a reduced size, enabling them to be
  115. toggled to full size by the user. In the future, it is likely that the
  116. default work area extent of these windows will be linked to the trace
  117. level in use.
  118.  
  119. In addition, the terminal size switches ('X<n>' and "Y<n>") have been
  120. renamed as "XE<n>" and "YE<n>" and two additional switches for setting
  121. the default visible workarea have been added as "XV<n>" and "YV<n>".
  122.  
  123. Note that the wimp operation equivelent of these new switches is to
  124. adjust the visible size of a window in the normal manner, thus no
  125. dialogue box will be provided.
  126.  
  127. In order to gain dynamically from this, the SMTP/NNTP/POP KICK commands
  128. will be extended to be able to accept terminal control switches in a
  129. future release if not in the 2.00e release.
  130.  
  131. Telnet, FTP and Finger allready accept these switches.
  132.  
  133.  
  134. Current session
  135. ---------------
  136. Starting a telnet, ftp or finger session makes it the current session,
  137. allowing command files to be able to start a telnet session and follow
  138. with a record/upload command etc.
  139.  
  140. A new command, "Terminal" has been added which allows terminal control
  141. commands to be applied to the current session. This includes chat
  142. strings, however, a new chat sequence will immediately over-ride a
  143. previous registered sequence. This will be ammend at some time.
  144.  
  145. Terminal <switches> applies given switches to the current session's window.
  146. Terminal * <switches> applies given switches to the command window.
  147.  
  148.  
  149. SMTP NNTP and POP
  150. -----------------
  151. As mentioned above for NNTP, SMTP and POP have also have had their line
  152. buffers increased to 1024 characters. The main effect of this change is
  153. to allow NNTP, SMTP and POP to correctly parse long header lines. Longer
  154. buffers don't actually have any effect upon body text which should be
  155. acceptable in any line length.
  156.