home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / FileMover / Dopus5 / DC-OP55B.LZX / Opus5 / arexx / ArcAdd.doc < prev    next >
Encoding:
Text File  |  1995-09-21  |  3.9 KB  |  141 lines

  1. /*----------------------------------------------------------------------*/
  2.                             ArcAdd.dopus5 v1.3
  3.  
  4.               by Dave Clarke (4wd@connexus.apana.org.au)
  5.  
  6.             originally based on scripts by John Crookshank
  7.  
  8. /*----------------------------------------------------------------------*/
  9.  
  10.  
  11. Disclaimer:
  12. ~~~~~~~~~~~
  13. If this software does something that you think has resulted in the
  14. complete annihilation of your system, a colour change in the red seas of
  15. Mars, unpredictable projectile vomitting, a cessation of hostile activity
  16. everywhere (usually by the application of nuclear weapons), or works like
  17. it was supposed to, then I accept no responsibility :-)
  18.  
  19.  
  20. Description:
  21. ~~~~~~~~~~~~
  22. Adds selected files to a 'list' of files to archive, then calls an archiver
  23. to do the archiving.
  24.  
  25. You can select files across different volumes, even floppies, for archiving
  26. into a single archive.
  27.  
  28.  
  29. Requirements:
  30. ~~~~~~~~~~~~~
  31.  
  32. To fully install and use the contents of this archive you will need the
  33. following:
  34.  
  35.          ARexx - part of AmigaDOS since release 2
  36.          DirectoryOpus v5 - v5.11 minimum
  37.          LhA - ubiquitous Amiga archiver, Stefan Boberg
  38.          LZX - Latest byte cruncher, J. Forbes and Co., Data Compression
  39.                Technologies.
  40.          ZIP - V1.9h, Mark Adler + others
  41.  
  42.  
  43. Installation:
  44. ~~~~~~~~~~~~~
  45.  
  46. Copy ArcAdd.dopus5 into DOpus5:Arexx/
  47.  
  48. Then set up a couple of buttons as follows:
  49.  
  50.     Name:          Add to list
  51.     Function:
  52.     ARexx          DOpus5:ArcAdd.dopus5 {Ql} {Qp}
  53.  
  54.     Flags:         Run Asynch
  55.  
  56.  
  57.     Name:          Archive List
  58.     Function:
  59.     ARexx          DOpus5:ArcAdd.dopus5 {Ql} {Qp} ARC
  60.  
  61.     Flags:         Run Asynch
  62.  
  63.  
  64. Optional extra Buttons:
  65.  
  66.     Name:          Clear List
  67.     Function:
  68.     Command        Delete T:infiles.txt
  69.  
  70.  
  71.     Name:          Edit List
  72.     Function:
  73.     ARexx          DOpus5:ArcAdd.dopus5 {Ql} {Qp} EDIT
  74.  
  75.     Flags:         Run Asynch
  76.  
  77.  
  78. Find the line in the script that goes 'Copy SYS:Useful/'||archiver||' T:' and
  79. edit to reflect your path to LhA, ZIP, and LZX.
  80.  
  81. NOTE: See attendant button config for the general idea, ArcAdd_Buttons
  82.  
  83.  
  84. What it does:
  85. ~~~~~~~~~~~~~
  86.  
  87. The first button grabs all the selected files/dirs in the source lister
  88. and adds them to a list, T:infiles.txt, giving you a running total after
  89. you've added some.
  90.  
  91. The Second button reads in the list and after asking you the archive name,
  92. and the archive type, starts adding them into the archive.  You'll be
  93. notified when archiving has finished.
  94.  
  95. -------------------------------------------------------------------------
  96. NOTE: If no source lister is available when the Archive function is
  97.       called, then the script will quietly exit. ie. Nothing will happen.
  98. -------------------------------------------------------------------------
  99.  
  100. If you selected files that were on floppies that have since been removed,
  101. a System Requester will pop up asking for that volume to be inserted.
  102.  
  103.  
  104. Feedback:
  105. ~~~~~~~~~
  106.  
  107. I can be reached in the following ways:
  108.  
  109.       Usenet:    4wd@connexus.apana.org.au
  110.  
  111.       MAXsNET:   86:303/213 (Dave Clarke)
  112.                  (MAXsNET is the Australian network originally started
  113.                   for MAXsBBS support)
  114.  
  115.  
  116. Distribution:
  117. ~~~~~~~~~~~~~
  118.  
  119. "Use her, abuse her, she can take all that you've got." - Iron Maiden
  120.  
  121. I hereby proclaim a new generation of software:
  122.  
  123. AW - "ApathyWare" - I don't care what you do with it, and even the software
  124.                     doesn't care what you do with it :)
  125.  
  126.  
  127. History:
  128. ~~~~~~~~
  129. V1.0 - First one, it worked.
  130.  
  131. V1.1 - Now checks for a source lister before archiving.
  132.      - You can now select whether to use LZX or LhA.
  133.  
  134. V1.2 - If EDIT keyword is used in calling line, (i.l.o. ARC), then
  135.        the command 'ed' will be called on the archive list file.
  136.      - Now doesn't check for a Source lister, (maybe it will again
  137.        when the ARexx interface has stabilized :)
  138.  
  139. V1.3 - Added ZIP support.
  140.      - Uses DOpus5.11 STEMs for grabbing files and dirs.
  141.