home *** CD-ROM | disk | FTP | other *** search
/ Kosovo Orphans' Appeal Charity CD / KosovoOrphansAppeal.iso / archimedesworld_cd2 / programming / deutils / _help next >
Text File  |  1998-09-13  |  4KB  |  107 lines

  1.  
  2.                                                .o
  3.   .oooooo   oooooo,   ooooooo, oooo, ooo       88,.o8[          .oo,.         
  4.   '888"Y8b, Y88P"88o  Y88P"88[ Y88P`'Y8"  d[   88 '88[         d88"88[        
  5.    ]8[  ]8b  88   88, .88 .,Y8 ]88   ]P .d8bo   o  88`   ooo  d8P  '8[  o, .o,
  6.    88`  ]88 ]8P   88[ ]8[ 8` " ]88   d[ ]8888]88[  88  .88"88.88`   ]bd88[ d8`
  7.    88   ]88 ]8[   88[ ]8888    ]8[   8[  88  'Y8[  88  88b,'"]88       88  88 
  8.    88   ]8P ]8[   88` 88['8    88[   8   88   ]8[ ]8P  ]888b,]88       88  88 
  9.   ]8P   88` 88`  ]8P  88  " dP 88[  .8  ]8P   88` ]8[   '"888]88    .o.8P .8P 
  10.   d8[ .d8P .88  o88` .88, od8` 88b .dP  ]8bo[ 88,,]8[ ]8, d8P 88o  o8`]8bod8[ 
  11.  8888888" ]888888P` ]8888888P  '8888"   ]88P` Y88`]88P'Y888P  'Y888P` '888Y8[ 
  12.                                                    '                  o,  88  
  13.                                                                      '88o88`  
  14.                                                                       '"""`   
  15.  
  16.                 DDEUtils replacement module
  17.                 For RISC OS v3.10 or later
  18.  
  19.                 Copyright (C) Cy Booker 1993-1995
  20.  
  21.  
  22.    Purpose:
  23.  
  24.        The module DDEUtilsCy and the obey file InitDDECy are intended
  25.        to provide the functionality of Acorns' DDEUtils module, but
  26.        supplied free of charge (freeware).  The author retains
  27.        copyright.
  28.  
  29.           This package is supplied "as is".  No warranty, express
  30.           or implied, of the  merchantability of this program or its
  31.           fitness for any particular purpose is given.  In no
  32.           circumstances shall the author, or any provider or
  33.           distributor of this program, be liable for any damage, loss
  34.           of profits, or any indirect or consequential loss arising
  35.           out of the use of this program.
  36.     
  37.        The DDEUtils module implements throwback, long command lines,
  38.        and supports separate tasks having their own currently selected
  39.        (disc) directory.
  40.        
  41.        The DDEUtilsCy replacement does not support the CSD part of the
  42.        original module, but does support the API.
  43.  
  44.  
  45.    Quick use:
  46.  
  47.        Double-click on the InitDDECy obey file, then double-click the
  48.        DDEUtilsCy module.
  49.  
  50.  
  51.    To use permenantly:
  52.  
  53.        1. Copy the DDEUtilsCy module into System:Modules
  54.        2. Copy the InitDDECy obey file into System:Modules
  55.        3. Copy the IfExist utility to you Run$Path ($.Library)
  56.  
  57.        Then in your 'load' do something like this in an Obey file:
  58.  
  59.            RMEnsure DDEutils 0.02 IfExist System:Modules.DDEUtils Then RMLoad System:Modules.DDEUtils
  60.            RMEnsure DDEUtils 0.01 %Obey -c System:Modules.InitDDECy
  61.            RMEnsure DDEUtils 0.01 RMRun System:Modules.DDEUtilsCy
  62.  
  63.        The DDEUtilsCy module has a version number of 0.01, so ensuring
  64.        that if you do have a legitimate copy of DDEUtils, it will
  65.        always be used.
  66.  
  67.        Note the need for the IfExist clause, otherwise if the user
  68.        does not have a DDEUtils module then this would generate an
  69.        error (missing file).
  70.  
  71.        For RISC OS 3.50 and later you may replace IfExist with
  72.        IfThere, a utility that comes supplied with the computer.
  73.  
  74.  
  75.    To use in a distribution:
  76.  
  77.        Place the DDEUtilsCy into a private directory, rename it
  78.        to DDEUtils, and set up a system variable such as:
  79.  
  80.           Set App$Path <System$Path>,<App$Dir>.
  81.           RMEnsure DDEUtils 0.02 %Obey -c App:InitDDECy
  82.           RMEnsure DDEUtils 0.02 RMRun App:DDEUtils
  83.  
  84.        Note that System$Path comes before anything else.
  85.  
  86.  
  87.    Support:
  88.  
  89.        For source code/support please email
  90.        mailto:ddeutils@cheepnis.demon.co.uk , or send a sae to:
  91.  
  92.                 Mr. Cy J. Booker
  93.                 86 Church View, Main Road
  94.                 Crockenhill, Swanley
  95.                 Kent.  BR8 8JW
  96.                 UK
  97.  
  98.  
  99.    History:
  100.    
  101.        v1.00       1993.10.28 first version
  102.        v2.00       1993.11.04 full throwback support
  103.        v3.00       1994.09.11 CLI support
  104.        v4.00       1994.12.04 Prefix API support
  105.        v5.00       1995.02.03 changed version to 0.01, docs
  106.        v5.01       1995.06.29 *Set Prefix$Dir sets CSD
  107.