home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / podstawy / dos / 4dos / 4uzytki / dfc131.exe / DFC.DOC < prev    next >
Text File  |  1992-11-15  |  5KB  |  127 lines

  1. DFC - Dave's floppy disk cataloguer                          October, 3, 1992
  2. =============================================================================
  3.  
  4. REMARK: DFC is based on TFC (Tobi's file cataloguer), another superbe 4DOS
  5.         file cataloguer program.
  6.  
  7. DISCLAIMER
  8. -----------------------------------------------------------------------------
  9.  
  10. - This program is released into the Public Domain ...
  11.  
  12. - I am not liable for any damage it does to your System ...
  13.  
  14. - DFC didn't ever do any damage to my system and it is not likely to even be
  15.   capable of doing so.
  16.  
  17. - You can enhance the DFC or make any changes you like but please mention
  18.   my name and address in the file. (and Tobi's)
  19.  
  20. - If you do nice enhancments to DFC please mail them to
  21.  
  22.     Tobi Oetiker (oetiker@iis.ethz.ch) - the author of TFC -,
  23.  
  24.   so that he can include them into the next version.
  25.  
  26.  
  27. HISTORY
  28. -----------------------------------------------------------------------------
  29. The history of DFC is short and simple. One day I got TFC (Tobi's file
  30. cataloguer) and was inspired by his idea.
  31.  
  32. Unfortunately I'm neither a user of dBase etc. nor an owner, and so I decided
  33. to enhance TFC. The disk database is now in "human readable" form and can be
  34. printed by typing `print disks.db' or `copy disks.db prn:' (put printer in
  35. 132 columns mode first!)
  36.  
  37. Then, I was annoyed about labelling the disk, describing the files and typing
  38. "dfc scan a:", so the next step was a menu. (Yes, I know, you *should* label
  39. your disks and describe *all* files...). In this menu you can scan disks,
  40. search for files and edit your disk database directly etc.
  41.  
  42. P.S: The command line options are still available, of course:
  43.       "scan","find" and "compare"
  44.  
  45.      Usage: dfc scan <drive>
  46.             dfc find <filename>
  47.             dfc compare <filename>
  48.  
  49. This version of DFC (1.3) has been improved by Itamar Even-Zohar.
  50. In addition, I have incorporated his "findall" batch file.
  51.  
  52.  
  53. CUSTOMIZING DFC / IMPLEMENTATION SPECIFIC DETAILS
  54. -----------------------------------------------------------------------------
  55.  . In the environment variable DISKDB the path and name of the disk database
  56.    is stored. Should DISKDB be empty, the path will be the path where DFC is
  57.    located and the default name is "disk.db".
  58.  
  59.  . DFC distinguishes between color and monochrome monitors (by using 4DOS'
  60.    environment variable _MONITOR), but you may remove the parts not needed,
  61.    to speed DFC up.
  62.  
  63. |. I've decided to put the installation specific parts (your favorite editor,
  64. |  the 4DOS description editor, your list program etc.) into environment
  65. |  variables. So, you need only to change this section to customize DFC.
  66. |
  67. |  The sections looks like this:
  68. |
  69. |       :
  70. |       :
  71. |  set edt=%@search[tpe.exe]
  72. |  set desced=%@search[4desc.exe]
  73. |  set ff=%@search[ff.exe]
  74. |  set grep=%@search[grep.exe]
  75. |  set list=list
  76. |       :
  77. |       :
  78. |
  79. |  Change it to
  80. |
  81. |       :
  82. |       :
  83. |  set edt=%@search[<your favorite editor>]
  84. |  set desced=%@search[<a 4DOS description editor>]
  85. |  set ff=%@search[<a file finder>]
  86. |  set grep=%@search[< a GREP grogram (GNU's grep preferred>]
  87. |  set list=<a file lister - for example 4DOS internal "list">
  88. |       :
  89. |       :
  90. |
  91. |  Remarks: * Use GNU's grep whenever possible, or you may have to change the
  92. |             command line switches...
  93. |           * The directory where your application resides in will be deter-
  94. |             mined by 4DOS' %@search, that means that your application must
  95. |             be included in the PATH!
  96. |             (Of course, there is the possibility to write the whole path
  97. |              e.g. C:\TOOLS\tpe.exe, but I think that is not a good idea.
  98. |              Why ? I, for myself, have copied the files I often use to a
  99. |              RAM-disk - this minimizes hard disk accesses and speeds up
  100. |              your work. By using %@search, DFC will find the versions on
  101. |              the RAM-disk first. If you have removed your RAM disk - to
  102. |              save memory - DFC will still find the versions on your hard
  103. |              disk. (Assuming that your path is set to <RAM-disk>;C:\...)
  104. |
  105.  
  106.  . Color scheme -- (the same thing as with editors): Your taste is probably
  107.    different, so you may want to change the colors / remove them.
  108.  
  109.  . Feel free to make other changes, (nice enhancements are appreciated)
  110.  
  111.  
  112. How to reach me ...
  113.  
  114.     Mail: David Frey
  115.           Urdorferstrasse 30
  116.           CH-8952 Schlieren
  117.           Switzerland
  118.  
  119.  
  120. PROGRAMS MENTIONED
  121. -----------------------------------------------------------------------------
  122. TFC   - Tobi's File cataloge r    PD - (C) 4-01-92, 2:31 PM  by Tobi Oetiker
  123. TFC2  - Tobi's File cataloger     PD - (C) 4-01-92, 2:31 PM  by Tobi Oetiker *
  124. TPE   - Turbo Power's editor      PD - (c) 1990-1992 TurboPower Software
  125. 4DESC - 4DOS description editor   PD - (c) 1992 David Frey & Tom Bowden
  126.  
  127. * Tobi has made a Turbo Vision shell around his TFC.BTM file - very nice!