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

  1. .name
  2. ADF
  3. .type
  4. CLI Tool
  5. .aminet-dir
  6. dev/misc
  7. .short
  8. Auto-Doc formatting utility
  9. .description
  10. Some years ago, CBM introduced a standard format for writing documentation
  11. of libraries and other system modules - the Autodocs.  This is a relatively
  12. good format and is used by many programmers which are interested in creating
  13. of additional system modules, but it is a bit hard to maintain, because it
  14. contains still the same headers for each function and the parameters are
  15. described on three different places.  The AutoDoc Formatter tries to
  16. simplify this hard work.
  17. .version
  18. 1.1
  19. .author
  20. Martin Mares
  21. .requirements
  22.  - Requires OS2.04+
  23.  - Requires ss.library 4+ (included)
  24. .distribution
  25. Freeware
  26. .email
  27. mjsoft@k332.feld.cvut.cz>.
  28. .docs
  29. ADF.doc
  30. Example.doc
  31. Example.asm
  32. .described-by
  33. Dan Fish (daf@starfish.amigalib.com)
  34. .submittal
  35. Downloaded via ftp from wuarchive.wustl.edu.
  36. .execute
  37. set choice `RequestChoice "ADF" "Please select an option" "View Doc 1" "View Doc 2" "Cancel"`
  38.  
  39. if $choice EQ "0"
  40.   quit 5
  41. endif
  42.  
  43. if $choice EQ "1"
  44.   MetaTool ADF.doc TEXT
  45. endif
  46.  
  47. if $choice EQ "2"
  48.   MetaTool Example.doc TEXT
  49. endif
  50.  
  51. if $choice EQ "4"
  52.   assign libs: libs/ ADD
  53.   ADF
  54. endif
  55.