home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1813 / calendar next >
Text File  |  1990-12-28  |  1KB  |  47 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. #    opt <options>
  8. #    year <year>
  9. #    <month_name> <day>{*} {<text>}
  10. #    <month><sep><day>{<sep><year>}{*} {<text>}
  11. #
  12. # where:
  13. #    <options> := one or more valid command-line options (except -e and -f)
  14. #    <month_name> := first 3+ characters of name of month (in English)
  15. #    <sep> := one or more non-numeric, non-space, non-'*' characters
  16. #    <text> is the text to be printed in the calendar box
  17. #    <day>, <month>, and <year> are appropriate integers
  18. #
  19. #    whitespace is to be used/avoided as implied by the above productions
  20. #    '*' flags the date as a holiday (to be printed in gray)
  21. #    comments run from '#' through end-of-line
  22.  
  23. # A sample "opt" line to change the fonts and output file names and to print
  24. # only Sundays in gray:
  25. #
  26. #opt -d Helvetica-Bold -t Helvetica-Bold -o myfile.ps -b all -g sun
  27.  
  28. year 1990                # set year explicitly
  29.  
  30. 5/28* Memorial Day (observed)        # '*' prints holiday in gray
  31. 5/31 Memorial Day
  32.  
  33. 7/4/90* Independence Day        # full date format
  34.  
  35. Sep 3* Labor Day            # month written out
  36.  
  37. 10/8* Columbus Day (observed)
  38. 10/12 Columbus Day
  39.  
  40. 11/22* Thanksgiving
  41. 11/23*                    # holiday without text
  42.  
  43. 12/24* # Christmas Eve
  44. 12/25* Christmas
  45.  
  46. 1/1/91* New Year's Day            # set new year implicitly
  47.