home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / print / afmt2.pro < prev    next >
Encoding:
Text File  |  1988-05-03  |  3.8 KB  |  75 lines

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : Ada Pretty Printing Program
  5. -- Version      : 1.2
  6. -- Author       : Marlow Henne (AF Armament Lab) and Larry Neal (Gen Res Corp)
  7. --              : Air Force Armament Lab (DLMM)
  8. --              : -and-
  9. --              : General Research Corp, Ft Walton Beach, FL
  10. --              : Modified by Alan Woody (WOODY%TI-EG@CSNET-RELAY) for Vers 1.2
  11. --              : Submitted and Modified by Richard Conn (RCONN at SIMTEL20)
  12. -- DDN Address  : 
  13. -- Copyright    :
  14. -- Date created :  2 July 85
  15. -- Release date :  2 July 85
  16. -- Last update  :  24 July 85
  17. -- Machine/System Compiled/Run on : DEC VAX 11/785, DEC Pascal
  18. --                                                           -*
  19. ---------------------------------------------------------------
  20. --                                                           -*
  21. -- Keywords     :  Ada Pretty Printer, Pretty Printer, Pascal
  22. ----------------:
  23. --
  24. -- Abstract     :  
  25. ----------------:  This program takes as input an Ada program and
  26. -- reformats the program according to a standard set of pretty printing
  27. -- rules.  No effort is made to detect or correct syntactic errors.
  28. -- See the comments at the front of the program for credits, revision
  29. -- history, and details on the pretty printing rules and operation.
  30. --
  31. --    ADAFMT is the original program, extracted from NOSC-TECR with
  32. -- permission of Col Bill Whitaker.  ADAFMT1 is a modified version
  33. -- which contains one minor problem:  "package ... is new" constructs
  34. -- cause the indentation level to increase.  Provided files include
  35. -- a short documentation file (ADAFMT.DOC) and command files (ADAFMT.COM
  36. -- and ADAFMT1.COM).  ADAFMT2 has corrected all known bugs in ADAFMT1
  37. -- and has extended the completeness and functionality of the program.
  38. --
  39. --                                                           -*
  40. ------------------ Revision history ---------------------------
  41. --                                                           -*
  42. -- DATE         VERSION    AUTHOR                  HISTORY
  43. -- 19850702    1.1    Marlow Henne        Initial release to repository
  44. -- 19850724     1.2     Alan Woody              Bug fixes and extension
  45. --                                                           -*
  46. ------------------ Distribution and Copyright -----------------
  47. --                                                           -*
  48. -- This prologue must be included in all copies of this software.
  49. --
  50. -- This software is released to the Ada community.
  51. -- This software is released to the Public Domain (note:
  52. --   software released to the Public Domain is not subject
  53. --   to copyright protection).
  54. -- Restrictions on use or distribution:  NONE
  55. --                                                           -*
  56. ------------------ Disclaimer ---------------------------------
  57. --                                                           -*
  58. -- This software and its documentation are provided "AS IS" and
  59. -- without any expressed or implied warranties whatsoever.
  60. -- No warranties as to performance, merchantability, or fitness
  61. -- for a particular purpose exist.
  62. --
  63. -- Because of the diversity of conditions and hardware under
  64. -- which this software may be used, no warranty of fitness for
  65. -- a particular purpose is offered.  The user is advised to
  66. -- test the software thoroughly before relying on it.  The user
  67. -- must assume the entire risk and liability of using this
  68. -- software.
  69. --
  70. -- In no event shall any person or organization of people be
  71. -- held responsible for any direct, indirect, consequential
  72. -- or inconsequential damages or lost profits.
  73. --                                                           -*
  74. -------------------END-PROLOGUE--------------------------------
  75.