home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / strip20.zip / README.TXT < prev    next >
Text File  |  1995-12-10  |  7KB  |  167 lines

  1. STRIP:   A Code Stripping Utility for OS/2 and DOS.
  2.  
  3. OS/2:
  4. v 1.0  16 July 95. Initial release.
  5. v 2.0  12 Nov 95. Added GUI for OS/2 and rebuild option. Upgraded
  6.                        support for *.ipf by recognizing both '&' and ':' as
  7.                        on codes.  Recoded parser for x4 speed improvement.
  8.  
  9. DOS:
  10. v 1.0 12 Nov 95. Initial release. Has all features of OS/2 v 2.0.
  11.  
  12. Shareware: $10
  13.  
  14. Copyright (c) 1995.
  15. All rights reserved.
  16.  
  17. by:   Lee R. Copp
  18.        EE/ME Undergraduate
  19.        Michigan Technological University
  20.        Houghton, MI  49931
  21.  
  22. Internet(until Nov 96'):  lrcopp@mtu.edu
  23.  
  24. Current Snail (until Nov 96'):  2007 Woodmar Dr. Apt E
  25.                                          Houghton, MI  49931
  26.  
  27. Perm Snail:  9420 10 Mile Rd.
  28.                  Rockford, MI  49341
  29.  
  30. What is STRIP?
  31.  
  32. STRIP is a command line program which removes formatting codes from files such
  33. as *.ipf and *.htm and can also remove formatting codes from custom file types.
  34. This allows you to spell and grammar check the created text file without wading
  35. through code. The registered STRIP can then use the corrected text file to rebuild
  36. your source file.
  37.  
  38. Who should use STRIP?
  39.  
  40. STRIP was written to allow individuals who use ASCII data files with certain coding parameters
  41. to remove those codes and read (or spell check) the file in plain text. STRIP's ability to do this
  42. to the ipf type of file is the main reason I wrote this program.
  43.  
  44. What should I do if I downloaded STRIP because of it's name and really can't use it?
  45.  
  46. Tell all your friends anyway.
  47.  
  48. What should I do if STRIP is my dream come true?
  49.  
  50. Register the program of course!
  51.  
  52. How do I install STRIP?
  53.  
  54. Create a folder called STRIP and move the contents of STRIPxx.ZIP into the folder. If you have
  55. an old version just delete all the old and in with the new. :)
  56.  
  57. How do I use STRIP?
  58.  
  59. You have a few options for use with the new version. You can use the GUI for STRIP called
  60. STRIPG.EXE and just point and click. Or you can use your friendly OS/2 or DOS command line.
  61. Basically the following general procedure should be used with the specifics given for the
  62. GUI and command line given afterword.
  63.  
  64. 1.) Copy your source files to a temp directory. (Always a good idea when trying out some new
  65.      utility)
  66. 2.) Choose the command line or GUI interface for STRIP.
  67.  
  68. --Registered Steps--
  69. 3.) STRIP the source file to create code files called *.ccc and *.ttt. You may also create
  70.     a plain text file called *.txt. Use your word processor to spell and grammar check the
  71.     *.ttt file.
  72.     WARNING: DO NOT TOUCH THE SMILEY FACES. These are used by STRIP as place holders
  73.                   for the code in the *.ccc file. Your word processor should ignore them.
  74. 4.) Rerun STRIP with the 'u' option on the SAME source file. STRIP will use the *.ccc and
  75.      corrected *.ttt to rebuild your data file as *.stp.
  76. 5.) Use the *.stp file to replace the source file. (After comparing to set your mind at ease)
  77. 6.) Repeat as desired. The end.
  78.  
  79. --Unregistered Steps--
  80. 3.) STRIP the source file to create a plain text file called *.txt. You can then spell and
  81.      grammar check this file. You may now correct the source file by hand using the *.txt
  82.      file as a guide.
  83. 4.) Repeat as desired. The end.
  84.  
  85. To use the GUI just follow the help text at the bottom of the GUI window and these easy steps:
  86.  
  87. Run STRIPG.EXE
  88. Push the Folder Icon on the toolbar.
  89. Select the source file to STRIP.
  90. Select the type of source file. (i.e. ipf, html, or custom)
  91.     Note: If you select custom you must change the 'on' and 'off' text in the arguments
  92.             entry field to the custom files on and off format codes. 
  93. Select the STRIP option for the source file. (i.e. source->plain text, source->strip code, or
  94. source->unstrip)
  95.     Note: There are no extra arguments for the UnSTRIP option regardless of source type.
  96.             See the examples section for more help.
  97. Push the STRIP button and watch the time gauge and message list box. 
  98. Repeat as desired. The end.
  99.  
  100. The command line parameters and some examples are shown below.
  101.  
  102. usage: STRIP [source] [options] [code on] [code off]
  103.   Note: Substitute STRIPD for the DOS version.
  104.  
  105. [source]  = valid path and file name (i.e. c:\myfile.ipf or myfile.ipf if in the same folder)
  106.  
  107. [options] =  i,I,h,H,c,C,u
  108.  
  109.  i  = creates code files from source ipf. STRIP uses the strip code files to rebuild your
  110.        file after you modify the text file.
  111.  I  = creates plain text from ipf. Useful for making readme.txt files.
  112.  h = creates code files from html.
  113.  H = creates plain text from html.
  114.  c = creates code files from custom file.
  115.  C = creates plain text from custom file.
  116.  u = recreates source file from code files (registered version only).
  117.  
  118. Note: All files which STRIP creates are created in the source file's folder.
  119.  
  120. [code on] [code off] = on and off characters used with 'c' & 'C' options.
  121.  
  122. Examples:
  123.   Note: Substitute STRIPD for the DOS version.
  124.  
  125. STRIP C:\MYIPF.ipf i             (creates code files MYIPF.ccc and MYIPF.ttt from ipf file)
  126. STRIP C:\MYIPF.ipf I             (creates plain text from ipf file)
  127. STRIP C:\MYHTML.htm h       (creates code files MYHTML.ccc and MYHTML.ttt from html file)
  128. STRIP C:\MYHTML.htm H       (creates plain text from html file)
  129. STRIP C:\MYHTML.htm c < >  (uses custom option to create code files from html file)
  130. STRIP C:\MYHTML.htm C < >  (uses custom option to create plain text from html file)
  131. STRIP C:\MYIPF.ipf u            (creates MYIPF.stp from strip code files)
  132.  
  133.   Note: The i,h,c, and u options are available only in the registered version.
  134.  
  135. Author's Comments
  136.  
  137. STRIP is just a down and dirty command line program that I put together because I didn't want to
  138. hand spell check my ipf and html files. I haven't tried it on anything else so if you come up with a
  139. new use for STRIP let me know. If you would like a new type of data file to be built into STRIP
  140. just register and send me the data files 'on' and 'off' characters along with a sample data file.
  141. If you have any comments, suggestions, bug reports, and of course registrations feel free to
  142. contact me. All registered users automatically receive ALL new releases via e-mail. (i.e. you are
  143. registered for my life span)
  144.  
  145. These programs are provided 'as is' with no warranty of ANY kind and the author is not
  146. responsible for data loss, work loss, sanity loss, or lack of world peace.
  147.  
  148. Free Advertising
  149.  
  150. Here is a list of all the shareware programs that I have written as of when this program was
  151. released.
  152.  
  153.  IMP is a Install Management Program that will create a list of the files that were installed
  154. on your system by an application. This gives you the ability to know exactly what files the
  155. application installed and where they are. IMP will also delete these files from your system
  156. if you wish to remove the application.
  157.  
  158. Available as imp.zip
  159.  
  160.  CLIP is a Command Line Interface Program that will organize your command line programs.
  161. It allows you to create a 'library' of entries which list the command line program, arguments
  162. for that program, and any required switches that are needed. It also allows you to create
  163. entries for normal programs. You may then select an entry and run it with the touch of a
  164. button.
  165.  
  166. Available as clip.zip
  167.