home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / cdity / catchdisk / product-info < prev   
Encoding:
Text File  |  1995-10-25  |  2.7 KB  |  130 lines

  1. .name
  2. CatchDisk
  3. .author
  4. Alessandro Sala
  5. .email
  6. tser1500@cdc8g5.cdc.polimi.it
  7. .address
  8. Via A. Grandi, 16
  9. 20014 Nerviano (MI)
  10. Italy
  11. .version
  12. 1.20
  13. .date
  14. 1994.04.26
  15. .requirements
  16. OS 2.04+
  17. .description
  18. A simple commodity for "auto-formating" bad/unformatted disks.  Each time a
  19. disk is inserted into a drive, it checks to see if it is properly
  20. formatted.  If not, CatchDisk executes the Format program and asks the user
  21. if he wishes to format the disk.
  22. .described-by
  23. Richard Fish
  24. .docs
  25. english/Readme
  26. english/documentation/CatchDisk.doc
  27. english/documentation/CatchDisk.guide
  28. deutsch/Liesmich
  29. deutsch/dokumentation/CatchDisk.dok
  30. deutsch/dokumentation/CatchDisk.guide
  31. .reference
  32. AmigaLibDisk462:CacheDisk/
  33. 1.0
  34. FrozenFish-Apr94:BBS/ALib/d4xx/d462/CacheDisk.lha
  35. 1.0
  36. GoldFish1-Apr94:BBS/d4xx/d462/CacheDisk.lha
  37. 1.0
  38. GoldFish2-Apr94:d4xx/d462/CacheDisk/
  39. 1.0
  40. .short
  41. Commodity for auto-formatting disks.
  42. .aminet-dir
  43. util/cdity
  44. .execute
  45. set choice `RequestChoice "Catchdisk" "Please select an option" "View Doc" "View Guide" "Install Program" "Run Program" "Cancel"`
  46.  
  47. if $choice EQ "0"
  48.   quit 5
  49. endif
  50.  
  51. if $choice EQ "1"
  52.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Italiano" "Cancel"`
  53.   if $choice2 EQ "0"
  54.     quit 0
  55.   endif
  56.  
  57.   if $choice2 EQ "1"
  58.     cd deutsch/dokumentation
  59.     MetaTool CatchDisk.dok TEXT
  60.     cd //
  61.   endif
  62.  
  63.   if $choice2 EQ "2"
  64.     cd english/documentation
  65.     MetaTool CatchDisk.doc TEXT
  66.     cd //
  67.   endif
  68.  
  69.   if $choice2 EQ "3"
  70.     cd italiano/documentazione
  71.     MetaTool CatchDisk.doc TEXT
  72.     cd //
  73.   endif
  74. endif
  75.  
  76. if $choice EQ "2"
  77.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Italiano" "Cancel"`
  78.   if $choice2 EQ "0"
  79.     quit 0
  80.   endif
  81.  
  82.   if $choice2 EQ "1"
  83.     cd deutsch/dokumentation
  84.     MetaTool CatchDisk.guide TEXT
  85.     cd //
  86.   endif
  87.  
  88.   if $choice2 EQ "2"
  89.     cd english/documentation
  90.     MetaTool CatchDisk.guide TEXT
  91.     cd //
  92.   endif
  93.  
  94.   if $choice2 EQ "3"
  95.     cd italiano/documentazione
  96.     MetaTool CatchDisk.guide TEXT
  97.     cd //
  98.   endif
  99. endif
  100.  
  101. if $choice EQ "3"
  102.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Italiano" "Cancel"`
  103.   if $choice2 EQ "0"
  104.     quit 0
  105.   endif
  106.  
  107.   if $choice2 EQ "1"
  108.     cd deutsch
  109.     Installer SCRIPT Install APPNAME "CatchDisk v1.20" MINUSER AVERAGE DEFUSER AVERAGE
  110.     cd /
  111.   endif
  112.  
  113.   if $choice2 EQ "2"
  114.     cd english
  115.     Installer SCRIPT Install APPNAME "CatchDisk v1.20" MINUSER AVERAGE DEFUSER AVERAGE
  116.     cd /
  117.   endif
  118.  
  119.   if $choice2 EQ "3"
  120.     cd italiano
  121.     Installer SCRIPT Installa APPNAME "CatchDisk v1.20" MINUSER AVERAGE DEFUSER AVERAGE
  122.     cd /
  123.   endif
  124. endif
  125.  
  126. if $choice EQ "4"
  127.   assign locale: "" ADD
  128.   wbrun CatchDisk
  129. endif
  130.