home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / wb / deft_ii / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-24  |  2.6 KB  |  110 lines

  1. .name
  2. Deft_II
  3. .aminet-dir
  4. util/wb
  5. .type
  6. Workbench Tool
  7. .short
  8. Recursively modify icon default tools
  9. .description
  10. Deft II is an utility to modify the default tools of your icons; you
  11. give to it a set of paths, a set of old/new default tool couples, and
  12. Deft II will recursively scan all these paths to change the default
  13. tools of your project icons according to your preferences.
  14.  
  15. Deft II is a powerful tool, here are its main features :
  16.    -    a MUI GUI with all the consequent convenience for the user
  17.     (keyboard shortcuts, appwindows, etc)
  18.    -    multi-paths handling for scanning
  19.    -    multi-default tools for replacing
  20.    -    wildcard using for the default tools to replace
  21.    -    preferences saving
  22.    -    ARexx support
  23.    -    online help
  24. .version
  25. 1.6
  26. .date
  27. 1994.11.15
  28. .author
  29. Lionel Vintenat
  30. .distribution
  31. Copyrighted but Freely Distributable
  32. .email
  33. vintenat@reseau.onecert.fr
  34. .docs
  35. docs/English/Deft II.guide
  36. docs/Français/Deft II.guide
  37. .described-by
  38. Fred Fish (fnf@amigalib.com)
  39. .submittal
  40. Downloaded via ftp from aminet (wuarchive.wustl.edu).
  41. .execute
  42. set choice `RequestChoice "Deft II" "Please select an option" "ReadMe" "Guide" "View Sources" "Install" "Run" "Cancel"`
  43. if $choice EQ "0"
  44.   quit 5
  45. endif
  46.  
  47. if $choice EQ "1"
  48.   set lang `RequestChoice "" "Select Language" "english" "français" "Cancel"`
  49.   if $lang EQ "0"
  50.     quit 0
  51.   endif
  52.  
  53.   if $lang EQ "1"
  54.     MetaTool ReadMe.first TEXT
  55.   endif
  56.  
  57.   if $lang EQ "2"
  58.     MetaTool LisezMoi.d_abord TEXT
  59.   endif
  60. endif
  61.  
  62. if $choice EQ "2"
  63.   set lang `RequestChoice "" "Select Language" "english" "français" "Cancel"`
  64.  
  65.   if $lang EQ "0"
  66.     quit 0
  67.   endif
  68.  
  69.   if $lang EQ "1"
  70.     cd Docs/English
  71.     MetaTool "Deft II.guide" GUIDE
  72.   endif
  73.  
  74.   if $lang EQ "2"
  75.     cd Docs/Français
  76.     MetaTool "Deft II.guide" GUIDE
  77.   endif
  78. endif
  79.  
  80. if $choice EQ "3"
  81.   cd Sources
  82.   set filechoice `RequestFile TITLE "Select File"`
  83.   set dirchoice `pathname $filechoice`
  84.   set filechoice `basename $filechoice`
  85.   failat 21
  86.   cd $dirchoice
  87.   MetaTool $filechoice TEXT
  88. endif
  89.  
  90. if $choice EQ "4"
  91.   cd Install
  92.   set lang `RequestChoice "" "Select Language" "english" "deutsch" "français" "Cancel"`
  93.  
  94.   if $lang EQ "1"
  95.     Installer SCRIPT Install APPNAME "Deft II" MINUSER average DEFUSER average NOPRINT LANGUAGE english LOGFILE t:Install_DeftII_log
  96.   endif
  97.  
  98.   if $lang EQ "2"
  99.     Installer SCRIPT Install APPNAME "Deft II" MINUSER average DEFUSER average NOPRINT LANGUAGE deutsch LOGFILE t:Install_DeftII_log
  100.   endif
  101.  
  102.   if $lang EQ "2"
  103.     Installer SCRIPT Install APPNAME "Deft II" MINUSER average DEFUSER average NOPRINT LANGUAGE français LOGFILE t:Install_DeftII_log
  104.   endif
  105. endif
  106.  
  107. if $choice EQ "5"
  108.   WBRun "Deft II"
  109. endif
  110.