1 ;;; holidays.el --- holiday functions for the calendar package
3 ;; Copyright (C) 1989, 90, 92, 93, 94, 1997 Free Software Foundation, Inc.
5 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
6 ;; Keywords: holidays, calendar
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; This collection of functions implements the holiday features as described
30 ;; Technical details of all the calendrical calculations can be found in
31 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
32 ;; Cambridge University Press (1997).
34 ;; An earlier version of the technical details appeared in
35 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
36 ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990),
37 ;; pages 899-928. ``Calendrical Calculations, Part II: Three Historical
38 ;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen,
39 ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
42 ;; Hard copies of these two papers can be obtained by sending email to
43 ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and
44 ;; the message BODY containing your mailing address (snail).
46 ;; Comments, corrections, and improvements should be sent to
47 ;; Edward M. Reingold Department of Computer Science
48 ;; (217) 333-6733 University of Illinois at Urbana-Champaign
49 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
50 ;; Urbana, Illinois 61801
56 (autoload 'holiday-julian
"cal-julian"
57 "Holiday on MONTH, DAY (Julian) called STRING."
60 (autoload 'holiday-hebrew
"cal-hebrew"
61 "Holiday on MONTH, DAY (Hebrew) called STRING."
64 (autoload 'holiday-rosh-hashanah-etc
"cal-hebrew"
65 "List of dates related to Rosh Hashanah, as visible in calendar window."
68 (autoload 'holiday-hanukkah
"cal-hebrew"
69 "List of dates related to Hanukkah, as visible in calendar window."
72 (autoload 'holiday-passover-etc
"cal-hebrew"
73 "List of dates related to Passover, as visible in calendar window."
76 (autoload 'holiday-tisha-b-av-etc
"cal-hebrew"
77 "List of dates around Tisha B'Av, as visible in calendar window."
80 (autoload 'holiday-islamic
"cal-islam"
81 "Holiday on MONTH, DAY (Islamic) called STRING."
84 (autoload 'holiday-chinese-new-year
"cal-china"
85 "Date of Chinese New Year."
88 (autoload 'solar-equinoxes-solstices
"solar"
89 "Date and time of equinoxes and solstices, if visible in the calendar window.
90 Requires floating point."
93 (defun holidays (&optional arg
)
94 "Display the holidays for last month, this month, and next month.
95 If called with an optional prefix argument, prompts for month and year.
97 This function is suitable for execution in a .emacs file."
100 (let* ((completion-ignore-case t
)
102 (calendar-read-date t
)
103 (calendar-current-date)))
104 (displayed-month (extract-calendar-month date
))
105 (displayed-year (extract-calendar-year date
)))
106 (list-calendar-holidays))))
109 (defun list-holidays (y1 y2
&optional l label
)
110 "Display holidays for years Y1 to Y2 (inclusive).
112 The optional list of holidays L defaults to `calendar-holidays'. See the
113 documentation for that variable for a description of holiday lists.
115 The optional LABEL is used to label the buffer created."
117 (let* ((start-year (calendar-read
118 "Starting year of holidays (>0): "
119 '(lambda (x) (> x
0))
120 (int-to-string (extract-calendar-year
121 (calendar-current-date)))))
122 (end-year (calendar-read
123 (format "Ending year (inclusive) of holidays (>=%s): "
125 '(lambda (x) (>= x start-year
))
126 (int-to-string start-year
)))
127 (completion-ignore-case t
)
130 (cons "All" calendar-holidays
)
132 (cons "Equinoxes/Solstices"
133 (list (list 'solar-equinoxes-solstices
))))
134 (if general-holidays
(cons "General" general-holidays
))
135 (if local-holidays
(cons "Local" local-holidays
))
136 (if other-holidays
(cons "Other" other-holidays
))
137 (if christian-holidays
(cons "Christian" christian-holidays
))
138 (if hebrew-holidays
(cons "Hebrew" hebrew-holidays
))
139 (if islamic-holidays
(cons "Islamic" islamic-holidays
))
140 (if oriental-holidays
(cons "Oriental" oriental-holidays
))
141 (if solar-holidays
(cons "Solar" solar-holidays
))
144 (completing-read "List (TAB for choices): " lists nil t
)))
145 (which (if (string-equal choice
"Ask")
146 (eval (read-variable "Enter list name: "))
147 (cdr (assoc choice lists
))))
148 (name (if (string-equal choice
"Equinoxes/Solstices")
150 (if (member choice
'("Ask" ""))
152 (format "%s Holidays" choice
)))))
153 (list start-year end-year which name
)))
154 (message "Computing holidays...")
155 (let* ((holiday-buffer "*Holidays*")
156 (calendar-holidays (if l l calendar-holidays
))
157 (title (or label
"Holidays"))
159 (s (calendar-absolute-from-gregorian (list 2 1 y1
)))
160 (e (calendar-absolute-from-gregorian (list 11 1 y2
)))
165 (while (or never
(<= d e
))
166 (setq holiday-list
(append holiday-list
(calendar-holiday-list)))
168 (increment-calendar-month displayed-month displayed-year
3)
169 (setq d
(calendar-absolute-from-gregorian
170 (list displayed-month
1 displayed-year
))))
172 (set-buffer (get-buffer-create holiday-buffer
))
173 (setq buffer-read-only nil
)
174 (calendar-set-mode-line
176 (format "%s for %s" title y1
)
177 (format "%s for %s-%s" title y1 y2
)))
179 (goto-char (point-min))
182 '(lambda (x) (concat (calendar-date-string (car x
))
185 (goto-char (point-min))
186 (set-buffer-modified-p nil
)
187 (setq buffer-read-only t
)
188 (display-buffer holiday-buffer
)
189 (message "Computing holidays...done"))))
192 (defun check-calendar-holidays (date)
193 "Check the list of holidays for any that occur on DATE.
194 The value returned is a list of strings of relevant holiday descriptions.
195 The holidays are those in the list calendar-holidays."
196 (let* ((displayed-month (extract-calendar-month date
))
197 (displayed-year (extract-calendar-year date
))
198 (h (calendar-holiday-list))
201 (if (calendar-date-equal date
(car (car h
)))
202 (setq holiday-list
(append holiday-list
(cdr (car h
)))))
206 (defun calendar-cursor-holidays ()
207 "Find holidays for the date specified by the cursor in the calendar window."
209 (message "Checking holidays...")
210 (let* ((date (calendar-cursor-to-date t
))
211 (date-string (calendar-date-string date
))
212 (holiday-list (check-calendar-holidays date
))
213 (holiday-string (mapconcat 'identity holiday-list
"; "))
214 (msg (format "%s: %s" date-string holiday-string
)))
215 (if (not holiday-list
)
216 (message "No holidays known for %s" date-string
)
217 (if (<= (length msg
) (frame-width))
219 (set-buffer (get-buffer-create holiday-buffer
))
220 (setq buffer-read-only nil
)
221 (calendar-set-mode-line date-string
)
223 (insert (mapconcat 'identity holiday-list
"\n"))
224 (goto-char (point-min))
225 (set-buffer-modified-p nil
)
226 (setq buffer-read-only t
)
227 (display-buffer holiday-buffer
)
228 (message "Checking holidays...done")))))
230 (defun mark-calendar-holidays ()
231 "Mark notable days in the calendar window."
233 (setq mark-holidays-in-calendar t
)
234 (message "Marking holidays...")
235 (let ((holiday-list (calendar-holiday-list)))
237 (mark-visible-calendar-date
238 (car (car holiday-list
)) calendar-holiday-marker
)
239 (setq holiday-list
(cdr holiday-list
))))
240 (message "Marking holidays...done"))
242 (defun list-calendar-holidays ()
243 "Create a buffer containing the holidays for the current calendar window.
244 The holidays are those in the list calendar-notable-days. Returns t if any
245 holidays are found, nil if not."
247 (message "Looking up holidays...")
248 (let ((holiday-list (calendar-holiday-list))
253 (if (not holiday-list
)
255 (message "Looking up holidays...none found")
257 (set-buffer (get-buffer-create holiday-buffer
))
258 (setq buffer-read-only nil
)
259 (increment-calendar-month m1 y1 -
1)
260 (increment-calendar-month m2 y2
1)
261 (calendar-set-mode-line
263 (format "Notable Dates from %s to %s, %d%%-"
264 (calendar-month-name m1
) (calendar-month-name m2
) y2
)
265 (format "Notable Dates from %s, %d to %s, %d%%-"
266 (calendar-month-name m1
) y1
(calendar-month-name m2
) y2
)))
270 '(lambda (x) (concat (calendar-date-string (car x
))
273 (goto-char (point-min))
274 (set-buffer-modified-p nil
)
275 (setq buffer-read-only t
)
276 (display-buffer holiday-buffer
)
277 (message "Looking up holidays...done")
280 (defun calendar-holiday-list ()
281 "Form the list of holidays that occur on dates in the calendar window.
282 The holidays are those in the list calendar-holidays."
283 (let ((p calendar-holidays
)
287 (if calendar-debug-sexp
288 (let ((stack-trace-on-error t
))
293 (message "Bad holiday list item: %s" (car p
))
296 (setq holiday-list
(append holidays holiday-list
))))
298 (setq holiday-list
(sort holiday-list
'calendar-date-compare
))))
300 ;; Below are the functions that calculate the dates of holidays; these
301 ;; are eval'ed in the function calendar-holiday-list. If you
302 ;; write other such functions, be sure to imitate the style used below.
303 ;; Remember that each function must return a list of items of the form
304 ;; ((month day year) string) of VISIBLE dates in the calendar window.
306 (defun holiday-fixed (month day string
)
307 "Holiday on MONTH, DAY (Gregorian) called STRING.
308 If MONTH, DAY is visible, the value returned is the list (((MONTH DAY year)
309 STRING)). Returns nil if it is not visible in the current calendar window."
310 (let ((m displayed-month
)
312 (increment-calendar-month m y
(- 11 month
))
314 (list (list (list month day y
) string
)))))
316 (defun holiday-float (month dayname n string
&optional day
)
317 "Holiday on MONTH, DAYNAME (Nth occurrence) called STRING.
318 If the Nth DAYNAME in MONTH is visible, the value returned is the list
319 \(((MONTH DAY year) STRING)).
321 If N<0, count backward from the end of MONTH.
323 An optional parameter DAY means the Nth DAYNAME on or after/before MONTH DAY.
325 Returns nil if it is not visible in the current calendar window."
326 ;; This is messy because the holiday may be visible, while the date on which
327 ;; it is based is not. For example, the first Monday after December 30 may be
328 ;; visible when January is not. For large values of |n| the problem is more
329 ;; grotesque. If we didn't have to worry about such cases, we could just use
331 ;; (let ((m displayed-month)
332 ;; (y displayed-year))
333 ;; (increment-calendar-month m y (- 11 month))
334 ;; (if (> m 9); month in year y is visible
335 ;; (list (list (calendar-nth-named-day n dayname month y day) string)))))
337 ;; which is the way the function was originally written.
339 (let* ((m1 displayed-month
)
343 (increment-calendar-month m1 y1 -
1)
344 (increment-calendar-month m2 y2
1)
345 (let* ((d1; first possible base date for holiday
346 (+ (calendar-nth-named-absday 1 dayname m1 y1
)
349 (d2; last possible base date for holiday
350 (+ (calendar-nth-named-absday -
1 dayname m2 y2
)
353 (y1 (extract-calendar-year (calendar-gregorian-from-absolute d1
)))
354 (y2 (extract-calendar-year (calendar-gregorian-from-absolute d2
)))
355 (y; year of base date
356 (if (or (= y1 y2
) (> month
9))
362 (calendar-last-day-of-month month y
))))
363 (date; base date for holiday
364 (calendar-absolute-from-gregorian (list month d y
))))
365 (if (and (<= d1 date
) (<= date d2
))
366 (list (list (calendar-nth-named-day n dayname month y d
)
369 (defun holiday-sexp (sexp string
)
370 "Sexp holiday for dates in the calendar window.
371 SEXP is an expression in variable `year' evaluates to `date'.
373 STRING is an expression in `date' that evaluates to the holiday description
376 If `date' is visible in the calendar window, the holiday STRING is on that
377 date. If date is nil, or if the date is not visible, there is no holiday."
378 (let ((m displayed-month
)
380 (increment-calendar-month m y -
1)
381 (filter-visible-calendar-holidays
385 (string (if date
(eval string
))))
386 (list (list date string
)))
389 (string (if date
(eval string
))))
390 (list (list date string
)))))))
392 (defun holiday-advent ()
393 "Date of Advent, if visible in calendar window."
394 (let ((year displayed-year
)
395 (month displayed-month
))
396 (increment-calendar-month month year -
1)
397 (let ((advent (calendar-gregorian-from-absolute
398 (calendar-dayname-on-or-before 0
399 (calendar-absolute-from-gregorian
400 (list 12 3 year
))))))
401 (if (calendar-date-is-visible-p advent
)
402 (list (list advent
"Advent"))))))
404 (defun holiday-easter-etc ()
405 "List of dates related to Easter, as visible in calendar window."
406 (if (and (> displayed-month
5) (not all-christian-calendar-holidays
))
407 nil
;; Ash Wednesday, Good Friday, and Easter are not visible.
408 (let* ((century (1+ (/ displayed-year
100)))
409 (shifted-epact ;; Age of moon for April 5...
410 (%
(+ 14 (* 11 (% displayed-year
19));; ...by Nicaean rule
411 (- ;; ...corrected for the Gregorian century rule
413 (/ ;; ...corrected for Metonic cycle inaccuracy.
414 (+ 5 (* 8 century
)) 25)
415 (* 30 century
));; Keeps value positive.
417 (adjusted-epact ;; Adjust for 29.5 day month.
418 (if (or (= shifted-epact
0)
419 (and (= shifted-epact
1) (< 10 (% displayed-year
19))))
422 (paschal-moon ;; Day after the full moon on or after March 21.
423 (- (calendar-absolute-from-gregorian (list 4 19 displayed-year
))
425 (abs-easter (calendar-dayname-on-or-before 0 (+ paschal-moon
7)))
428 (list (calendar-gregorian-from-absolute abs-easter
)
430 (list (calendar-gregorian-from-absolute (- abs-easter
2))
432 (list (calendar-gregorian-from-absolute (- abs-easter
46))
436 (list (calendar-gregorian-from-absolute (- abs-easter
63))
437 "Septuagesima Sunday")
438 (list (calendar-gregorian-from-absolute (- abs-easter
56))
440 (list (calendar-gregorian-from-absolute (- abs-easter
49))
442 (list (calendar-gregorian-from-absolute (- abs-easter
48))
444 (list (calendar-gregorian-from-absolute (- abs-easter
47))
446 (list (calendar-gregorian-from-absolute (- abs-easter
14))
448 (list (calendar-gregorian-from-absolute (- abs-easter
7))
450 (list (calendar-gregorian-from-absolute (- abs-easter
3))
452 (list (calendar-gregorian-from-absolute (+ abs-easter
35))
454 (list (calendar-gregorian-from-absolute (+ abs-easter
39))
456 (list (calendar-gregorian-from-absolute (+ abs-easter
49))
457 "Pentecost (Whitsunday)")
458 (list (calendar-gregorian-from-absolute (+ abs-easter
50))
460 (list (calendar-gregorian-from-absolute (+ abs-easter
56))
462 (list (calendar-gregorian-from-absolute (+ abs-easter
60))
465 (filter-visible-calendar-holidays mandatory
)))
466 (if all-christian-calendar-holidays
469 (filter-visible-calendar-holidays optional
)
473 (defun holiday-greek-orthodox-easter ()
474 "Date of Easter according to the rule of the Council of Nicaea."
475 (let ((m displayed-month
)
477 (increment-calendar-month m y
1)
479 (extract-calendar-year
480 (calendar-julian-from-absolute
481 (calendar-absolute-from-gregorian
482 (list m
(calendar-last-day-of-month m y
) y
)))))
483 (shifted-epact ;; Age of moon for April 5.
485 (* 11 (% julian-year
19)))
487 (paschal-moon ;; Day after full moon on or after March 21.
488 (- (calendar-absolute-from-julian (list 4 19 julian-year
))
490 (nicaean-easter;; Sunday following the Paschal moon
491 (calendar-gregorian-from-absolute
492 (calendar-dayname-on-or-before 0 (+ paschal-moon
7)))))
493 (if (calendar-date-is-visible-p nicaean-easter
)
494 (list (list nicaean-easter
"Pascha (Greek Orthodox Easter)"))))))
496 (defun filter-visible-calendar-holidays (l)
497 "Return a list of all visible holidays of those on L."
502 (calendar-date-is-visible-p (car (car p
)))
503 (setq visible
(append (list (car p
)) visible
)))
509 ;;; holidays.el ends here