home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume26 / tin / patch07b < prev    next >
Encoding:
Text File  |  1991-11-29  |  11.8 KB  |  459 lines

  1. Newsgroups: comp.sources.misc
  2. From: iain@estevax.uucp (Iain J. Lea)
  3. Subject:  v26i082:  tin - threaded full screen newsreader, Patch07b/2
  4. Message-ID: <1991Nov30.024324.14920@sparky.imd.sterling.com>
  5. X-Md4-Signature: 21653e8f2c46fe03bd50e11ae762c3ce
  6. Date: Sat, 30 Nov 1991 02:43:24 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: iain@estevax.uucp (Iain J. Lea)
  10. Posting-number: Volume 26, Issue 82
  11. Archive-name: tin/patch07b
  12. Environment: BSD, SCO, ISC, SUNOS, SYSVR3, SYSVR4, ULTRIX, XENIX
  13. Patch-To: tin: Volume 23, Issue 15-23
  14.  
  15. #!/bin/sh
  16. # this is patch07.shar.02 (part 2 of tin)
  17. # do not concatenate these parts, unpack them in order with /bin/sh
  18. # file tin.patch07 continued
  19. #
  20. if touch 2>&1 | fgrep '[-amc]' > /dev/null
  21.  then TOUCH=touch
  22.  else TOUCH=true
  23. fi
  24. if test ! -r shar3_seq_.tmp; then
  25.     echo "Please unpack part 1 first!"
  26.     exit 1
  27. fi
  28. (read Scheck
  29.  if test "$Scheck" != 2; then
  30.     echo "Please unpack part $Scheck next!"
  31.     exit 1
  32.  else
  33.     exit 0
  34.  fi
  35. ) < shar3_seq_.tmp || exit 1
  36. echo "x - Continuing file tin.patch07"
  37. sed 's/^X//' << 'SHAR_EOF' >> tin.patch07 &&
  38. X  
  39. X  Anton Aylward, Ned Danieley, Brent Ermlick, Carl Hage, Ed Hanway,
  40. X  Karl-Koenig Koenigsson, Kris Kugel, Hakan Lennestal, Clifford Luke,
  41. X! Bill Poitras, Nickolay Saukh, Rich Salz, Bart Sears, Karl-Olav Serrander,
  42. X! Doug Sewell, Cliff Stanford, Adri Verhoef, Cary Whitney
  43. X  .PP
  44. X  I wish to thank the following people for bug reports/comments:
  45. X  
  46. X--- 904,911 ----
  47. X  
  48. X  Anton Aylward, Ned Danieley, Brent Ermlick, Carl Hage, Ed Hanway,
  49. X  Karl-Koenig Koenigsson, Kris Kugel, Hakan Lennestal, Clifford Luke,
  50. X! Bill Poitras, Rich Salz, Nickolay Saukh, John Sauter, Bart Sears,
  51. X! Karl-Olav Serrander, Doug Sewell, Cliff Stanford, Adri Verhoef, Cary Whitney
  52. X  .PP
  53. X  I wish to thank the following people for bug reports/comments:
  54. X  
  55. XOnly in .: tin.diff
  56. Xdiff -rcs ../106/tin.h ./tin.h
  57. X*** ../106/tin.h    Thu Oct 31 13:42:35 1991
  58. X--- ./tin.h    Thu Nov  7 08:00:14 1991
  59. X***************
  60. X*** 3,9 ****
  61. X   *  Module    : tin.h
  62. X   *  Author    : R.Skrenta / I.Lea
  63. X   *  Created   : 01-04-91
  64. X!  *  Updated   : 31-10-91
  65. X   *  Release   : 1.0
  66. X   *  Notes     :
  67. X   *  Copyright : (c) Copyright 1991 by Rich Skrenta & Iain Lea
  68. X--- 3,9 ----
  69. X   *  Module    : tin.h
  70. X   *  Author    : R.Skrenta / I.Lea
  71. X   *  Created   : 01-04-91
  72. X!  *  Updated   : 07-11-91
  73. X   *  Release   : 1.0
  74. X   *  Notes     :
  75. X   *  Copyright : (c) Copyright 1991 by Rich Skrenta & Iain Lea
  76. X***************
  77. X*** 111,118 ****
  78. X  #    define        DEFAULT_SUM        "sum -r"
  79. X  #endif
  80. X  
  81. X! #define        DEFAULT_ACTIVE_NUM    400        /* initial size of active array */
  82. X! #define        DEFAULT_ARTICLE_NUM    200        /* initial size of art array */ 
  83. X  #define        DEFAULT_KILL_NUM    10        /* initial size of kill array */ 
  84. X  #define        DEFAULT_SAVE_NUM    10        /* initial size of save array */ 
  85. X  
  86. X--- 111,127 ----
  87. X  #    define        DEFAULT_SUM        "sum -r"
  88. X  #endif
  89. X  
  90. X! /*
  91. X!  * initial sizes are larger on BSD machines because they 
  92. X!  * are usually a workstation or mini (ie. not a small PC)
  93. X!  */
  94. X! #ifdef BSD
  95. X! #    define        DEFAULT_ACTIVE_NUM    1600    /* initial size of active array */
  96. X! #    define        DEFAULT_ARTICLE_NUM    400        /* initial size of art array */ 
  97. X! #else
  98. X! #    define        DEFAULT_ACTIVE_NUM    400        /* initial size of active array */
  99. X! #    define        DEFAULT_ARTICLE_NUM    200        /* initial size of art array */ 
  100. X! #endif
  101. X  #define        DEFAULT_KILL_NUM    10        /* initial size of kill array */ 
  102. X  #define        DEFAULT_SAVE_NUM    10        /* initial size of save array */ 
  103. X  
  104. X***************
  105. X*** 183,188 ****
  106. X--- 192,200 ----
  107. X  #define        MAIL_ANY_NEWS            2
  108. X  #define        SAVE_ANY_NEWS            3
  109. X  
  110. X+ #define        HEADER_TO                0
  111. X+ #define        HEADER_SUBJECT            1
  112. X+ 
  113. X  extern int sort_art_type;
  114. X  
  115. X  extern int NOTESLINES;
  116. X***************
  117. X*** 277,282 ****
  118. X--- 289,295 ----
  119. X      char *name;
  120. X      long max;
  121. X      long min;
  122. X+     char moderated;
  123. X      int next;        /* next active entry in hash chain */
  124. X      int flag;
  125. X      int read;        /* marked TRUE if group was entered during session */
  126. X***************
  127. X*** 361,367 ****
  128. X  extern char *help_group[];
  129. X  extern char *help_page[];
  130. X  extern char *help_select[];
  131. X- extern char *version;
  132. X  extern char active_file[LEN];
  133. X  extern char add_addr[LEN];
  134. X  extern char art_search_string[LEN];
  135. X--- 374,379 ----
  136. Xdiff -rcs ../106/tin.nrf ./tin.nrf
  137. X*** ../106/tin.nrf    Mon Nov  4 19:13:29 1991
  138. X--- ./tin.nrf    Thu Nov  7 19:26:49 1991
  139. X***************
  140. X*** 1,7 ****
  141. X  
  142. X  
  143. X  
  144. X!      Version 1.0 PL6                                                 TIN(1)
  145. X  
  146. X  
  147. X  
  148. X--- 1,7 ----
  149. X  
  150. X  
  151. X  
  152. X!      Version 1.0 PL7                                                 TIN(1)
  153. X  
  154. X  
  155. X  
  156. X***************
  157. X*** 67,73 ****
  158. X  
  159. X  
  160. X  
  161. X!      TIN(1)                                                 Version 1.0 PL6
  162. X  
  163. X  
  164. X            -R        read news saved by -S option.
  165. X--- 67,73 ----
  166. X  
  167. X  
  168. X  
  169. X!      TIN(1)                                                 Version 1.0 PL7
  170. X  
  171. X  
  172. X            -R        read news saved by -S option.
  173. X***************
  174. X*** 133,139 ****
  175. X  
  176. X  
  177. X  
  178. X!      Version 1.0 PL6                                                 TIN(1)
  179. X  
  180. X  
  181. X            group will cause Tin to incrementally update the index file,
  182. X--- 133,139 ----
  183. X  
  184. X  
  185. X  
  186. X!      Version 1.0 PL7                                                 TIN(1)
  187. X  
  188. X  
  189. X            group will cause Tin to incrementally update the index file,
  190. X***************
  191. X*** 199,205 ****
  192. X  
  193. X  
  194. X  
  195. X!      TIN(1)                                                 Version 1.0 PL6
  196. X  
  197. X  
  198. X                      <Article boby>
  199. X--- 199,205 ----
  200. X  
  201. X  
  202. X  
  203. X!      TIN(1)                                                 Version 1.0 PL7
  204. X  
  205. X  
  206. X                      <Article boby>
  207. X***************
  208. X*** 265,271 ****
  209. X  
  210. X  
  211. X  
  212. X!      Version 1.0 PL6                                                 TIN(1)
  213. X  
  214. X  
  215. X                      group in the list etc. By entering '$' the group will
  216. X--- 265,271 ----
  217. X  
  218. X  
  219. X  
  220. X!      Version 1.0 PL7                                                 TIN(1)
  221. X  
  222. X  
  223. X                      group in the list etc. By entering '$' the group will
  224. X***************
  225. X*** 331,337 ****
  226. X  
  227. X  
  228. X  
  229. X!      TIN(1)                                                 Version 1.0 PL6
  230. X  
  231. X  
  232. X            a         Author forward search.
  233. X--- 331,337 ----
  234. X  
  235. X  
  236. X  
  237. X!      TIN(1)                                                 Version 1.0 PL7
  238. X  
  239. X  
  240. X            a         Author forward search.
  241. X***************
  242. X*** 397,403 ****
  243. X  
  244. X  
  245. X  
  246. X!      Version 1.0 PL6                                                 TIN(1)
  247. X  
  248. X  
  249. X            t         Return to group selection index.
  250. X--- 397,403 ----
  251. X  
  252. X  
  253. X  
  254. X!      Version 1.0 PL7                                                 TIN(1)
  255. X  
  256. X  
  257. X            t         Return to group selection index.
  258. X***************
  259. X*** 463,469 ****
  260. X  
  261. X  
  262. X  
  263. X!      TIN(1)                                                 Version 1.0 PL6
  264. X  
  265. X  
  266. X            F         Post a followup with a copy of the current article
  267. X--- 463,469 ----
  268. X  
  269. X  
  270. X  
  271. X!      TIN(1)                                                 Version 1.0 PL7
  272. X  
  273. X  
  274. X            F         Post a followup with a copy of the current article
  275. X***************
  276. X*** 529,535 ****
  277. X  
  278. X  
  279. X  
  280. X!      Version 1.0 PL6                                                 TIN(1)
  281. X  
  282. X  
  283. X            W         List articles posted by user. The date posted, the
  284. X--- 529,535 ----
  285. X  
  286. X  
  287. X  
  288. X!      Version 1.0 PL7                                                 TIN(1)
  289. X  
  290. X  
  291. X            W         List articles posted by user. The date posted, the
  292. X***************
  293. X*** 595,601 ****
  294. X  
  295. X  
  296. X  
  297. X!      TIN(1)                                                 Version 1.0 PL6
  298. X  
  299. X  
  300. X                unread article upon entering a newsgroup with unread news.
  301. X--- 595,601 ----
  302. X  
  303. X  
  304. X  
  305. X!      TIN(1)                                                 Version 1.0 PL7
  306. X  
  307. X  
  308. X                unread article upon entering a newsgroup with unread news.
  309. X***************
  310. X*** 661,667 ****
  311. X  
  312. X  
  313. X  
  314. X!      Version 1.0 PL6                                                 TIN(1)
  315. X  
  316. X  
  317. X            Save directory
  318. X--- 661,667 ----
  319. X  
  320. X  
  321. X  
  322. X!      Version 1.0 PL7                                                 TIN(1)
  323. X  
  324. X  
  325. X            Save directory
  326. X***************
  327. X*** 727,733 ****
  328. X  
  329. X  
  330. X  
  331. X!      TIN(1)                                                 Version 1.0 PL6
  332. X  
  333. X  
  334. X            Use the 'f' / 'F' command to post a follow-up article to an
  335. X--- 727,733 ----
  336. X  
  337. X  
  338. X  
  339. X!      TIN(1)                                                 Version 1.0 PL7
  340. X  
  341. X  
  342. X            Use the 'f' / 'F' command to post a follow-up article to an
  343. X***************
  344. X*** 793,799 ****
  345. X  
  346. X  
  347. X  
  348. X!      Version 1.0 PL6                                                 TIN(1)
  349. X  
  350. X  
  351. X            The following is an example of a $_H_O_M_E/._S_i_g file:
  352. X--- 793,799 ----
  353. X  
  354. X  
  355. X  
  356. X!      Version 1.0 PL7                                                 TIN(1)
  357. X  
  358. X  
  359. X            The following is an example of a $_H_O_M_E/._S_i_g file:
  360. X***************
  361. X*** 859,865 ****
  362. X  
  363. X  
  364. X  
  365. X!      TIN(1)                                                 Version 1.0 PL6
  366. X  
  367. X  
  368. X                 vi) that is used in all editing operations within tin (ie.
  369. X--- 859,865 ----
  370. X  
  371. X  
  372. X  
  373. X!      TIN(1)                                                 Version 1.0 PL7
  374. X  
  375. X  
  376. X                 vi) that is used in all editing operations within tin (ie.
  377. X***************
  378. X*** 925,931 ****
  379. X  
  380. X  
  381. X  
  382. X!      Version 1.0 PL6                                                 TIN(1)
  383. X  
  384. X  
  385. X       HISTORY
  386. X--- 925,931 ----
  387. X  
  388. X  
  389. X  
  390. X!      Version 1.0 PL7                                                 TIN(1)
  391. X  
  392. X  
  393. X       HISTORY
  394. X***************
  395. X*** 973,981 ****
  396. X  
  397. X            Anton Aylward, Ned Danieley, Brent Ermlick, Carl Hage, Ed Hanway,
  398. X            Karl-Koenig Koenigsson, Kris Kugel, Hakan Lennestal, Clifford
  399. X!           Luke, Bill Poitras, Nickolay Saukh, Rich Salz, Bart Sears, Karl-
  400. X!           Olav Serrander, Doug Sewell, Cliff Stanford, Adri Verhoef, Cary
  401. X!           Whitney
  402. X  
  403. X            I wish to thank the following people for bug reports/comments:
  404. X  
  405. X--- 973,981 ----
  406. X  
  407. X            Anton Aylward, Ned Danieley, Brent Ermlick, Carl Hage, Ed Hanway,
  408. X            Karl-Koenig Koenigsson, Kris Kugel, Hakan Lennestal, Clifford
  409. X!           Luke, Bill Poitras, Rich Salz, Nickolay Saukh, John Sauter, Bart
  410. X!           Sears, Karl-Olav Serrander, Doug Sewell, Cliff Stanford, Adri
  411. X!           Verhoef, Cary Whitney
  412. X  
  413. X            I wish to thank the following people for bug reports/comments:
  414. X  
  415. X***************
  416. X*** 991,997 ****
  417. X  
  418. X  
  419. X  
  420. X!      TIN(1)                                                 Version 1.0 PL6
  421. X  
  422. X  
  423. X            Fader, Joachim Feld, Paul Fox, Bernhard Gmelch, Viet Hoang,
  424. X--- 991,997 ----
  425. X  
  426. X  
  427. X  
  428. X!      TIN(1)                                                 Version 1.0 PL7
  429. X  
  430. X  
  431. X            Fader, Joachim Feld, Paul Fox, Bernhard Gmelch, Viet Hoang,
  432. XOnly in .: tin.patch07
  433. XFiles ../106/wildmat.3 and ./wildmat.3 are identical
  434. XFiles ../106/wildmat.c and ./wildmat.c are identical
  435. SHAR_EOF
  436. echo "File tin.patch07 is complete" &&
  437. $TOUCH -am 1107192791 tin.patch07 &&
  438. chmod 0600 tin.patch07 ||
  439. echo "restore of tin.patch07 failed"
  440. set `wc -c tin.patch07`;Wc_c=$1
  441. if test "$Wc_c" != "55873"; then
  442.     echo original size 55873, current size $Wc_c
  443. fi
  444. rm -f shar3_seq_.tmp
  445. echo "You have unpacked the last part"
  446. exit 0
  447.  
  448. -- 
  449.  Dr. med. dipl.-math Dieter Becker           Tel.: (0 / +49) 6841 - 16 3046
  450.  Medizinische Universitaets- und Poliklinik  Fax.: (0 / +49) 6841 - 16 3369
  451.  Innere Medizin III                         
  452.  D - 6650 Homburg / Saar                     Email: becker@med-in.uni-sb.de
  453. exit 0 # Just in case...
  454. -- 
  455. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  456. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  457. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  458. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  459.