home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / MODEM / CATCS15A.ZIP / MSLCAT.SCR < prev    next >
Text File  |  1993-11-10  |  4KB  |  122 lines

  1. E MSLCAT.SCR -- A TAPCIS script to capture catalog listings
  2. E               from the Microsoft Software Library.
  3. ;
  4. ;  This script gets a catalog listing from the Microsoft Software 
  5. ;  Library, capturing it as a TAPCIS-style CAT file that can be
  6. ;  browsed offline by either TAPCIS or the Windows-hosted program 
  7. ;  CATCIS. The name of the file it creates is MSL.CAT. If MSL.CAT
  8. ;  already exists, the material captured by this script will be
  9. ;  appended to it.
  10. ;
  11. ;  MSLCAT.SCR should be placed in the directory where the TAPCIS
  12. ;  program resides. It can be invoked by pressing <PgUp> while in
  13. ;  interactive mode and typing MSLCAT in response to the "Filename
  14. ;  for your computer:" prompt. MSLCAT.SCR can also be copied to the
  15. ;  filename FRONTEND.SCR and executed by logging on with the <Alt-N>
  16. ;  command from the TAPCIS main menu.
  17. ;
  18. ;  There are two values you may wish to edit: the keyword list
  19. ;  (MSLCAT.SCR defaults to "all") and the age of the listed files
  20. ;  (the initial default is 365 days). These items are underscored 
  21. ;  with *****'s. Comments are enlosed in []'s.
  22. ;
  23. ;  You can also have this script log off from Compuserve when it's
  24. ;  done by removing the semicolon (";") from the beginning of the
  25. ;  last line.
  26. ;
  27. ;  If you wish to browse MSL.CAT with TAPCIS, you need to create a 
  28. ;  fake forum named MSL. For what it's worth, I usually tell TAPCIS
  29. ;  that MSL is a Q forum, not that it really matters. Just don't try
  30. ;  to "join" MSL!
  31. ;
  32. ;  CATCIS needs no special arrangements. Just open MSL.CAT and 
  33. ;  browse through the catalog like you normally would. CATCIS may 
  34. ;  warn you that there is no corresponding "section" file when you 
  35. ;  first open MSL.CAT, but all the browsing and searching functions 
  36. ;  will work OK. If you have a recent version of CATCIS -- release 1.3
  37. ;  or later -- CATCIS gives you the option of writing an "MSL Format"
  38. ;  download script. If you check this option, CATCIS will produce a
  39. ;  script with the default name of MSL.SCR in your TAPCIS directory
  40. ;  (usually C:\TAP). When you run this script, the files you chose
  41. ;  will be downloaded to the directory you specified as your "Download
  42. ;  file path" under TAPCIS.
  43. ;
  44. ;  If you don't have CATCIS, you can download the files you have chosen
  45. ;  with Loren Jenkin's MSL.SCR script, available in the "Scripts and 
  46. ;  Tools" library section on the TAPCIS forum.
  47. ;
  48. ;          William K. Walker
  49. ;          North Valley Digital
  50. ;          Compuserve: 71066,24
  51. ;          (513) 426-0344
  52. ;
  53. ;  V01.00  23 Aug 93  Initial release.
  54. ;  V01.01  27 Aug 93  Updated to reflect improvements in CATCIS;
  55. ;                      added optional logoff line at end of script.
  56. ;  V01.02  24 Sep 93  Corrected to dodge presence of possible "!"
  57. ;                      in a file description.
  58. ;  V01.03  17 Oct 93  Updated usage instructions slightly.
  59. ;  -----------------------------------------------------------------
  60. ;
  61. C MSL.CAT
  62. C N
  63. S go msl^M
  64. ;CompuServe+   MSL-1
  65. ;
  66. ;MICROSOFT SOFTWARE LIBRARY 
  67. ;
  68. ; 1 BROWSE thru files
  69. ; 2 SCAN
  70. ; 3 KEYWORD list
  71. ;
  72. ; 4 DOWNLOAD a file
  73. ; 5 READ a file
  74. ;
  75. ;Enter choice !
  76. W ce !
  77. S 2^M
  78. ;
  79. ;Enter keywords (e.g. modem)
  80. ;or <CR> for all:
  81. W all:
  82. S ^M
  83. ; ********** [Edit the line above to specify any keywords you wish
  84. ;             to use in your file search.]
  85. ;
  86. ;Oldest files in days
  87. ;or <CR> for all:
  88. W all:
  89. S 365^M
  90. ; ********** [Edit the line above to specify the age range of the 
  91. ;             files you are interested in. E.g., 365 = files
  92. ;             posted within the last 365 days.]
  93. ;
  94. ;Include description (Y or N)?
  95. W ?
  96. C Y
  97. S y^M
  98. ;
  99. ;  [file listings are displayed...]
  100. ;
  101. ;Press <CR> !
  102. W <CR>
  103. C N
  104. S ^M
  105. ;
  106. ;MICROSOFT SOFTWARE LIBRARY 
  107. ;
  108. ; 1 BROWSE thru files
  109. ; 2 SCAN
  110. ; 3 KEYWORD list
  111. ;
  112. ; 4 DOWNLOAD a file
  113. ; 5 READ a file
  114. ;
  115. ;Enter choice !
  116. W ce !
  117. ;  [The script ends with TAPCIS at a navigation prompt.]
  118. ;  [                      -OR-                         ]
  119. ;  [Remove the semicolon (";") at beginning of the line
  120. ;   below if you want the script to log off when it's done.]
  121. ;S off^M
  122.