home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1617 / calendar next >
Encoding:
Text File  |  1990-12-28  |  1.1 KB  |  42 lines

  1. # Sample calendar file for pcal
  2. #
  3. # This should be ~/calendar on Unix, SYS$LOGIN:CALENDAR.DAT on VMS
  4. #
  5. # Valid entries are of the following forms:
  6. #
  7. #    year <year>
  8. #    <month_name> <day>{*} {<text>}
  9. #    <month><sep><day>{<sep><year>}{*} {<text>}
  10. #
  11. # where:
  12. #    <month_name> := first 3+ characters of name of month (in English)
  13. #    <sep> := one or more non-numeric, non-space, non-'*' characters
  14. #    <text> is the text to be printed in the calendar box
  15. #    <day>, <month>, and <year> are appropriate integers
  16. #
  17. #    whitespace is to be used/avoided as implied by the above productions
  18. #    '*' flags the date as a holiday (to be printed in gray)
  19. #    comments run from '#' through end-of-line
  20.  
  21. year 1990                # set year explicitly
  22.  
  23. 5/28* Memorial Day (observed)        # '*' prints holiday in gray
  24. 5/31 Memorial Day
  25.  
  26. 7/4/90* Independence Day        # full date format
  27. 7/15 First line of text
  28. 7/15 Second line of text
  29.  
  30. Sep 3* Labor Day            # month written out
  31.  
  32. 10/8* Columbus Day (observed)
  33. 10/12 Columbus Day
  34.  
  35. 11/22* Thanksgiving
  36. 11/23*                    # holiday without text
  37.  
  38. 12/24* Christmas
  39. 12/25*
  40.  
  41. 1/1/91* New Year's Day            # set new year implicitly
  42.