home *** CD-ROM | disk | FTP | other *** search
/ The Glitch Apple Disk Collection / 2014.glitch.apple.collection.zip / indexed / AAF.DSK / UPAAF.DOC.txt < prev   
Text File  |  2014-09-09  |  2KB  |  51 lines

  1.  
  2. Andy Tefft
  3. ART100@psuvm.psu.edu
  4. 99 E. Main St.
  5. North East, PA 16428
  6.  
  7. upaaf.bas
  8. Version 1.00
  9.  
  10. This should be exec'ed under basic.system and then saved
  11. as aaf.unpacker.
  12.  
  13. Some notes that may/may not be mentioned in the program itself:
  14.  
  15. - it handles multiple files in one posting (of course)
  16. - it echoes lines to the screen that are before the first =
  17.   and after the last + (this isn't specified in the specs)
  18. - it attempts to detect whether the last file in the archive
  19.   was closed with a + line, and issues a warning if it's not.
  20.   it does not however check for a new = line occurring before a
  21.   + line. If this mistake exists in the file, the = line will
  22.   simply be echoed.
  23. - Because it's not easy to edit the archive on an apple //,
  24.   it will prompt for an output file name (default can of
  25.   course be used)
  26. - "pathname" means any valid prodos pathname, with or without
  27.   a leading volume/directory name. The prefix is shown and
  28.   prepended to any filenames without a leading slash (by prodos,
  29.   not my program). Use of an invalid pathname will generate
  30.   cryptic errors
  31. - control-c will exit the program at any time, and will display
  32.   error #255 and close all files. Because the program builds
  33.   up a list of the last 100 output lines to write to the file,
  34.   up to the last 100 lines will not be written to the output
  35.   file if you interrupt the program. Same for a disk full
  36.   error.
  37. - both input and output volumes must be online at the same time.
  38.   I had planned on allowing volume switches (that's why I buffer
  39.   100 output lines at a time), but I won't unless someone requests
  40.   it.
  41. - Output is formatted for 40 columns, but 80 columns can be
  42.   used if desired (this makes in-file comments easier to read).
  43.   80/40 columns should be selected by the user before running
  44.   the program.
  45. - ">>>" prefixes messages from the program (except prompts)
  46.   to distinguish them from in-file comments
  47. - input anything routine is (I think) from an old dos 3.3
  48.   public domain disk I found. It allows , and : in input lines.
  49.   Examine the program for usage.
  50.  
  51.