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