home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 595.lha / clip-handler_v0.16 / clip.doc < prev    next >
Text File  |  1991-08-02  |  2KB  |  94 lines

  1.  
  2.         CLIP-HANDLER 0.16 by Supervisor Software © 1991
  3.  
  4.  
  5. This little handler allows you to copy files to/from the clipboard device.
  6. For example, you may copy a file to CLIP: and then paste it into a text
  7. you are editing with your favourite text editor.  Or, you may cut a block
  8. of text and type it in a CLI window or save it into a file.
  9.  
  10. This program was placed in the public domain and it is freely distributable
  11. as long as this readme file is included with the distribution.
  12.  
  13.  
  14.  
  15. USAGE:
  16. ~~~~~~
  17.  
  18. First, add the supplied mountlist entries to your devs:mountlist and copy
  19. clip-handler to your L: directory.
  20.  
  21. Type "mount clip:" and you are ready to go.  Try list clip: or type clip:
  22. to see how it works.  The comment field of 'CLIP:' file displays the
  23. handler's version number.  You may add the mount command to your startup-
  24. sequence to mount clip-handler automatically whenever you boot your machine.
  25.  
  26.  
  27. Examples:
  28. To copy a file ram:test to clipboard device:
  29. copy ram:test clip:
  30.  
  31. To print all text in clip:
  32. copy clip: prt:
  33.  
  34. NOTE:
  35. Clip-handler understands IFF text chunks only.  Other data types will return
  36. a read-length of zero.
  37.  
  38.  
  39. Technical info:
  40. ~~~~~~~~~~~~~~~
  41.  
  42. Clip-handler supports ACTION_DIE packets and unloads its segment list when
  43. such a packet is received.  However, if other packets are received at the
  44. same time, a lockup is possible.  As ACTION_DIE was implemented for handler
  45. development only, this was not considered to be a problem.
  46.  
  47.  
  48. WB 2.0 notes:
  49. ~~~~~~~~~~~~~
  50.  
  51. Since some CLI commands of WB 2.0 don't seem to work well with handlers
  52. that support only part of dos file system packets a STUPID mode was added
  53. to clip-handler.  In this mode, only ACTION_FIND_INPUT/OUTPUT, ACTION_READ,
  54. ACTION_WRITE, ACTION_END, and ACTION_DIE packets are supported.  Use STUPID
  55. mode when working under 2.0 to get better results.
  56.  
  57. To activate STUPID mode add line
  58.   Startup = stupid
  59. in your mountlist entry (see the one supplied for CLIP1:).
  60.  
  61. If STUPID mode is not used under 2.0:
  62.  
  63.  * LIST command doesn't output anything (LIST CLIP1:)
  64.  * TYPE command doesn't work
  65.  
  66. but:
  67.  
  68.  * most other directory utilities work properly.
  69.  
  70. Note that the same problem is with names assigned to files, eg.:
  71.  
  72. echo >ram:testfile "This is a test"
  73. assign tf: ram:testfile
  74. list tf:        ; doesn't output anything (a bug in list, maybe?)
  75.  
  76.  
  77. All CLI commands should work properly under 1.2 / 1.3.
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84. Any comments and bug reports may be sent to
  85.  
  86.   jmarin@uku.fi
  87.  
  88.   Jukka Marin
  89.   Metsurintie 17 B 8
  90.   70150 Kuopio
  91.   FINLAND
  92.  
  93.  
  94.