home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / comm / misc / phonebill / product-info < prev   
Fred Fish's Product-Info  |  1995-09-27  |  3KB  |  104 lines

  1. .name
  2. Phonebill
  3. .type
  4. Communications
  5. .short
  6. Log file analyzer-determine call costs
  7. .description
  8.    `phonebill' is, simply said, a log file analyzer. What it basically
  9. does is scan log file(s) generated by a terminal program or a mailer,
  10. extract all information about calls you have made by using your modem,
  11. and store this in its own (short) format. After extracting the calls
  12. `phonebill' can generate various reports in which you can find
  13. information on duration and costs of the calls.
  14. .version
  15. 3.3c
  16. .date
  17. 1995.08.10
  18. .author
  19. Raymond Penners
  20. .restrictions
  21. * Binary log file maintenance and report presets are disabled.
  22.  
  23. * `phonebill' only calculates the fees with up to two decimals (e.g.
  24.   $0,15). In the registered version nine decimals are supported,
  25.   which provides a better accuracy.
  26. .reference
  27. AmigaLibDisk917:PhoneBill/
  28. 1.08
  29. FreshFish-Vol1:New/AmigaLibDisks/Disk917/PhoneBill/
  30. 1.08
  31. FreshFish-Vol2:Old/AmigaLibDisks/Disks900-919/Disk917/PhoneBill/
  32. 1.08
  33. FrozenFish-Vol1:BBS/ALib/d9xx/d917/PhoneBill.lha
  34. 1.08
  35. GoldFish-Vol1-1:BBS/d9xx/d917/PhoneBill.lha
  36. 1.08
  37. GoldFish-Vol1-2:d9xx/d917/Phonebill/
  38. 1.08
  39. .distribution
  40. Shareware
  41. .price
  42. $10 (US), DM 15, FL 15, AUD $15
  43. .address
  44. Raymond Penners
  45. Berkenlaan 4
  46. NL-6241 AZ Bunde (The Netherlands)
  47. .email
  48. raymondp@stack.urc.tue.nl
  49. .docs
  50. Documentation/Phonebill.doc
  51. Documentation/Phonebill.dvi
  52. Documentation/Phonebill.guide
  53. Documentation/Register.doc
  54. Documentation/Register.Italy
  55. .described-by
  56. Richard Fish (rjf@amigalib.com)
  57. .submittal
  58. Downloaded via ftp from wuarchive.wustl.edu.
  59. .aminet-dir
  60. comm/misc
  61. .execute
  62. set choice `RequestChoice "PhoneBill" "Please select an option" "View Doc" "View Guide" "Install Program" "Run Program" "Cancel"`
  63. if $choice EQ "0"
  64.   quit 5
  65. endif
  66.  
  67. if $choice EQ "1"
  68.   MetaTool Documentation/PhoneBill.doc  TEXT
  69. endif
  70.  
  71. if $choice EQ "2"
  72.   cd Documentation
  73.   MetaTool Phonebill.guide GUIDE
  74.   cd /
  75. endif
  76.  
  77. if $choice EQ "3"
  78.   set choice2 `RequestChoice "Install PhoneBill" "Please select a language" "English" "Italiano" "Nederlands" "Svenska" "Cancel"`
  79.  
  80.   if $choice2 EQ "0"
  81.     quit 0
  82.   endif
  83.  
  84.   if $choice2 EQ "1"
  85.     installer SCRIPT "Install/Install" APPNAME Phonebill MINUSER EXPERT DEFUSER EXPERT LANGUAGE english NOPRETEND
  86.   endif
  87.  
  88.   if $choice2 EQ "2"
  89.     installer SCRIPT "Install/Install" APPNAME Phonebill MINUSER EXPERT DEFUSER EXPERT LANGUAGE italiano NOPRETEND
  90.   endif
  91.  
  92.   if $choice2 EQ "3"
  93.     installer SCRIPT "Install/Install" APPNAME Phonebill MINUSER EXPERT DEFUSER EXPERT LANGUAGE nederlands NOPRETEND
  94.   endif
  95.  
  96.   if $choice2 EQ "4"
  97.     installer SCRIPT "Install/Install" APPNAME Phonebill MINUSER EXPERT DEFUSER EXPERT LANGUAGE svenska NOPRETEND
  98.   endif
  99. endif
  100.  
  101. if $choice EQ "4"
  102.   PhoneBill
  103. endif
  104.