home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / misc / fetchrefs / product-info < prev    next >
Fred Fish's Product-Info  |  1995-10-04  |  2KB  |  75 lines

  1. .name
  2. FetchRefs
  3. .aminet-dir
  4. dev/misc
  5. .type
  6. Developer Utility
  7. .short
  8. AutoDoc/C-Asm-E include look-up tool.
  9. .description
  10. FetchRefs is (yet another) utility to quickly look up stuff in  AutoDocs
  11. and include files. You run an ARexx script (typically assigned to a key)
  12. from your editor when the cursor is at an unknown  word.  Then  you  get
  13. another  window with an AutoDoc or include file reference that describes
  14. this word (if it IS described at all, of course).
  15.  
  16. With support for both AutoDocs and C, Assembler,  and  E  include  files
  17. most  programmers  should  not  need  feel overlooked. ARexx scripts are
  18. provided for well known editors:  AmokEd,  CygnusEd,  DME,  GoldED,  and
  19. TurboText. Due to the ARexx interface, support for other editors is only
  20. a new ARexx script away!
  21.  
  22. Other advantages include wild card support, optionally case  insensitive
  23. search,  a  powerful  GUI  driven  index  file  generator,  support  for
  24. "TagList", "Tags" and "A" postfixes to function names and a window  with
  25. a  list  of  possibilities  if  you  search  for  something that several
  26. references match.
  27. .version
  28. 1.1
  29. .date
  30. 1994.10.31
  31. .author
  32. Anders Melchiorsen
  33. .requirements
  34. Requires OS2.x+
  35. .distribution
  36. Copyrighted but Freely Redistributable
  37. .address
  38. Gammel Skivevej 39
  39. 7870 Roslev
  40. Denmark
  41. .source
  42. Includes source in C
  43. .construction
  44. DICE - version 2.07.54
  45. .docs
  46. ReadMeFirst
  47. FetchRefs.doc
  48. FetchRefs.guide
  49. .described-by
  50. Dan Fish (daf@starfish.amigalib.com)
  51. .submittal
  52. Downloaded via ftp from wuarchive.wustl.edu.
  53. .execute
  54. set choice `RequestChoice "FetchRefs" "Please select an option" "View Readme" "View Doc" "View Guide" "Install Program" "Cancel"`
  55.  
  56. if $choice EQ "0"
  57.   quit 5
  58. endif
  59.  
  60. if $choice EQ "1"
  61.   MetaTool ReadMeFirst TEXT
  62. endif
  63.  
  64. if $choice EQ "2"
  65.   MetaTool FetchRefs.doc TEXT
  66. endif
  67.  
  68. if $choice EQ "3"
  69.   MetaTool FetchRefs.guide GUIDE
  70. endif
  71.  
  72. if $choice EQ "4"
  73.   Installer SCRIPT Install APPNAME FetchRefs MINUSER AVERAGE LOGFILE T:FetchRefs_Installer_log LANGUAGE english 
  74. endif
  75.