Bump version number to 23.0.95.
[emacs.git] / lisp / calendar / calendar.el
blob47bf62fa06a91426c400c5497bb2d444ad4e8161
1 ;;; calendar.el --- calendar functions
3 ;; Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 ;; Free Software Foundation, Inc.
7 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
8 ;; Maintainer: Glenn Morris <rgm@gnu.org>
9 ;; Keywords: calendar
10 ;; Human-Keywords: calendar, Gregorian calendar, diary, holidays
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; This collection of functions implements a calendar window. It
30 ;; generates a calendar for the current month, together with the
31 ;; previous and coming months, or for any other three-month period.
32 ;; The calendar can be scrolled forward and backward in the window to
33 ;; show months in the past or future; the cursor can move forward and
34 ;; backward by days, weeks, or months, making it possible, for
35 ;; instance, to jump to the date a specified number of days, weeks, or
36 ;; months from the date under the cursor. The user can display a list
37 ;; of holidays and other notable days for the period shown; the
38 ;; notable days can be marked on the calendar, if desired. The user
39 ;; can also specify that dates having corresponding diary entries (in
40 ;; a file that the user specifies) be marked; the diary entries for
41 ;; any date can be viewed in a separate window. The diary and the
42 ;; notable days can be viewed independently of the calendar. Dates
43 ;; can be translated from the (usual) Gregorian calendar to the day of
44 ;; the year/days remaining in year, to the ISO commercial calendar, to
45 ;; the Julian (old style) calendar, to the Hebrew calendar, to the
46 ;; Islamic calendar, to the Baha'i calendar, to the French
47 ;; Revolutionary calendar, to the Mayan calendar, to the Chinese
48 ;; calendar, to the Coptic calendar, to the Ethiopic calendar, and to
49 ;; the astronomical (Julian) day number. Times of sunrise/sunset can
50 ;; be displayed, as can the phases of the moon. Appointment
51 ;; notification for diary entries is available. Calendar printing via
52 ;; LaTeX is available.
54 ;; The following files are part of the calendar/diary code:
56 ;; appt.el Appointment notification
57 ;; cal-bahai.el Baha'i calendar
58 ;; cal-china.el Chinese calendar
59 ;; cal-coptic.el Coptic/Ethiopic calendars
60 ;; cal-dst.el Daylight saving time rules
61 ;; cal-french.el French revolutionary calendar
62 ;; cal-hebrew.el Hebrew calendar
63 ;; cal-html.el Calendars in HTML
64 ;; cal-islam.el Islamic calendar
65 ;; cal-iso.el ISO calendar
66 ;; cal-julian.el Julian/astronomical calendars
67 ;; cal-mayan.el Mayan calendars
68 ;; cal-menu.el Menu support
69 ;; cal-move.el Movement in the calendar
70 ;; cal-persia.el Persian calendar
71 ;; cal-tex.el Calendars in LaTeX
72 ;; cal-x.el Dedicated frame functions
73 ;; calendar.el This file
74 ;; diary-lib.el Diary functions
75 ;; holidays.el Holiday functions
76 ;; lunar.el Phases of the moon
77 ;; solar.el Sunrise/sunset, equinoxes/solstices
79 ;; Technical details of all the calendrical calculations can be found in
80 ;; ``Calendrical Calculations: The Millennium Edition'' by Edward M. Reingold
81 ;; and Nachum Dershowitz, Cambridge University Press (2001).
83 ;; An earlier version of the technical details appeared in
84 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
85 ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990),
86 ;; pages 899-928, and in ``Calendrical Calculations, Part II: Three Historical
87 ;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen,
88 ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
89 ;; pages 383-404.
91 ;; Hard copies of these two papers can be obtained by sending email to
92 ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and
93 ;; the message BODY containing your mailing address (snail).
96 ;; A note on free variables:
98 ;; The calendar passes around a few dynamically bound variables, which
99 ;; unfortunately have rather common names. They are meant to be
100 ;; available for external functions, so the names can't be changed.
102 ;; displayed-month, displayed-year: bound in calendar-generate, the
103 ;; central month of the 3 month calendar window
104 ;; original-date, number: bound in diary-list-entries, the arguments
105 ;; with which that function was called.
106 ;; date, entry: bound in diary-list-sexp-entries (qv)
108 ;; Bound in diary-list-entries:
109 ;; diary-entries-list: use in d-l, appt.el, and by diary-add-to-list
110 ;; diary-saved-point: only used in diary-lib.el, passed to the display func
111 ;; date-string: only used in diary-lib.el
112 ;; list-only: don't modify the diary-buffer, just return a list of entries
113 ;; file-glob-attrs: yuck
115 ;;; Code:
117 (require 'cal-loaddefs)
119 ;; Avoid recursive load of calendar when loading cal-menu. Yuck.
120 (provide 'calendar)
121 (require 'cal-menu)
123 (defgroup calendar nil
124 "Calendar and time management support."
125 :prefix "calendar-"
126 :group 'applications)
128 (defgroup calendar-hooks nil
129 "Calendar hooks."
130 :prefix "calendar-"
131 :group 'calendar)
133 (defgroup calendar-faces nil
134 "Calendar faces."
135 :prefix "calendar-"
136 :group 'calendar)
138 (defcustom calendar-offset 0
139 "The offset of the principal month from the center of the calendar window.
140 0 means the principal month is in the center (default), -1 means on the left,
141 +1 means on the right. Larger (or smaller) values push the principal month off
142 the screen."
143 :type 'integer
144 :group 'calendar)
146 (defcustom calendar-setup nil
147 "The frame setup of the calendar.
148 The choices are: `one-frame' (calendar and diary together in one separate,
149 dedicated frame); `two-frames' (calendar and diary in separate, dedicated
150 frames); `calendar-only' (calendar in a separate, dedicated frame); with
151 any other value the current frame is used. Using any of the first
152 three options overrides the value of `calendar-view-diary-initially-flag'."
153 :type '(choice
154 (const :tag "calendar and diary in separate frame" one-frame)
155 (const :tag "calendar and diary each in own frame" two-frames)
156 (const :tag "calendar in separate frame" calendar-only)
157 (const :tag "use current frame" nil))
158 :group 'calendar)
160 (defcustom calendar-minimum-window-height 8
161 "Minimum height `calendar-generate-window' should use for calendar window."
162 :type 'integer
163 :version "22.1"
164 :group 'calendar)
166 (defcustom calendar-week-start-day 0
167 "The day of the week on which a week in the calendar begins.
168 0 means Sunday (default), 1 means Monday, and so on.
170 If you change this variable directly (without using customize)
171 after starting `calendar', you should call `calendar-redraw' to
172 update the calendar display to reflect the change, otherwise
173 movement commands will not work correctly."
174 :type 'integer
175 ;; Change the initialize so that if you reload calendar.el, it will not
176 ;; cause a redraw (which may fail, e.g. with "invalid byte-code in
177 ;; calendar.elc" because of the "byte-compile-dynamic").
178 :initialize 'custom-initialize-default
179 :set (lambda (sym val)
180 (set sym val)
181 (calendar-redraw))
182 :group 'calendar)
184 (define-obsolete-variable-alias 'view-diary-entries-initially
185 'calendar-view-diary-initially-flag "23.1")
187 (defcustom calendar-view-diary-initially-flag nil
188 "Non-nil means display current date's diary entries on entry to calendar.
189 The diary is displayed in another window when the calendar is first displayed,
190 if the current date is visible. The number of days of diary entries displayed
191 is governed by the variable `diary-number-of-entries'. This variable can
192 be overridden by the value of `calendar-setup'."
193 :type 'boolean
194 :group 'diary)
196 (define-obsolete-variable-alias 'mark-diary-entries-in-calendar
197 'calendar-mark-diary-entries-flag "23.1")
199 ;; FIXME :set
200 (defcustom calendar-mark-diary-entries-flag nil
201 "Non-nil means mark dates with diary entries, in the calendar window.
202 The marking symbol is specified by the variable `diary-entry-marker'."
203 :type 'boolean
204 :group 'diary)
206 (defcustom calendar-remove-frame-by-deleting t
207 "Determine how the calendar mode removes a frame no longer needed.
208 If nil, make an icon of the frame. If non-nil, delete the frame."
209 :type 'boolean
210 :version "23.1" ; changed from nil to t
211 :group 'view
212 :group 'calendar)
214 (defface calendar-today
215 '((t (:underline t)))
216 "Face for indicating today's date in the calendar.
217 See `calendar-today-marker'."
218 :group 'calendar-faces)
219 ;; Backward-compatibility alias. FIXME make obsolete.
220 (put 'calendar-today-face 'face-alias 'calendar-today)
222 (defface diary
223 '((((min-colors 88) (class color) (background light))
224 :foreground "red1")
225 (((class color) (background light))
226 :foreground "red")
227 (((min-colors 88) (class color) (background dark))
228 :foreground "yellow1")
229 (((class color) (background dark))
230 :foreground "yellow")
232 :weight bold))
233 "Face for highlighting diary entries.
234 Used to mark diary entries in the calendar (see `diary-entry-marker'),
235 and to highlight the date header in the fancy diary."
236 :group 'calendar-faces)
237 ;; Backward-compatibility alias. FIXME make obsolete.
238 (put 'diary-face 'face-alias 'diary)
240 (defface holiday
241 '((((class color) (background light))
242 :background "pink")
243 (((class color) (background dark))
244 :background "chocolate4")
246 :inverse-video t))
247 "Face for indicating in the calendar dates that have holidays.
248 See `calendar-holiday-marker'."
249 :group 'calendar-faces)
250 ;; Backward-compatibility alias. FIXME make obsolete.
251 (put 'holiday-face 'face-alias 'holiday)
253 ;; These briefly checked font-lock-mode, but that is broken, since it
254 ;; is a buffer-local variable, and which buffer happens to be current
255 ;; when this file is loaded shouldn't make a difference. One could
256 ;; perhaps check global-font-lock-mode, or font-lock-global-modes; but
257 ;; this feature doesn't use font-lock, so there's no real reason it
258 ;; should respect those either. See bug#2199.
259 ;; They also used to check display-color-p, but that is a problem if
260 ;; loaded from --daemon. Since BW displays are rare now, this was
261 ;; also taken out. The way to keep it would be to have nil mean do a
262 ;; runtime check whenever this variable is used.
263 (defcustom diary-entry-marker 'diary
264 "How to mark dates that have diary entries.
265 The value can be either a single-character string (e.g. \"+\") or a face."
266 :type '(choice (string :tag "Single character string") face)
267 :group 'diary
268 :version "23.1")
270 (defcustom calendar-today-marker 'calendar-today
271 "How to mark today's date in the calendar.
272 The value can be either a single-character string (e.g. \"=\") or a face.
273 Used by `calendar-mark-today'."
274 :type '(choice (string :tag "Single character string") face)
275 :group 'calendar
276 :version "23.1")
278 (defcustom calendar-holiday-marker 'holiday
279 "How to mark notable dates in the calendar.
280 The value can be either a single-character string (e.g. \"*\") or a face."
281 :type '(choice (string :tag "Single character string") face)
282 :group 'holidays
283 :version "23.1")
285 (define-obsolete-variable-alias 'view-calendar-holidays-initially
286 'calendar-view-holidays-initially-flag "23.1")
288 (defcustom calendar-view-holidays-initially-flag nil
289 "Non-nil means display holidays for current three month period on entry.
290 The holidays are displayed in another window when the calendar is first
291 displayed."
292 :type 'boolean
293 :group 'holidays)
295 (define-obsolete-variable-alias 'mark-holidays-in-calendar
296 'calendar-mark-holidays-flag "23.1")
298 ;; FIXME :set
299 (defcustom calendar-mark-holidays-flag nil
300 "Non-nil means mark dates of holidays in the calendar window.
301 The marking symbol is specified by the variable `calendar-holiday-marker'."
302 :type 'boolean
303 :group 'holidays)
305 (defcustom calendar-mode-hook nil
306 "Hook run when entering `calendar-mode'."
307 :type 'hook
308 :group 'calendar-hooks)
310 (defcustom calendar-load-hook nil
311 "List of functions to be called after the calendar is first loaded.
312 This is the place to add key bindings to `calendar-mode-map'."
313 :type 'hook
314 :group 'calendar-hooks)
316 (define-obsolete-variable-alias 'initial-calendar-window-hook
317 'calendar-initial-window-hook "23.1")
319 (defcustom calendar-initial-window-hook nil
320 "List of functions to be called when the calendar window is created.
321 Quitting the calendar and re-entering it will cause these functions
322 to be called again."
323 :type 'hook
324 :group 'calendar-hooks)
326 (define-obsolete-variable-alias 'today-visible-calendar-hook
327 'calendar-today-visible-hook "23.1")
329 (defcustom calendar-today-visible-hook nil
330 "List of functions called whenever the current date is visible.
331 To mark today's date, add the function `calendar-mark-today'.
332 To replace the date with asterisks, add the function `calendar-star-date'.
333 See also `calendar-today-invisible-hook'.
335 In general, be careful about changing characters in the calendar buffer,
336 since it may cause the movement commands to fail."
337 :type 'hook
338 :options '(calendar-mark-today calendar-star-date)
339 :group 'calendar-hooks)
341 (define-obsolete-variable-alias 'today-invisible-calendar-hook
342 'calendar-today-invisible-hook "23.1")
344 (defcustom calendar-today-invisible-hook nil
345 "List of functions called whenever the current date is not visible.
346 See also `calendar-today-visible-hook'."
347 :type 'hook
348 :group 'calendar-hooks)
350 (defcustom calendar-move-hook nil
351 "List of functions called whenever the cursor moves in the calendar.
352 For example,
354 (add-hook 'calendar-move-hook (lambda () (diary-view-entries 1)))
356 redisplays the diary for whatever date the cursor is moved to."
357 :type 'hook
358 :options '(calendar-update-mode-line)
359 :group 'calendar-hooks)
361 (defcustom calendar-date-echo-text
362 "mouse-2: general menu\nmouse-3: menu for this date"
363 "String displayed when the cursor is over a date in the calendar.
364 Can be either a fixed string, or a lisp expression that returns one.
365 When this expression is evaluated, DAY, MONTH, and YEAR are
366 integers appropriate to the relevant date. For example, to
367 display the ISO date:
369 (setq calendar-date-echo-text '(format \"ISO date: %s\"
370 (calendar-iso-date-string
371 (list month day year))))
372 Changing this variable without using customize has no effect on
373 pre-existing calendar windows."
374 :group 'calendar
375 :initialize 'custom-initialize-default
376 :risky t
377 :set (lambda (sym val)
378 (set sym val)
379 (calendar-redraw))
380 :type '(choice (string :tag "Fixed string")
381 (sexp :value
382 (format "ISO date: %s"
383 (calendar-iso-date-string
384 (list month day year)))))
385 :version "23.1")
388 (defvar calendar-month-digit-width nil
389 "Width of the region with numbers in each month in the calendar.")
391 (defvar calendar-month-width nil
392 "Full width of each month in the calendar.")
394 (defvar calendar-right-margin nil
395 "Right margin of the calendar.")
397 (defvar calendar-month-edges nil
398 "Alist of month edge columns.
399 Each element has the form (N LEFT FIRST LAST RIGHT), where
400 LEFT is the leftmost column associated with month segment N,
401 FIRST and LAST are the first and last columns with day digits in,
402 and LAST is the rightmost column.")
404 (defun calendar-month-edges (segment)
405 "Compute the month edge columns for month SEGMENT.
406 Returns a list (LEFT FIRST LAST RIGHT), where LEFT is the
407 leftmost column associated with a month, FIRST and LAST are the
408 first and last columns with day digits in, and LAST is the
409 rightmost column."
410 ;; The leftmost column with a digit in it in this month segment.
411 (let* ((first (+ calendar-left-margin
412 (* segment calendar-month-width)))
413 ;; The rightmost column with a digit in it in this month segment.
414 (last (+ first (1- calendar-month-digit-width)))
415 (left (if (eq segment 0)
417 (+ calendar-left-margin
418 (* segment calendar-month-width)
419 (- (/ calendar-intermonth-spacing 2)))))
420 ;; The rightmost edge of this month segment, dividing the
421 ;; space between months in two.
422 (right (+ calendar-left-margin
423 (* (1+ segment) calendar-month-width)
424 (- (/ calendar-intermonth-spacing 2)))))
425 (list left first last right)))
427 (defun calendar-recompute-layout-variables ()
428 "Recompute some layout-related calendar \"constants\"."
429 (setq calendar-month-digit-width (+ (* 6 calendar-column-width)
430 calendar-day-digit-width)
431 calendar-month-width (+ (* 7 calendar-column-width)
432 calendar-intermonth-spacing)
433 calendar-right-margin (+ calendar-left-margin
434 (* 3 (* 7 calendar-column-width))
435 (* 2 calendar-intermonth-spacing))
436 calendar-month-edges nil)
437 (dotimes (i 3)
438 (push (cons i (calendar-month-edges i)) calendar-month-edges))
439 (setq calendar-month-edges (reverse calendar-month-edges)))
441 ;; FIXME add font-lock-keywords.
442 (defun calendar-set-layout-variable (symbol value &optional minmax)
443 "Set SYMBOL's value to VALUE, an integer.
444 A positive/negative MINMAX enforces a minimum/maximum value.
445 Then redraw the calendar, if necessary."
446 (let ((oldvalue (symbol-value symbol)))
447 (custom-set-default symbol (if minmax
448 (if (< minmax 0)
449 (min value (- minmax))
450 (max value minmax))
451 value))
452 (unless (equal value oldvalue)
453 (calendar-recompute-layout-variables)
454 (calendar-redraw))))
456 (defcustom calendar-left-margin 5
457 "Empty space to the left of the first month in the calendar."
458 :group 'calendar
459 :initialize 'custom-initialize-default
460 :set 'calendar-set-layout-variable
461 :type 'integer
462 :version "23.1")
464 ;; Or you can view it as columns of width 2, with 1 space, no space
465 ;; after the last column, and a 5 space gap between month.
466 ;; FIXME check things work if this is odd.
467 (defcustom calendar-intermonth-spacing 4
468 "Space between months in the calendar. Minimum value is 1."
469 :group 'calendar
470 :initialize 'custom-initialize-default
471 :set (lambda (sym val)
472 (calendar-set-layout-variable sym val 1))
473 :type 'integer
474 :version "23.1")
476 ;; FIXME calendar-month-column-width?
477 (defcustom calendar-column-width 3
478 "Width of each day column in the calendar. Minimum value is 3."
479 :initialize 'custom-initialize-default
480 :set (lambda (sym val)
481 (calendar-set-layout-variable sym val 3))
482 :type 'integer
483 :version "23.1")
485 (defcustom calendar-day-header-width 2
486 "Width of the day column headers in the calendar.
487 Must be at least one less than `calendar-column-width'."
488 :group 'calendar
489 :initialize 'custom-initialize-default
490 :set (lambda (sym val)
491 (calendar-set-layout-variable sym val (- 1 calendar-column-width)))
492 :type 'integer
493 :version "23.1")
495 ;; FIXME a format specifier instead?
496 (defcustom calendar-day-digit-width 2
497 "Width of the day digits in the calendar. Minimum value is 2."
498 :group 'calendar
499 :initialize 'custom-initialize-default
500 :set (lambda (sym val)
501 (calendar-set-layout-variable sym val 2))
502 :type 'integer
503 :version "23.1")
505 (defcustom calendar-intermonth-header nil
506 "Header text display in the space to the left of each calendar month.
507 See `calendar-intermonth-text'."
508 :group 'calendar
509 :initialize 'custom-initialize-default
510 :risky t
511 :set (lambda (sym val)
512 (set sym val)
513 (calendar-redraw))
514 :type '(choice (const nil :tag "Nothing")
515 (string :tag "Fixed string")
516 (sexp :value
517 (propertize "WK" 'font-lock-face
518 'font-lock-function-name-face)))
519 :version "23.1")
521 (defcustom calendar-intermonth-text nil
522 "Text to display in the space to the left of each calendar month.
523 Can be nil, a fixed string, or a lisp expression that returns a string.
524 When the expression is evaluated, the variables DAY, MONTH and YEAR
525 are integers appropriate for the first day in each week.
526 Will be truncated to the smaller of `calendar-left-margin' and
527 `calendar-intermonth-spacing'. The last character is forced to be a space.
528 For example, to display the ISO week numbers:
530 (setq calendar-week-start-day 1
531 calendar-intermonth-text
532 '(propertize
533 (format \"%2d\"
534 (car
535 (calendar-iso-from-absolute
536 (calendar-absolute-from-gregorian (list month day year)))))
537 'font-lock-face 'font-lock-function-name-face))
539 See also `calendar-intermonth-header'."
540 :group 'calendar
541 :initialize 'custom-initialize-default
542 :risky t
543 :set (lambda (sym val)
544 (set sym val)
545 (calendar-redraw))
546 :type '(choice (const nil :tag "Nothing")
547 (string :tag "Fixed string")
548 (sexp :value
549 (propertize
550 (format "%2d"
551 (car
552 (calendar-iso-from-absolute
553 (calendar-absolute-from-gregorian
554 (list month day year)))))
555 'font-lock-face 'font-lock-function-name-face)))
556 :version "23.1")
558 (defcustom diary-file "~/diary"
559 "Name of the file in which one's personal diary of dates is kept.
561 The file's entries are lines beginning with any of the forms
562 specified by the variable `diary-date-forms', which by default
563 uses the forms of `diary-american-date-forms':
565 MONTH/DAY
566 MONTH/DAY/YEAR
567 MONTHNAME DAY
568 MONTHNAME DAY, YEAR
569 DAYNAME
571 with the remainder of the line being the diary entry string for
572 that date. MONTH and DAY are one or two digit numbers, YEAR is a
573 number and may be written in full or abbreviated to the final two
574 digits (if `diary-abbreviated-year-flag' is non-nil). MONTHNAME
575 and DAYNAME can be spelled in full (as specified by the variables
576 `calendar-month-name-array' and `calendar-day-name-array'), or
577 abbreviated (as specified by `calendar-month-abbrev-array' and
578 `calendar-day-abbrev-array') with or without a period. Case is
579 ignored. Any of DAY, MONTH, or MONTHNAME, YEAR can be `*' which
580 matches any day, month, or year, respectively. If the date does
581 not contain a year, it is generic and applies to any year. A
582 DAYNAME entry applies to the appropriate day of the week in every week.
584 You can customize `diary-date-forms' to your preferred format.
585 Three default styles are provided: `diary-american-date-forms',
586 `diary-european-date-forms', and `diary-iso-date-forms'.
587 You can choose between these by setting `calendar-date-style' in your
588 .emacs file, or by using `calendar-set-date-style' when in the calendar.
590 A diary entry can be preceded by the character `diary-nonmarking-symbol'
591 \(ordinarily `&') to make that entry nonmarking--that is, it will not be
592 marked on dates in the calendar window but will appear in a diary window.
594 Multiline diary entries are made by indenting lines after the first with
595 either a TAB or one or more spaces.
597 Lines not in one the above formats are ignored. Here are some sample diary
598 entries (in the default American style):
600 12/22/1988 Twentieth wedding anniversary!!
601 &1/1. Happy New Year!
602 10/22 Ruth's birthday.
603 21: Payday
604 Tuesday--weekly meeting with grad students at 10am
605 Supowit, Shen, Bitner, and Kapoor to attend.
606 1/13/89 Friday the thirteenth!!
607 &thu 4pm squash game with Lloyd.
608 mar 16 Dad's birthday
609 April 15, 1989 Income tax due.
610 &* 15 time cards due.
612 If the first line of a diary entry consists only of the date or day name with
613 no trailing blanks or punctuation, then that line is not displayed in the
614 diary window; only the continuation lines is shown. For example, the
615 single diary entry
617 02/11/1989
618 Bill Blattner visits Princeton today
619 2pm Cognitive Studies Committee meeting
620 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
621 4:00pm Jamie Tappenden
622 7:30pm Dinner at George and Ed's for Alan Ryan
623 7:30-10:00pm dance at Stewart Country Day School
625 will appear in the diary window without the date line at the beginning. This
626 facility allows the diary window to look neater, but can cause confusion if
627 used with more than one day's entries displayed.
629 Diary entries can be based on Lisp sexps. For example, the diary entry
631 %%(diary-block 11 1 1990 11 10 1990) Vacation
633 causes the diary entry \"Vacation\" to appear from November 1 through
634 November 10, 1990. See the documentation for the function
635 `diary-list-sexp-entries' for more details.
637 Diary entries based on the Hebrew, the Islamic and/or the Baha'i
638 calendar are also possible, but because these are somewhat slow, they
639 are ignored unless you set the `diary-nongregorian-listing-hook' and
640 the `diary-nongregorian-marking-hook' appropriately. See the
641 documentation of these hooks for details.
643 Diary files can contain directives to include the contents of other files; for
644 details, see the documentation for the variable `diary-list-entries-hook'."
645 :type 'file
646 :group 'diary)
648 ;; FIXME do these have to be single characters?
649 (defcustom diary-nonmarking-symbol "&"
650 "Symbol indicating that a diary entry is not to be marked in the calendar."
651 :type 'string
652 :group 'diary)
654 (define-obsolete-variable-alias 'hebrew-diary-entry-symbol
655 'diary-hebrew-entry-symbol "23.1")
657 (defcustom diary-hebrew-entry-symbol "H"
658 "Symbol indicating a diary entry according to the Hebrew calendar."
659 :type 'string
660 :group 'diary)
662 (define-obsolete-variable-alias 'islamic-diary-entry-symbol
663 'diary-islamic-entry-symbol "23.1")
665 (defcustom diary-islamic-entry-symbol "I"
666 "Symbol indicating a diary entry according to the Islamic calendar."
667 :type 'string
668 :group 'diary)
670 (define-obsolete-variable-alias 'bahai-diary-entry-symbol
671 'diary-bahai-entry-symbol "23.1")
673 (defcustom diary-bahai-entry-symbol "B"
674 "Symbol indicating a diary entry according to the Baha'i calendar."
675 :type 'string
676 :group 'diary)
678 (defcustom european-calendar-style nil
679 "Non-nil means use the European style of dates in the diary and display.
680 In this case, a date like 1/2/1990 would be interpreted as
681 February 1, 1990. See `diary-european-date-forms' for the
682 default European diary date styles.
684 Setting this variable directly does not take effect (if the
685 calendar package is already loaded). Rather, use either
686 \\[customize] or the function `calendar-set-date-style'."
687 :type 'boolean
688 ;; Without :initialize (require 'calendar) throws an error because
689 ;; calendar-set-date-style is undefined at this point.
690 :initialize 'custom-initialize-default
691 :set (lambda (symbol value)
692 (if value
693 (calendar-set-date-style 'european)
694 (calendar-set-date-style 'american)))
695 :group 'calendar)
697 (make-obsolete-variable 'european-calendar-style 'calendar-date-style "23.1")
699 ;; If this is autoloaded, c-d-s gets set before any customization of e-c-s.
700 (defcustom calendar-date-style (if european-calendar-style 'european
701 'american)
702 "Your preferred style for writing dates.
703 The options are:
704 `american' - month/day/year
705 `european' - day/month/year
706 `iso' - year/month/day
707 This affects how dates written in your diary are interpreted.
708 It also affects date display, as well as those calendar and diary
709 functions that take a date as an argument, e.g. `diary-date', by
710 changing the order in which the arguments are interpreted.
712 Setting this variable directly does not take effect (if the
713 calendar package is already loaded). Rather, use either
714 \\[customize] or the function `calendar-set-date-style'."
715 :version "23.1"
716 :type '(choice (const american :tag "Month/Day/Year")
717 (const european :tag "Day/Month/Year")
718 (const iso :tag "Year/Month/Day"))
719 :initialize 'custom-initialize-default
720 :set (lambda (symbol value)
721 (calendar-set-date-style value))
722 :group 'calendar)
724 ;; Next three are provided to aid in setting diary-date-forms.
725 ;; FIXME move to diary-lib?
726 (defcustom diary-iso-date-forms
727 '((month "[-/]" day "[^-/0-9]")
728 (year "[-/]" month "[-/]" day "[^0-9]")
729 (monthname "-" day "[^-0-9]")
730 (year "-" monthname "-" day "[^0-9]")
731 (dayname "\\W"))
732 "List of pseudo-patterns describing the ISO style of dates.
733 The defaults are: MONTH[-/]DAY; YEAR[-/]MONTH[-/]DAY; MONTHNAME-DAY;
734 YEAR-MONTHNAME-DAY; DAYNAME. Normally you should not customize this,
735 but `diary-date-forms' (which see)."
736 :version "23.1"
737 :type '(repeat (choice (cons :tag "Backup"
738 :value (backup . nil)
739 (const backup)
740 (repeat (list :inline t :format "%v"
741 (symbol :tag "Keyword")
742 (choice symbol regexp))))
743 (repeat (list :inline t :format "%v"
744 (symbol :tag "Keyword")
745 (choice symbol regexp)))))
746 :group 'diary)
748 (define-obsolete-variable-alias 'american-date-diary-pattern
749 'diary-american-date-forms "23.1")
751 (defcustom diary-american-date-forms
752 '((month "/" day "[^/0-9]")
753 (month "/" day "/" year "[^0-9]")
754 (monthname " *" day "[^,0-9]")
755 (monthname " *" day ", *" year "[^0-9]")
756 (dayname "\\W"))
757 "List of pseudo-patterns describing the American style of dates.
758 The defaults are: MONTH/DAY; MONTH/DAY/YEAR; MONTHNAME DAY;
759 MONTHNAME DAY, YEAR; DAYNAME. Normally you should not customize this,
760 but `diary-date-forms' (which see)."
761 :type '(repeat (choice (cons :tag "Backup"
762 :value (backup . nil)
763 (const backup)
764 (repeat (list :inline t :format "%v"
765 (symbol :tag "Keyword")
766 (choice symbol regexp))))
767 (repeat (list :inline t :format "%v"
768 (symbol :tag "Keyword")
769 (choice symbol regexp)))))
770 :group 'diary)
772 (define-obsolete-variable-alias 'european-date-diary-pattern
773 'diary-european-date-forms "23.1")
775 (defcustom diary-european-date-forms
776 '((day "/" month "[^/0-9]")
777 (day "/" month "/" year "[^0-9]")
778 (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)")
779 (day " *" monthname " *" year "[^0-9]")
780 (dayname "\\W"))
781 "List of pseudo-patterns describing the European style of dates.
782 The defaults are: DAY/MONTH; DAY/MONTH/YEAR; DAY MONTHNAME;
783 DAY MONTHNAME YEAR; DAYNAME. Normally you should not customize this, but
784 `diary-date-forms' (which see)."
785 :type '(repeat (choice (cons :tag "Backup"
786 :value (backup . nil)
787 (const backup)
788 (repeat (list :inline t :format "%v"
789 (symbol :tag "Keyword")
790 (choice symbol regexp))))
791 (repeat (list :inline t :format "%v"
792 (symbol :tag "Keyword")
793 (choice symbol regexp)))))
794 :group 'diary)
796 (defvar diary-font-lock-keywords)
798 (defcustom diary-date-forms (cond ((eq calendar-date-style 'iso)
799 diary-iso-date-forms)
800 ((eq calendar-date-style 'european)
801 diary-european-date-forms)
802 (t diary-american-date-forms))
803 "List of pseudo-patterns describing the forms of date used in the diary.
804 The patterns on the list must be MUTUALLY EXCLUSIVE and should not match
805 any portion of the diary entry itself, just the date component.
807 A pseudo-pattern is a list of regular expressions and the keywords `month',
808 `day', `year', `monthname', and `dayname'. The keyword `monthname' will
809 match the name of the month (see `calendar-month-name-array'), capitalized
810 or not, or its user-specified abbreviation (see `calendar-month-abbrev-array'),
811 followed by a period or not; it will also match `*'. Similarly, `dayname'
812 will match the name of the day (see `calendar-day-name-array'), capitalized or
813 not, or its user-specified abbreviation (see `calendar-day-abbrev-array'),
814 followed by a period or not. The keywords `month', `day', and `year' will
815 match those numerical values, preceded by arbitrarily many zeros; they will
816 also match `*'.
818 The matching of the diary entries with the date forms is done with the
819 standard syntax table from Fundamental mode, but with the `*' changed so
820 that it is a word constituent.
822 If, to be mutually exclusive, a pseudo-pattern must match a portion of the
823 diary entry itself, the first element of the pattern MUST be `backup'. This
824 directive causes the date recognizer to back up to the beginning of the
825 current word of the diary entry, so in no case can the pattern match more than
826 a portion of the first word of the diary entry.
828 For examples of three common styles, see `diary-american-date-forms',
829 `diary-european-date-forms', and `diary-iso-date-forms'."
830 :type '(repeat (choice (cons :tag "Backup"
831 :value (backup . nil)
832 (const backup)
833 (repeat (list :inline t :format "%v"
834 (symbol :tag "Keyword")
835 (choice symbol regexp))))
836 (repeat (list :inline t :format "%v"
837 (symbol :tag "Keyword")
838 (choice symbol regexp)))))
839 :set-after '(calendar-date-style diary-iso-date-forms
840 diary-european-date-forms
841 diary-american-date-forms)
842 :initialize 'custom-initialize-default
843 :set (lambda (symbol value)
844 (unless (equal value (eval symbol))
845 (custom-set-default symbol value)
846 (setq diary-font-lock-keywords (diary-font-lock-keywords))
847 ;; Need to redraw not just to get new font-locking, but also
848 ;; to pick up any newly recognized entries.
849 (and (diary-live-p)
850 (diary))))
851 :group 'diary)
853 ;; Next three are provided to aid in setting calendar-date-display-form.
854 (defcustom calendar-iso-date-display-form '((format "%s-%.2d-%.2d" year
855 (string-to-number month)
856 (string-to-number day)))
857 "Pseudo-pattern governing the way a date appears in the ISO style.
858 Normally you should not customize this, but `calendar-date-display-form'
859 \(which see)."
860 :type 'sexp
861 :version "23.1"
862 :group 'calendar)
864 (define-obsolete-variable-alias 'european-calendar-display-form
865 'calendar-european-date-display-form "23.1")
867 (defcustom calendar-european-date-display-form
868 '((if dayname (concat dayname ", ")) day " " monthname " " year)
869 "Pseudo-pattern governing the way a date appears in the European style.
870 Normally you should not customize this, but `calendar-date-display-form'
871 \(which see)."
872 :type 'sexp
873 :group 'calendar)
875 (define-obsolete-variable-alias 'american-calendar-display-form
876 'calendar-american-date-display-form "23.1")
878 (defcustom calendar-american-date-display-form
879 '((if dayname (concat dayname ", ")) monthname " " day ", " year)
880 "Pseudo-pattern governing the way a date appears in the American style.
881 Normally you should not customize this, but `calendar-date-display-form'
882 \(which see)."
883 :type 'sexp
884 :group 'calendar)
886 (defcustom calendar-date-display-form
887 (cond ((eq calendar-date-style 'iso)
888 calendar-iso-date-display-form)
889 ((eq calendar-date-style 'european)
890 calendar-european-date-display-form)
891 (t calendar-american-date-display-form))
892 "Pseudo-pattern governing the way a calendar date appears.
893 Used by the function `calendar-date-string' (which see), a pseudo-pattern
894 is a list of expressions that can involve the keywords `month', `day',
895 and `year' (all numbers in string form), and `monthname' and `dayname'
896 \(both alphabetic strings). For example, a typical American form would be
898 '(month \"/\" day \"/\" (substring year -2))
900 whereas
902 '((format \"%9s, %9s %2s, %4s\" dayname monthname day year))
904 would give the usual American style in fixed-length fields. The variables
905 `calendar-iso-date-display-form', `calendar-european-date-display-form', and
906 `calendar-american-date-display-form' provide some defaults for three common
907 styles."
908 :type 'sexp
909 :set-after '(calendar-date-style calendar-iso-date-display-form
910 calendar-european-date-display-form
911 calendar-american-date-display-form)
912 :group 'calendar)
914 (defun calendar-set-date-style (style)
915 "Set the style of calendar and diary dates to STYLE (a symbol).
916 The valid styles are described in the documentation of `calendar-date-style'."
917 (interactive (list (intern
918 (completing-read "Date style: "
919 '("american" "european" "iso") nil t
920 nil nil "american"))))
921 (or (memq style '(american european iso))
922 (setq style 'american))
923 (setq calendar-date-style style
924 calendar-date-display-form
925 (symbol-value (intern-soft
926 (format "calendar-%s-date-display-form" style)))
927 diary-date-forms
928 (symbol-value (intern-soft (format "diary-%s-date-forms" style))))
929 (calendar-update-mode-line))
931 (defun european-calendar ()
932 "Set the interpretation and display of dates to the European style."
933 (interactive)
934 (calendar-set-date-style 'european))
936 (make-obsolete 'european-calendar 'calendar-set-date-style "23.1")
938 (defun american-calendar ()
939 "Set the interpretation and display of dates to the American style."
940 (interactive)
941 (calendar-set-date-style 'american))
943 (make-obsolete 'american-calendar 'calendar-set-date-style "23.1")
945 (define-obsolete-variable-alias 'holidays-in-diary-buffer
946 'diary-show-holidays-flag "23.1")
948 (defcustom diary-show-holidays-flag t
949 "Non-nil means include holidays in the diary display.
950 The holidays appear in the mode line of the diary buffer, or in the
951 fancy diary buffer next to the date. This slows down the diary functions
952 somewhat; setting it to nil makes the diary display faster."
953 :type 'boolean
954 :group 'holidays)
956 (defcustom calendar-debug-sexp nil
957 "Turn debugging on when evaluating a sexp in the diary or holiday list."
958 :type 'boolean
959 :group 'calendar)
961 (define-obsolete-variable-alias 'all-hebrew-calendar-holidays
962 'calendar-hebrew-all-holidays-flag "23.1")
964 (defcustom calendar-hebrew-all-holidays-flag nil
965 "If nil, show only major holidays from the Hebrew calendar.
966 This means only those Jewish holidays that appear on secular calendars.
967 Otherwise, show all the holidays that would appear in a complete Hebrew
968 calendar."
969 :type 'boolean
970 :group 'holidays)
972 (define-obsolete-variable-alias 'all-christian-calendar-holidays
973 'calendar-christian-all-holidays-flag "23.1")
975 (defcustom calendar-christian-all-holidays-flag nil
976 "If nil, show only major holidays from the Christian calendar.
977 This means only those Christian holidays that appear on secular calendars.
978 Otherwise, show all the holidays that would appear in a complete Christian
979 calendar."
980 :type 'boolean
981 :group 'holidays)
983 (define-obsolete-variable-alias 'all-islamic-calendar-holidays
984 'calendar-islamic-all-holidays-flag "23.1")
986 (defcustom calendar-islamic-all-holidays-flag nil
987 "If nil, show only major holidays from the Islamic calendar.
988 This means only those Islamic holidays that appear on secular calendars.
989 Otherwise, show all the holidays that would appear in a complete Islamic
990 calendar."
991 :type 'boolean
992 :group 'holidays)
994 (define-obsolete-variable-alias 'all-bahai-calendar-holidays
995 'calendar-bahai-all-holidays-flag "23.1")
997 (defcustom calendar-bahai-all-holidays-flag nil
998 "If nil, show only major holidays from the Baha'i calendar.
999 These are the days on which work and school must be suspended.
1000 Otherwise, show all the holidays that would appear in a complete Baha'i
1001 calendar."
1002 :type 'boolean
1003 :group 'holidays)
1005 (defcustom calendar-chinese-all-holidays-flag nil
1006 "If nil, show only the major holidays from the Chinese calendar."
1007 :version "23.1"
1008 :type 'boolean
1009 :group 'holidays)
1011 ;;; End of user options.
1013 (calendar-recompute-layout-variables)
1015 (defconst calendar-first-date-row 3
1016 "First row in the calendar with actual dates.")
1018 (defconst calendar-buffer "*Calendar*"
1019 "Name of the buffer used for the calendar.")
1021 (defconst holiday-buffer "*Holidays*"
1022 "Name of the buffer used for the displaying the holidays.")
1024 (defconst diary-fancy-buffer "*Fancy Diary Entries*"
1025 "Name of the buffer used for the optional fancy display of the diary.")
1027 (define-obsolete-variable-alias 'fancy-diary-buffer 'diary-fancy-buffer "23.1")
1029 (defconst calendar-other-calendars-buffer "*Other Calendars*"
1030 "Name of the buffer used for the display of date on other calendars.")
1032 (defconst lunar-phases-buffer "*Phases of Moon*"
1033 "Name of the buffer used for the lunar phases.")
1035 (defconst solar-sunrises-buffer "*Sunrise/Sunset Times*"
1036 "Name of buffer used for sunrise/sunset times.")
1038 (defconst calendar-hebrew-yahrzeit-buffer "*Yahrzeits*"
1039 "Name of the buffer used by `list-yahrzeit-dates'.")
1041 (defmacro calendar-increment-month (mon yr n &optional nmonths)
1042 "Increment the variables MON and YR by N months.
1043 Forward if N is positive or backward if N is negative.
1044 A negative YR is interpreted as BC; -1 being 1 BC, and so on.
1045 Optional NMONTHS is the number of months per year (default 12)."
1046 ;; Can view this as a form of base-nmonths arithmetic, in which "a
1047 ;; year" = "ten", and we never bother to use hundreds.
1048 `(let ((nmonths (or ,nmonths 12))
1049 macro-y)
1050 (if (< ,yr 0) (setq ,yr (1+ ,yr))) ; -1 BC -> 0 AD, etc
1051 (setq macro-y (+ (* ,yr nmonths) ,mon -1 ,n)
1052 ,mon (1+ (mod macro-y nmonths))
1053 ,yr (/ macro-y nmonths))
1054 ;; Alternative:
1055 ;;; (setq macro-y (+ (* ,yr nmonths) ,mon -1 ,n)
1056 ;;; ,yr (/ macro-y nmonths)
1057 ;;; ,mon (- macro-y (* ,yr nmonths)))
1058 (and (< macro-y 0) (> ,mon 1) (setq ,yr (1- ,yr)))
1059 (if (< ,yr 1) (setq ,yr (1- ,yr))))) ; 0 AD -> -1 BC, etc
1061 (define-obsolete-function-alias 'increment-calendar-month
1062 'calendar-increment-month "23.1")
1064 (defvar displayed-month)
1065 (defvar displayed-year)
1067 (defun calendar-increment-month-cons (n &optional mon yr)
1068 "Return the Nth month after MON/YR.
1069 The return value is a pair (MONTH . YEAR).
1070 MON defaults to `displayed-month'. YR defaults to `displayed-year'."
1071 (unless mon (setq mon displayed-month))
1072 (unless yr (setq yr displayed-year))
1073 (calendar-increment-month mon yr n)
1074 (cons mon yr))
1076 (defmacro calendar-for-loop (var from init to final do &rest body)
1077 "Execute a for loop.
1078 Evaluate BODY with VAR bound to successive integers from INIT to FINAL,
1079 inclusive. The standard macro `dotimes' is preferable in most cases."
1080 (declare (debug (symbolp "from" form "to" form "do" body))
1081 (indent defun))
1082 `(let ((,var (1- ,init)))
1083 (while (>= ,final (setq ,var (1+ ,var)))
1084 ,@body)))
1086 (make-obsolete 'calendar-for-loop "use `dotimes' or `while' instead." "23.1")
1088 (defmacro calendar-sum (index initial condition expression)
1089 "For INDEX = INITIAL, +1, ... (as long as CONDITION holds), sum EXPRESSION."
1090 (declare (debug (symbolp form form form)))
1091 `(let ((,index ,initial)
1092 (sum 0))
1093 (while ,condition
1094 (setq sum (+ sum ,expression)
1095 ,index (1+ ,index)))
1096 sum))
1098 ;; FIXME bind q to bury-buffer?
1099 (defmacro calendar-in-read-only-buffer (buffer &rest body)
1100 "Switch to BUFFER and executes the forms in BODY.
1101 First creates or erases BUFFER as needed. Leaves BUFFER read-only,
1102 with disabled undo. Leaves point at point-min, displays BUFFER."
1103 (declare (indent 1) (debug t))
1104 `(progn
1105 (set-buffer (get-buffer-create ,buffer))
1106 (setq buffer-read-only nil
1107 buffer-undo-list t)
1108 (erase-buffer)
1109 ,@body
1110 (goto-char (point-min))
1111 (set-buffer-modified-p nil)
1112 (setq buffer-read-only t)
1113 (display-buffer ,buffer)))
1115 ;; The following are in-line for speed; they can be called thousands of times
1116 ;; when looking up holidays or processing the diary. Here, for example, are
1117 ;; the numbers of calls to calendar/diary/holiday functions in preparing the
1118 ;; fancy diary display, for a moderately complex diary file, with functions
1119 ;; used instead of macros. There were a total of 10000 such calls:
1121 ;; 1934 calendar-extract-month
1122 ;; 1852 calendar-extract-year
1123 ;; 1819 calendar-extract-day
1124 ;; 845 calendar-leap-year-p
1125 ;; 837 calendar-day-number
1126 ;; 775 calendar-absolute-from-gregorian
1127 ;; 346 calendar-last-day-of-month
1128 ;; 286 calendar-hebrew-last-day-of-month
1129 ;; 188 calendar-hebrew-leap-year-p
1130 ;; 180 calendar-hebrew-elapsed-days
1131 ;; 163 calendar-hebrew-last-month-of-year
1132 ;; 66 calendar-date-compare
1133 ;; 65 calendar-hebrew-days-in-year
1134 ;; 60 calendar-julian-to-absolute
1135 ;; 50 calendar-hebrew-to-absolute
1136 ;; 43 calendar-date-equal
1137 ;; 38 calendar-gregorian-from-absolute
1138 ;; .
1140 ;; The use of these seven macros eliminates the overhead of 92% of the function
1141 ;; calls; it's faster this way.
1143 (defsubst calendar-extract-month (date)
1144 "Extract the month part of DATE which has the form (month day year)."
1145 (car date))
1147 (define-obsolete-function-alias 'extract-calendar-month
1148 'calendar-extract-month "23.1")
1150 ;; Note gives wrong answer for result of (calendar-read-date 'noday),
1151 ;; but that is only used by `calendar-other-month'.
1152 (defsubst calendar-extract-day (date)
1153 "Extract the day part of DATE which has the form (month day year)."
1154 (cadr date))
1156 (define-obsolete-function-alias 'extract-calendar-day
1157 'calendar-extract-day "23.1")
1159 (defsubst calendar-extract-year (date)
1160 "Extract the year part of DATE which has the form (month day year)."
1161 (nth 2 date))
1163 (define-obsolete-function-alias 'extract-calendar-year
1164 'calendar-extract-year "23.1")
1166 (defsubst calendar-leap-year-p (year)
1167 "Return t if YEAR is a Gregorian leap year.
1168 A negative year is interpreted as BC; -1 being 1 BC, and so on."
1169 ;; 1 BC = 0 AD, 2 BC acts like 1 AD, etc.
1170 (if (< year 0) (setq year (1- (abs year))))
1171 (and (zerop (% year 4))
1172 (or (not (zerop (% year 100)))
1173 (zerop (% year 400)))))
1175 ;; The foregoing is a bit faster, but not as clear as the following:
1177 ;;(defsubst calendar-leap-year-p (year)
1178 ;; "Return t if YEAR is a Gregorian leap year."
1179 ;; (or
1180 ;; (and (zerop (% year 4))
1181 ;; (not (zerop (% year 100))))
1182 ;; (zerop (% year 400)))
1184 (defsubst calendar-last-day-of-month (month year)
1185 "The last day in MONTH during YEAR."
1186 (if (and (= month 2) (calendar-leap-year-p year))
1188 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month))))
1190 ;; An explanation of the calculation can be found in PascAlgorithms by
1191 ;; Edward and Ruth Reingold, Scott-Foresman/Little, Brown, 1988.
1193 (defsubst calendar-day-number (date)
1194 "Return the day number within the year of the date DATE.
1195 For example, (calendar-day-number '(1 1 1987)) returns the value 1,
1196 while (calendar-day-number '(12 31 1980)) returns 366."
1197 (let* ((month (calendar-extract-month date))
1198 (day (calendar-extract-day date))
1199 (year (calendar-extract-year date))
1200 (day-of-year (+ day (* 31 (1- month)))))
1201 (when (> month 2)
1202 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
1203 (if (calendar-leap-year-p year)
1204 (setq day-of-year (1+ day-of-year))))
1205 day-of-year))
1207 (defsubst calendar-absolute-from-gregorian (date)
1208 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
1209 The Gregorian date Sunday, December 31, 1 BC is imaginary.
1210 DATE is a list of the form (month day year). A negative year is
1211 interpreted as BC; -1 being 1 BC, and so on. Dates before 12/31/1 BC
1212 return negative results."
1213 (let ((year (calendar-extract-year date))
1214 offset-years)
1215 (cond ((zerop year)
1216 (error "There was no year zero"))
1217 ((> year 0)
1218 (setq offset-years (1- year))
1219 (+ (calendar-day-number date) ; days this year
1220 (* 365 offset-years) ; + days in prior years
1221 (/ offset-years 4) ; + Julian leap years
1222 (- (/ offset-years 100)) ; - century years
1223 (/ offset-years 400))) ; + Gregorian leap years
1225 ;; Years between date and 1 BC, excluding 1 BC (1 for 2 BC, etc).
1226 (setq offset-years (abs (1+ year)))
1227 (- (calendar-day-number date)
1228 (* 365 offset-years)
1229 (/ offset-years 4)
1230 (- (/ offset-years 100))
1231 (/ offset-years 400)
1232 (calendar-day-number '(12 31 -1))))))) ; days in year 1 BC
1234 ;;;###autoload
1235 (defun calendar (&optional arg)
1236 "Display a three-month Gregorian calendar.
1237 The three months appear side by side, with the current month in
1238 the middle surrounded by the previous and next months. The
1239 cursor is put on today's date. If optional prefix argument ARG
1240 is non-nil, prompts for the central month and year.
1242 Once in the calendar window, future or past months can be moved
1243 into view. Arbitrary months can be displayed, or the calendar
1244 can be scrolled forward or backward. The cursor can be moved
1245 forward or backward by one day, one week, one month, or one year.
1246 All of these commands take prefix arguments which, when negative,
1247 cause movement in the opposite direction. For convenience, the
1248 digit keys and the minus sign are automatically prefixes. Use
1249 \\[describe-mode] for details of the key bindings in the calendar
1250 window.
1252 Displays the calendar in a separate window, or optionally in a
1253 separate frame, depending on the value of `calendar-setup'.
1255 If `calendar-view-diary-initially-flag' is non-nil, also displays the
1256 diary entries for the current date (or however many days
1257 `diary-number-of-entries' specifies). This variable can be
1258 overridden by `calendar-setup'. As well as being displayed,
1259 diary entries can also be marked on the calendar (see
1260 `calendar-mark-diary-entries-flag').
1262 Runs the following hooks:
1264 `calendar-load-hook' - after loading calendar.el
1265 `calendar-today-visible-hook', `calendar-today-invisible-hook' - after
1266 generating a calendar, if today's date is visible or not, respectively
1267 `calendar-initial-window-hook' - after first creating a calendar
1269 This function is suitable for execution in a .emacs file."
1270 (interactive "P")
1271 ;; Avoid loading cal-x unless it will be used.
1272 (if (and (memq calendar-setup '(one-frame two-frames calendar-only))
1273 (display-multi-frame-p))
1274 (calendar-frame-setup calendar-setup arg)
1275 (calendar-basic-setup arg)))
1277 (defun calendar-basic-setup (&optional arg nodisplay)
1278 "Create a three-month calendar.
1279 If optional prefix argument ARG is non-nil, prompts for the month
1280 and year, else uses the current date. If NODISPLAY is non-nil, don't
1281 display the generated calendar."
1282 (interactive "P")
1283 (set-buffer (get-buffer-create calendar-buffer))
1284 (calendar-mode)
1285 (let* ((pop-up-windows t)
1286 (split-height-threshold 1000)
1287 (date (if arg (calendar-read-date t)
1288 (calendar-current-date)))
1289 (month (calendar-extract-month date))
1290 (year (calendar-extract-year date)))
1291 (calendar-increment-month month year (- calendar-offset))
1292 ;; Display the buffer before calling calendar-generate-window so that it
1293 ;; can get a chance to adjust the window sizes to the frame size.
1294 (or nodisplay (pop-to-buffer calendar-buffer))
1295 (calendar-generate-window month year)
1296 (if (and calendar-view-diary-initially-flag
1297 (calendar-date-is-visible-p date))
1298 (diary-view-entries)))
1299 (if calendar-view-holidays-initially-flag
1300 (let* ((diary-buffer (get-file-buffer diary-file))
1301 (diary-window (if diary-buffer (get-buffer-window diary-buffer)))
1302 (split-height-threshold (if diary-window 2 1000)))
1303 ;; FIXME display buffer?
1304 (calendar-list-holidays)))
1305 (run-hooks 'calendar-initial-window-hook))
1307 (defun calendar-generate-window (&optional mon yr)
1308 "Generate the calendar window for the current date.
1309 Optional integers MON and YR are used instead of today's date."
1310 (let* ((inhibit-read-only t)
1311 (today (calendar-current-date))
1312 (month (calendar-extract-month today))
1313 (day (calendar-extract-day today))
1314 (year (calendar-extract-year today))
1315 (today-visible (or (not mon)
1316 (<= (abs (calendar-interval mon yr month year)) 1)))
1317 (day-in-week (calendar-day-of-week today))
1318 (in-calendar-window (eq (window-buffer (selected-window))
1319 (get-buffer calendar-buffer))))
1320 (calendar-generate (or mon month) (or yr year))
1321 (calendar-update-mode-line)
1322 (calendar-cursor-to-visible-date
1323 (if today-visible today (list displayed-month 1 displayed-year)))
1324 (set-buffer-modified-p nil)
1325 ;; Don't do any window-related stuff if we weren't called from a
1326 ;; window displaying the calendar.
1327 (when in-calendar-window
1328 (if (or (one-window-p t) (not (window-full-width-p)))
1329 ;; Don't mess with the window size, but ensure that the first
1330 ;; line is fully visible.
1331 (set-window-vscroll nil 0)
1332 ;; Adjust the window to exactly fit the displayed calendar.
1333 (fit-window-to-buffer nil nil calendar-minimum-window-height))
1334 (sit-for 0))
1335 (and (bound-and-true-p font-lock-mode)
1336 (font-lock-fontify-buffer))
1337 (and calendar-mark-holidays-flag
1338 ;;; (calendar-date-is-valid-p today) ; useful for BC dates
1339 (calendar-mark-holidays)
1340 (and in-calendar-window (sit-for 0)))
1341 (unwind-protect
1342 (if calendar-mark-diary-entries-flag (diary-mark-entries))
1343 (if today-visible
1344 (run-hooks 'calendar-today-visible-hook)
1345 (run-hooks 'calendar-today-invisible-hook)))))
1347 (defun calendar-generate (month year)
1348 "Generate a three-month Gregorian calendar centered around MONTH, YEAR."
1349 ;; A negative YEAR is interpreted as BC; -1 being 1 BC, and so on.
1350 ;; Note that while calendars for years BC could be displayed as it
1351 ;; stands, almost all other calendar functions (eg holidays) would
1352 ;; at best have unpredictable results for such dates.
1353 (if (< (+ month (* 12 (1- year))) 2)
1354 (error "Months before January, 1 AD cannot be displayed"))
1355 (setq displayed-month month
1356 displayed-year year)
1357 (erase-buffer)
1358 (calendar-increment-month month year -1)
1359 (dotimes (i 3)
1360 (calendar-generate-month month year
1361 (+ calendar-left-margin
1362 (* calendar-month-width i)))
1363 (calendar-increment-month month year 1)))
1365 (defun calendar-move-to-column (indent)
1366 "Like `move-to-column', but indents if the line is too short."
1367 (if (< (move-to-column indent) indent)
1368 (indent-to indent)))
1370 (defun calendar-ensure-newline ()
1371 "Move to the next line, adding a newline if necessary."
1372 (or (zerop (forward-line 1))
1373 (insert "\n")))
1375 (defun calendar-insert-at-column (indent string truncate)
1376 "Move to column INDENT, adding spaces as needed.
1377 Inserts STRING so that it ends at INDENT. STRING is either a
1378 literal string, or a sexp to evaluate to return such. Truncates
1379 STRING to length TRUNCATE, ensure a trailing space."
1380 (if (not (ignore-errors (stringp (setq string (eval string)))))
1381 (calendar-move-to-column indent)
1382 (if (> (length string) truncate)
1383 (setq string (substring string 0 truncate)))
1384 (or (string-match " $" string)
1385 (if (= (length string) truncate)
1386 (aset string (1- truncate) ?\s)
1387 (setq string (concat string " "))))
1388 (calendar-move-to-column (- indent (length string)))
1389 (insert string)))
1391 (defun calendar-generate-month (month year indent)
1392 "Produce a calendar for MONTH, YEAR on the Gregorian calendar.
1393 The calendar is inserted at the top of the buffer in which point is currently
1394 located, but indented INDENT spaces. The indentation is done from the first
1395 character on the line and does not disturb the first INDENT characters on the
1396 line."
1397 (let ((blank-days ; at start of month
1398 (mod
1399 (- (calendar-day-of-week (list month 1 year))
1400 calendar-week-start-day)
1402 (last (calendar-last-day-of-month month year))
1403 (trunc (min calendar-intermonth-spacing
1404 (1- calendar-left-margin)))
1405 (day 1)
1406 string)
1407 (goto-char (point-min))
1408 (calendar-move-to-column indent)
1409 (insert
1410 (calendar-string-spread
1411 (list (format "%s %d" (calendar-month-name month) year))
1412 ?\s calendar-month-digit-width))
1413 (calendar-ensure-newline)
1414 (calendar-insert-at-column indent calendar-intermonth-header trunc)
1415 ;; Use the first two characters of each day to head the columns.
1416 (dotimes (i 7)
1417 (insert
1418 (progn
1419 (setq string
1420 (calendar-day-name (mod (+ calendar-week-start-day i) 7) nil t))
1421 (if enable-multibyte-characters
1422 (truncate-string-to-width string calendar-day-header-width)
1423 (substring string 0 calendar-day-header-width)))
1424 (make-string (- calendar-column-width calendar-day-header-width) ?\s)))
1425 (calendar-ensure-newline)
1426 (calendar-insert-at-column indent calendar-intermonth-text trunc)
1427 ;; Add blank days before the first of the month.
1428 (insert (make-string (* blank-days calendar-column-width) ?\s))
1429 ;; Put in the days of the month.
1430 (dotimes (i last)
1431 (setq day (1+ i))
1432 ;; TODO should numbers be left-justified, centered...?
1433 (insert (format (format "%%%dd%%s" calendar-day-digit-width) day
1434 (make-string
1435 (- calendar-column-width calendar-day-digit-width) ?\s)))
1436 ;; 'date property prevents intermonth text confusing re-searches.
1437 ;; (Tried intangible, it did not really work.)
1438 (set-text-properties
1439 (- (point) (1+ calendar-day-digit-width)) (1- (point))
1440 `(mouse-face highlight help-echo ,(eval calendar-date-echo-text)
1441 date t))
1442 (when (and (zerop (mod (+ day blank-days) 7))
1443 (/= day last))
1444 (calendar-ensure-newline)
1445 (setq day (1+ day)) ; first day of next week
1446 (calendar-insert-at-column indent calendar-intermonth-text trunc)))))
1448 (defun calendar-redraw ()
1449 "Redraw the calendar display, if `calendar-buffer' is live."
1450 (interactive)
1451 (if (get-buffer calendar-buffer)
1452 (with-current-buffer calendar-buffer
1453 (let ((cursor-date (calendar-cursor-to-nearest-date)))
1454 (calendar-generate-window displayed-month displayed-year)
1455 (calendar-cursor-to-visible-date cursor-date)))))
1457 (defvar calendar-mode-map
1458 (let ((map (make-keymap)))
1459 (suppress-keymap map)
1460 (dolist (c '(narrow-to-region mark-word mark-sexp mark-paragraph
1461 mark-defun mark-whole-buffer mark-page
1462 downcase-region upcase-region kill-region
1463 copy-region-as-kill capitalize-region write-region))
1464 (define-key map (vector 'remap c) 'calendar-not-implemented))
1465 (define-key map "<" 'calendar-scroll-right)
1466 (define-key map "\C-x<" 'calendar-scroll-right)
1467 (define-key map [prior] 'calendar-scroll-right-three-months)
1468 (define-key map "\ev" 'calendar-scroll-right-three-months)
1469 (define-key map ">" 'calendar-scroll-left)
1470 (define-key map "\C-x>" 'calendar-scroll-left)
1471 (define-key map [next] 'calendar-scroll-left-three-months)
1472 (define-key map "\C-v" 'calendar-scroll-left-three-months)
1473 (define-key map "\C-b" 'calendar-backward-day)
1474 (define-key map "\C-p" 'calendar-backward-week)
1475 (define-key map "\e{" 'calendar-backward-month)
1476 (define-key map "\C-x[" 'calendar-backward-year)
1477 (define-key map "\C-f" 'calendar-forward-day)
1478 (define-key map "\C-n" 'calendar-forward-week)
1479 (define-key map [left] 'calendar-backward-day)
1480 (define-key map [up] 'calendar-backward-week)
1481 (define-key map [right] 'calendar-forward-day)
1482 (define-key map [down] 'calendar-forward-week)
1483 (define-key map "\e}" 'calendar-forward-month)
1484 (define-key map "\C-x]" 'calendar-forward-year)
1485 (define-key map "\C-a" 'calendar-beginning-of-week)
1486 (define-key map "\C-e" 'calendar-end-of-week)
1487 (define-key map "\ea" 'calendar-beginning-of-month)
1488 (define-key map "\ee" 'calendar-end-of-month)
1489 (define-key map "\e<" 'calendar-beginning-of-year)
1490 (define-key map "\e>" 'calendar-end-of-year)
1491 (define-key map "\C-@" 'calendar-set-mark)
1492 ;; Many people are used to typing C-SPC and getting C-@.
1493 (define-key map [?\C-\s] 'calendar-set-mark)
1494 (define-key map "\C-x\C-x" 'calendar-exchange-point-and-mark)
1495 (define-key map "\e=" 'calendar-count-days-region)
1496 (define-key map "gd" 'calendar-goto-date)
1497 (define-key map "gD" 'calendar-goto-day-of-year)
1498 (define-key map "gj" 'calendar-julian-goto-date)
1499 (define-key map "ga" 'calendar-astro-goto-day-number)
1500 (define-key map "gh" 'calendar-hebrew-goto-date)
1501 (define-key map "gi" 'calendar-islamic-goto-date)
1502 (define-key map "gb" 'calendar-bahai-goto-date)
1503 (define-key map "gC" 'calendar-chinese-goto-date)
1504 (define-key map "gk" 'calendar-coptic-goto-date)
1505 (define-key map "ge" 'calendar-ethiopic-goto-date)
1506 (define-key map "gp" 'calendar-persian-goto-date)
1507 (define-key map "gc" 'calendar-iso-goto-date)
1508 (define-key map "gw" 'calendar-iso-goto-week)
1509 (define-key map "gf" 'calendar-french-goto-date)
1510 (define-key map "gml" 'calendar-mayan-goto-long-count-date)
1511 (define-key map "gmpc" 'calendar-mayan-previous-round-date)
1512 (define-key map "gmnc" 'calendar-mayan-next-round-date)
1513 (define-key map "gmph" 'calendar-mayan-previous-haab-date)
1514 (define-key map "gmnh" 'calendar-mayan-next-haab-date)
1515 (define-key map "gmpt" 'calendar-mayan-previous-tzolkin-date)
1516 (define-key map "gmnt" 'calendar-mayan-next-tzolkin-date)
1517 (define-key map "Aa" 'appt-add)
1518 (define-key map "Ad" 'appt-delete)
1519 (define-key map "S" 'calendar-sunrise-sunset)
1520 (define-key map "M" 'calendar-lunar-phases)
1521 (define-key map " " 'scroll-other-window)
1522 (define-key map "\d" 'scroll-other-window-down)
1523 (define-key map "\C-c\C-l" 'calendar-redraw)
1524 (define-key map "." 'calendar-goto-today)
1525 (define-key map "o" 'calendar-other-month)
1526 (define-key map "q" 'calendar-exit)
1527 (define-key map "a" 'calendar-list-holidays)
1528 (define-key map "h" 'calendar-cursor-holidays)
1529 (define-key map "x" 'calendar-mark-holidays)
1530 (define-key map "u" 'calendar-unmark)
1531 (define-key map "m" 'diary-mark-entries)
1532 (define-key map "d" 'diary-view-entries)
1533 (define-key map "D" 'diary-view-other-diary-entries)
1534 (define-key map "s" 'diary-show-all-entries)
1535 (define-key map "pd" 'calendar-print-day-of-year)
1536 (define-key map "pC" 'calendar-chinese-print-date)
1537 (define-key map "pk" 'calendar-coptic-print-date)
1538 (define-key map "pe" 'calendar-ethiopic-print-date)
1539 (define-key map "pp" 'calendar-persian-print-date)
1540 (define-key map "pc" 'calendar-iso-print-date)
1541 (define-key map "pj" 'calendar-julian-print-date)
1542 (define-key map "pa" 'calendar-astro-print-day-number)
1543 (define-key map "ph" 'calendar-hebrew-print-date)
1544 (define-key map "pi" 'calendar-islamic-print-date)
1545 (define-key map "pb" 'calendar-bahai-print-date)
1546 (define-key map "pf" 'calendar-french-print-date)
1547 (define-key map "pm" 'calendar-mayan-print-date)
1548 (define-key map "po" 'calendar-print-other-dates)
1549 (define-key map "id" 'diary-insert-entry)
1550 (define-key map "iw" 'diary-insert-weekly-entry)
1551 (define-key map "im" 'diary-insert-monthly-entry)
1552 (define-key map "iy" 'diary-insert-yearly-entry)
1553 (define-key map "ia" 'diary-insert-anniversary-entry)
1554 (define-key map "ib" 'diary-insert-block-entry)
1555 (define-key map "ic" 'diary-insert-cyclic-entry)
1556 (define-key map "ihd" 'diary-hebrew-insert-entry)
1557 (define-key map "ihm" 'diary-hebrew-insert-monthly-entry)
1558 (define-key map "ihy" 'diary-hebrew-insert-yearly-entry)
1559 (define-key map "iid" 'diary-islamic-insert-entry)
1560 (define-key map "iim" 'diary-islamic-insert-monthly-entry)
1561 (define-key map "iiy" 'diary-islamic-insert-yearly-entry)
1562 (define-key map "iBd" 'diary-bahai-insert-entry)
1563 (define-key map "iBm" 'diary-bahai-insert-monthly-entry)
1564 (define-key map "iBy" 'diary-bahai-insert-yearly-entry)
1565 (define-key map "?" 'calendar-goto-info-node)
1566 (define-key map "Hm" 'cal-html-cursor-month)
1567 (define-key map "Hy" 'cal-html-cursor-year)
1568 (define-key map "tm" 'cal-tex-cursor-month)
1569 (define-key map "tM" 'cal-tex-cursor-month-landscape)
1570 (define-key map "td" 'cal-tex-cursor-day)
1571 (define-key map "tw1" 'cal-tex-cursor-week)
1572 (define-key map "tw2" 'cal-tex-cursor-week2)
1573 (define-key map "tw3" 'cal-tex-cursor-week-iso)
1574 (define-key map "tw4" 'cal-tex-cursor-week-monday)
1575 (define-key map "tfd" 'cal-tex-cursor-filofax-daily)
1576 (define-key map "tfw" 'cal-tex-cursor-filofax-2week)
1577 (define-key map "tfW" 'cal-tex-cursor-filofax-week)
1578 (define-key map "tfy" 'cal-tex-cursor-filofax-year)
1579 (define-key map "ty" 'cal-tex-cursor-year)
1580 (define-key map "tY" 'cal-tex-cursor-year-landscape)
1582 (define-key map [menu-bar edit] 'undefined)
1583 (define-key map [menu-bar search] 'undefined)
1585 (easy-menu-define nil map nil cal-menu-sunmoon-menu)
1586 (easy-menu-define nil map nil cal-menu-diary-menu)
1587 (easy-menu-define nil map nil cal-menu-holidays-menu)
1588 (easy-menu-define nil map nil cal-menu-goto-menu)
1589 (easy-menu-define nil map nil cal-menu-scroll-menu)
1591 ;; These are referenced in the default calendar-date-echo-text.
1592 (define-key map [down-mouse-3]
1593 (easy-menu-binding cal-menu-context-mouse-menu))
1594 (define-key map [down-mouse-2]
1595 (easy-menu-binding cal-menu-global-mouse-menu))
1597 map)
1598 "Keymap for `calendar-mode'.")
1600 ;; Calendar mode is suitable only for specially formatted data.
1601 (put 'calendar-mode 'mode-class 'special)
1603 (defun calendar-mode-line-entry (command echo &optional key string)
1604 "Return a propertized string for `calendar-mode-line-format'.
1605 COMMAND is a command to run, ECHO is the help-echo text, KEY
1606 is COMMAND's keybinding, STRING describes the binding."
1607 (propertize (or key
1608 (substitute-command-keys
1609 (format "\\<calendar-mode-map>\\[%s] %s" command string)))
1610 'help-echo (format "mouse-1: %s" echo)
1611 'mouse-face 'mode-line-highlight
1612 'keymap (make-mode-line-mouse-map 'mouse-1 command)))
1614 ;; After calendar-mode-map.
1615 (defcustom calendar-mode-line-format
1616 (list
1617 (calendar-mode-line-entry 'calendar-scroll-right "previous month" "<")
1618 "Calendar"
1619 (concat
1620 (calendar-mode-line-entry 'calendar-goto-info-node "read Info on Calendar"
1621 nil "info")
1622 " / "
1623 (calendar-mode-line-entry 'calendar-other-month "choose another month"
1624 nil "other")
1625 " / "
1626 (calendar-mode-line-entry 'calendar-goto-today "go to today's date"
1627 nil "today"))
1628 '(calendar-date-string (calendar-current-date) t)
1629 (calendar-mode-line-entry 'calendar-scroll-left "next month" ">"))
1630 "The mode line of the calendar buffer.
1631 This is a list of items that evaluate to strings. The elements
1632 are evaluated and concatenated, evenly separated by blanks.
1633 During evaluation, the variable `date' is available as the date
1634 nearest the cursor (or today's date if that fails). To update
1635 the mode-line as the cursor moves, add `calendar-update-mode-line'
1636 to `calendar-move-hook'. Here is an example that has the Hebrew date,
1637 the day number/days remaining in the year, and the ISO week/year numbers:
1639 (list
1640 \"\"
1641 '(calendar-hebrew-date-string date)
1642 '(let* ((year (calendar-extract-year date))
1643 (d (calendar-day-number date))
1644 (days-remaining
1645 (- (calendar-day-number (list 12 31 year)) d)))
1646 (format \"%d/%d\" d days-remaining))
1647 '(let* ((d (calendar-absolute-from-gregorian date))
1648 (iso-date (calendar-iso-from-absolute d)))
1649 (format \"ISO week %d of %d\"
1650 (calendar-extract-month iso-date)
1651 (calendar-extract-year iso-date)))
1652 \"\"))"
1653 :risky t
1654 :type 'sexp
1655 :group 'calendar)
1657 (defun calendar-goto-info-node ()
1658 "Go to the info node for the calendar."
1659 (interactive)
1660 (info "(emacs)Calendar/Diary")
1661 (fit-window-to-buffer))
1663 (defvar calendar-mark-ring nil
1664 "Used by `calendar-set-mark'.")
1666 (define-derived-mode calendar-mode nil "Calendar"
1667 "A major mode for the calendar window.
1668 For a complete description, see the info node `Calendar/Diary'.
1670 \\<calendar-mode-map>\\{calendar-mode-map}"
1671 (setq buffer-read-only t
1672 buffer-undo-list t
1673 indent-tabs-mode nil)
1674 (calendar-update-mode-line)
1675 (make-local-variable 'calendar-mark-ring)
1676 (make-local-variable 'displayed-month) ; month in middle of window
1677 (make-local-variable 'displayed-year) ; year in middle of window
1678 ;; Most functions only work if displayed-month and displayed-year are set,
1679 ;; so let's make sure they're always set. Most likely, this will be reset
1680 ;; soon in calendar-generate, but better safe than sorry.
1681 (unless (boundp 'displayed-month) (setq displayed-month 1))
1682 (unless (boundp 'displayed-year) (setq displayed-year 2001))
1683 (set (make-local-variable 'font-lock-defaults)
1684 '(calendar-font-lock-keywords t)))
1686 (defun calendar-string-spread (strings char length)
1687 "Concatenate list of STRINGS separated with copies of CHAR to fill LENGTH.
1688 The effect is like mapconcat but the separating pieces are as balanced as
1689 possible. Each item of STRINGS is evaluated before concatenation so it can
1690 actually be an expression that evaluates to a string. If LENGTH is too short,
1691 the STRINGS are just concatenated and the result truncated."
1692 ;; The algorithm is based on equation (3.25) on page 85 of Concrete
1693 ;; Mathematics by Ronald L. Graham, Donald E. Knuth, and Oren Patashnik,
1694 ;; Addison-Wesley, Reading, MA, 1989.
1695 (let* ((strings (mapcar 'eval
1696 (if (< (length strings) 2)
1697 (append (list "") strings (list ""))
1698 strings)))
1699 (n (- length (length (apply 'concat strings))))
1700 (m (1- (length strings)))
1701 (s (car strings))
1702 (strings (cdr strings))
1703 (i 0))
1704 (dolist (string strings)
1705 (setq s (concat s
1706 (make-string (max 0 (/ (+ n i) m)) char)
1707 string)
1708 i (1+ i)))
1709 (substring s 0 length)))
1711 (defun calendar-update-mode-line ()
1712 "Update the calendar mode line with the current date and date style."
1713 (if (bufferp (get-buffer calendar-buffer))
1714 (with-current-buffer calendar-buffer
1715 (let ((start (- calendar-left-margin 2))
1716 (date (condition-case nil
1717 (calendar-cursor-to-nearest-date)
1718 (error (calendar-current-date)))))
1719 (setq mode-line-format
1720 (concat (make-string (max 0 (+ start
1721 (- (car (window-inside-edges))
1722 (car (window-edges))))) ?\s)
1723 (calendar-string-spread
1724 (mapcar 'eval calendar-mode-line-format)
1725 ?\s (- calendar-right-margin (1- start))))))
1726 (force-mode-line-update))))
1728 (defun calendar-window-list ()
1729 "List of all calendar-related windows."
1730 (let ((calendar-buffers (calendar-buffer-list))
1731 list)
1732 ;; Using 0 rather than t for last argument - see bug#2199.
1733 ;; This is only used with calendar-hide-window, which ignores
1734 ;; iconified frames anyway, so could use 'visible rather than 0.
1735 (walk-windows (lambda (w)
1736 (if (memq (window-buffer w) calendar-buffers)
1737 (push w list)))
1738 nil 0)
1739 list))
1741 (defun calendar-buffer-list ()
1742 "List of all calendar-related buffers (as buffers, not strings)."
1743 (let (buffs)
1744 (dolist (b (list calendar-hebrew-yahrzeit-buffer lunar-phases-buffer
1745 holiday-buffer diary-fancy-buffer solar-sunrises-buffer
1746 (get-file-buffer diary-file)
1747 calendar-buffer calendar-other-calendars-buffer))
1748 (and b (setq b (get-buffer b))
1749 (push b buffs)))
1750 buffs))
1752 (defun calendar-exit ()
1753 "Get out of the calendar window and hide it and related buffers."
1754 (interactive)
1755 (let ((diary-buffer (get-file-buffer diary-file)))
1756 (if (or (not diary-buffer)
1757 (not (buffer-modified-p diary-buffer))
1758 (yes-or-no-p
1759 "Diary modified; do you really want to exit the calendar? "))
1760 ;; Need to do this multiple times because one time can replace some
1761 ;; calendar-related buffers with other calendar-related buffers.
1762 (mapc (lambda (x)
1763 (mapc 'calendar-hide-window (calendar-window-list)))
1764 (calendar-window-list)))))
1766 (define-obsolete-function-alias 'exit-calendar 'calendar-exit "23.1")
1768 (defun calendar-hide-window (window)
1769 "Hide WINDOW if it is calendar-related."
1770 (let ((buffer (if (window-live-p window) (window-buffer window))))
1771 (if (memq buffer (calendar-buffer-list))
1772 (cond
1773 ((and (display-multi-frame-p)
1774 (eq 'icon (cdr (assoc 'visibility
1775 (frame-parameters
1776 (window-frame window))))))
1777 nil)
1778 ((and (display-multi-frame-p) (window-dedicated-p window))
1779 (if calendar-remove-frame-by-deleting
1780 (delete-frame (window-frame window))
1781 (iconify-frame (window-frame window))))
1782 ((not (and (select-window window) (one-window-p window)))
1783 (delete-window window))
1784 (t (set-buffer buffer)
1785 (bury-buffer))))))
1787 (defun calendar-current-date ()
1788 "Return the current date in a list (month day year)."
1789 (let ((now (decode-time)))
1790 (list (nth 4 now) (nth 3 now) (nth 5 now))))
1792 (defun calendar-column-to-segment ()
1793 "Convert current column to calendar month \"segment\".
1794 The left-most month returns 0, the next right 1, and so on."
1795 (let ((col (max 0 (+ (current-column)
1796 (/ calendar-intermonth-spacing 2)
1797 (- calendar-left-margin)))))
1798 (/ col (+ (* 7 calendar-column-width) calendar-intermonth-spacing))))
1800 (defun calendar-cursor-to-date (&optional error event)
1801 "Return a list (month day year) of current cursor position.
1802 If cursor is not on a specific date, signals an error if optional parameter
1803 ERROR is non-nil, otherwise just returns nil.
1804 If EVENT is non-nil, it's an event indicating the buffer position to
1805 use instead of point."
1806 (with-current-buffer
1807 (if event (window-buffer (posn-window (event-start event)))
1808 (current-buffer))
1809 (save-excursion
1810 (and event (setq event (event-start event))
1811 (goto-char (posn-point event)))
1812 (let* ((segment (calendar-column-to-segment))
1813 (month (% (+ displayed-month (1- segment)) 12)))
1814 ;; Call with point on either of the two digits in a 2-digit date,
1815 ;; or on or before the digit of a 1-digit date.
1816 (if (not (and (looking-at "[ 0-9]?[0-9][^0-9]")
1817 (get-text-property (point) 'date)))
1818 (if error (error "Not on a date!"))
1819 ;; Convert segment to real month and year.
1820 (if (zerop month) (setq month 12))
1821 ;; Go back to before the first date digit.
1822 (or (looking-at " ")
1823 (re-search-backward "[^0-9]"))
1824 (list month
1825 (string-to-number
1826 (buffer-substring (1+ (point))
1827 (+ 1 calendar-day-digit-width (point))))
1828 (cond
1829 ((and (= 12 month) (zerop segment)) (1- displayed-year))
1830 ((and (= 1 month) (= segment 2)) (1+ displayed-year))
1831 (t displayed-year))))))))
1833 (add-to-list 'debug-ignored-errors "Not on a date!")
1835 ;; The following version of calendar-gregorian-from-absolute is preferred for
1836 ;; reasons of clarity, BUT it's much slower than the version that follows it.
1838 ;;(defun calendar-gregorian-from-absolute (date)
1839 ;; "Compute the list (month day year) corresponding to the absolute DATE.
1840 ;;The absolute date is the number of days elapsed since the (imaginary)
1841 ;;Gregorian date Sunday, December 31, 1 BC."
1842 ;; (let* ((approx (/ date 366)) ; approximation from below
1843 ;; (year ; search forward from the approximation
1844 ;; (+ approx
1845 ;; (calendar-sum y approx
1846 ;; (>= date (calendar-absolute-from-gregorian (list 1 1 (1+ y))))
1847 ;; 1)))
1848 ;; (month ; search forward from January
1849 ;; (1+ (calendar-sum m 1
1850 ;; (> date
1851 ;; (calendar-absolute-from-gregorian
1852 ;; (list m (calendar-last-day-of-month m year) year)))
1853 ;; 1)))
1854 ;; (day ; calculate the day by subtraction
1855 ;; (- date
1856 ;; (1- (calendar-absolute-from-gregorian (list month 1 year))))))
1857 ;; (list month day year)))
1859 (defun calendar-gregorian-from-absolute (date)
1860 "Compute the list (month day year) corresponding to the absolute DATE.
1861 The absolute date is the number of days elapsed since the (imaginary)
1862 Gregorian date Sunday, December 31, 1 BC. This function does not
1863 handle dates in years BC."
1864 ;; See the footnote on page 384 of ``Calendrical Calculations, Part II:
1865 ;; Three Historical Calendars'' by E. M. Reingold, N. Dershowitz, and S. M.
1866 ;; Clamen, Software--Practice and Experience, Volume 23, Number 4
1867 ;; (April, 1993), pages 383-404 for an explanation.
1868 (let* ((d0 (1- date))
1869 (n400 (/ d0 146097))
1870 (d1 (% d0 146097))
1871 (n100 (/ d1 36524))
1872 (d2 (% d1 36524))
1873 (n4 (/ d2 1461))
1874 (d3 (% d2 1461))
1875 (n1 (/ d3 365))
1876 (day (1+ (% d3 365)))
1877 (year (+ (* 400 n400) (* 100 n100) (* n4 4) n1))
1878 (month 1)
1879 mdays)
1880 (if (or (= n100 4) (= n1 4))
1881 (list 12 31 year)
1882 (setq year (1+ year))
1883 (while (< (setq mdays (calendar-last-day-of-month month year)) day)
1884 (setq day (- day mdays)
1885 month (1+ month)))
1886 (list month day year))))
1888 (defun calendar-other-month (month year &optional event)
1889 "Display a three-month calendar centered around MONTH and YEAR.
1890 EVENT is an event like `last-nonmenu-event'."
1891 (interactive (let ((event (list last-nonmenu-event)))
1892 (append (calendar-read-date 'noday) event)))
1893 (save-selected-window
1894 (and event
1895 (setq event (event-start event))
1896 (select-window (posn-window event)))
1897 (unless (and (= month displayed-month)
1898 (= year displayed-year))
1899 (let ((old-date (calendar-cursor-to-date))
1900 (today (calendar-current-date)))
1901 (calendar-generate-window month year)
1902 (calendar-cursor-to-visible-date
1903 (cond
1904 ((calendar-date-is-visible-p old-date) old-date)
1905 ((calendar-date-is-visible-p today) today)
1906 (t (list month 1 year))))))))
1908 (defun calendar-set-mark (arg &optional event)
1909 "Mark the date under the cursor, or jump to marked date.
1910 With no prefix argument, push current date onto marked date ring.
1911 With argument ARG, jump to mark, pop it, and put point at end of ring."
1912 (interactive
1913 (list current-prefix-arg last-nonmenu-event))
1914 (let ((date (calendar-cursor-to-date t event)))
1915 (if arg
1916 (if (null calendar-mark-ring)
1917 (error "No mark set in this buffer")
1918 (calendar-goto-date (car calendar-mark-ring))
1919 (setq calendar-mark-ring
1920 (cdr (nconc calendar-mark-ring (list date)))))
1921 (push date calendar-mark-ring)
1922 ;; Since the top of the mark ring is the marked date in the
1923 ;; calendar, the mark ring in the calendar is one longer than
1924 ;; in other buffers to get the same effect.
1925 (if (> (length calendar-mark-ring) (1+ mark-ring-max))
1926 (setcdr (nthcdr mark-ring-max calendar-mark-ring) nil))
1927 (message "Mark set"))))
1929 (defun calendar-exchange-point-and-mark ()
1930 "Exchange the current cursor position with the marked date."
1931 (interactive)
1932 (let ((mark (car calendar-mark-ring))
1933 (date (calendar-cursor-to-date t)))
1934 (if (null mark)
1935 (error "No mark set in this buffer")
1936 (setq calendar-mark-ring (cons date (cdr calendar-mark-ring)))
1937 (calendar-goto-date mark))))
1939 (defun calendar-count-days-region ()
1940 "Count the number of days (inclusive) between point and the mark."
1941 (interactive)
1942 (let* ((days (- (calendar-absolute-from-gregorian
1943 (calendar-cursor-to-date t))
1944 (calendar-absolute-from-gregorian
1945 (or (car calendar-mark-ring)
1946 (error "No mark set in this buffer")))))
1947 (days (1+ (if (> days 0) days (- days)))))
1948 (message "Region has %d day%s (inclusive)"
1949 days (if (> days 1) "s" ""))))
1951 (defun calendar-not-implemented ()
1952 "Not implemented."
1953 (interactive)
1954 (error "%s not available in the calendar"
1955 (global-key-binding (this-command-keys))))
1957 (defun calendar-read (prompt acceptable &optional initial-contents)
1958 "Return an object read from the minibuffer.
1959 Prompt with the string PROMPT and use the function ACCEPTABLE to decide if
1960 entered item is acceptable. If non-nil, optional third arg INITIAL-CONTENTS
1961 is a string to insert in the minibuffer before reading."
1962 (let ((value (read-minibuffer prompt initial-contents)))
1963 (while (not (funcall acceptable value))
1964 (setq value (read-minibuffer prompt initial-contents)))
1965 value))
1968 (defvar calendar-abbrev-length 3
1969 "*Length of abbreviations to be used for day and month names.
1970 See also `calendar-day-abbrev-array' and `calendar-month-abbrev-array'.")
1972 ;; FIXME does it have to start from Sunday?
1973 (defcustom calendar-day-name-array
1974 ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"]
1975 "Array of capitalized strings giving, in order, the day names.
1976 The first two characters of each string will be used to head the
1977 day columns in the calendar. See also the variable
1978 `calendar-day-abbrev-array'."
1979 :group 'calendar
1980 :type '(vector (string :tag "Sunday")
1981 (string :tag "Monday")
1982 (string :tag "Tuesday")
1983 (string :tag "Wednesday")
1984 (string :tag "Thursday")
1985 (string :tag "Friday")
1986 (string :tag "Saturday")))
1988 (defvar calendar-day-abbrev-array
1989 [nil nil nil nil nil nil nil]
1990 "*Array of capitalized strings giving the abbreviated day names.
1991 The order should be the same as that of the full names specified
1992 in `calendar-day-name-array'. These abbreviations may be used
1993 instead of the full names in the diary file. Do not include a
1994 trailing `.' in the strings specified in this variable, though
1995 you may use such in the diary file. If any element of this array
1996 is nil, then the abbreviation will be constructed as the first
1997 `calendar-abbrev-length' characters of the corresponding full name.")
1999 (defcustom calendar-month-name-array
2000 ["January" "February" "March" "April" "May" "June"
2001 "July" "August" "September" "October" "November" "December"]
2002 "Array of capitalized strings giving, in order, the month names.
2003 See also the variable `calendar-month-abbrev-array'."
2004 :group 'calendar
2005 :type '(vector (string :tag "January")
2006 (string :tag "February")
2007 (string :tag "March")
2008 (string :tag "April")
2009 (string :tag "May")
2010 (string :tag "June")
2011 (string :tag "July")
2012 (string :tag "August")
2013 (string :tag "September")
2014 (string :tag "October")
2015 (string :tag "November")
2016 (string :tag "December")))
2018 (defvar calendar-month-abbrev-array
2019 [nil nil nil nil nil nil nil nil nil nil nil nil]
2020 "*Array of capitalized strings giving the abbreviated month names.
2021 The order should be the same as that of the full names specified
2022 in `calendar-month-name-array'. These abbreviations are used in
2023 the calendar menu entries, and can also be used in the diary
2024 file. Do not include a trailing `.' in the strings specified in
2025 this variable, though you may use such in the diary file. If any
2026 element of this array is nil, then the abbreviation will be
2027 constructed as the first `calendar-abbrev-length' characters of the
2028 corresponding full name.")
2030 (defun calendar-make-alist (sequence &optional start-index filter abbrevs)
2031 "Make an assoc list corresponding to SEQUENCE.
2032 Each element of sequence will be associated with an integer, starting
2033 from 1, or from START-INDEX if that is non-nil. If a sequence ABBREVS
2034 is supplied, the function `calendar-abbrev-construct' is used to
2035 construct abbreviations corresponding to the elements in SEQUENCE.
2036 Each abbreviation is entered into the alist with the same
2037 association index as the full name it represents.
2038 If FILTER is provided, apply it to each key in the alist."
2039 (let ((index 0)
2040 (offset (or start-index 1))
2041 (aseq (if abbrevs (calendar-abbrev-construct abbrevs sequence)))
2042 (aseqp (if abbrevs (calendar-abbrev-construct abbrevs sequence
2043 'period)))
2044 alist elem)
2045 (dotimes (i (length sequence) (reverse alist))
2046 (setq index (+ i offset)
2047 elem (elt sequence i)
2048 alist
2049 (cons (cons (if filter (funcall filter elem) elem) index) alist))
2050 (if aseq
2051 (setq elem (elt aseq i)
2052 alist (cons (cons (if filter (funcall filter elem) elem)
2053 index) alist)))
2054 (if aseqp
2055 (setq elem (elt aseqp i)
2056 alist (cons (cons (if filter (funcall filter elem) elem)
2057 index) alist))))))
2059 (defun calendar-read-date (&optional noday)
2060 "Prompt for Gregorian date. Return a list (month day year).
2061 If optional NODAY is t, does not ask for day, but just returns
2062 \(month 1 year); if NODAY is any other non-nil value the value returned is
2063 \(month year)"
2064 (let* ((year (calendar-read
2065 "Year (>0): "
2066 (lambda (x) (> x 0))
2067 (number-to-string (calendar-extract-year
2068 (calendar-current-date)))))
2069 (month-array calendar-month-name-array)
2070 (completion-ignore-case t)
2071 (month (cdr (assoc-string
2072 (completing-read
2073 "Month name: "
2074 (mapcar 'list (append month-array nil))
2075 nil t)
2076 (calendar-make-alist month-array 1) t)))
2077 (last (calendar-last-day-of-month month year)))
2078 (if noday
2079 (if (eq noday t)
2080 (list month 1 year)
2081 (list month year))
2082 (list month
2083 (calendar-read (format "Day (1-%d): " last)
2084 (lambda (x) (and (< 0 x) (<= x last))))
2085 year))))
2087 (defun calendar-interval (mon1 yr1 mon2 yr2)
2088 "The number of months difference between MON1, YR1 and MON2, YR2.
2089 The result is positive if the second date is later than the first.
2090 Negative years are interpreted as years BC; -1 being 1 BC, and so on."
2091 (if (< yr1 0) (setq yr1 (1+ yr1))) ; -1 BC -> 0 AD, etc
2092 (if (< yr2 0) (setq yr2 (1+ yr2)))
2093 (+ (* 12 (- yr2 yr1))
2094 (- mon2 mon1)))
2096 (defun calendar-abbrev-construct (abbrev full &optional period)
2097 "Internal calendar function to return a complete abbreviation array.
2098 ABBREV is an array of abbreviations, FULL the corresponding array
2099 of full names. The return value is the ABBREV array, with any nil
2100 elements replaced by the first three characters taken from the
2101 corresponding element of FULL. If optional argument PERIOD is non-nil,
2102 each element returned has a final `.' character."
2103 (let (elem array name)
2104 (dotimes (i (length full))
2105 (setq name (aref full i)
2106 elem (or (aref abbrev i)
2107 (substring name 0
2108 (min calendar-abbrev-length (length name))))
2109 elem (format "%s%s" elem (if period "." ""))
2110 array (append array (list elem))))
2111 (vconcat array)))
2113 (defvar calendar-font-lock-keywords
2114 `((,(concat (regexp-opt (mapcar 'identity calendar-month-name-array) t)
2115 " -?[0-9]+")
2116 . font-lock-function-name-face) ; month and year
2117 (,(regexp-opt
2118 (list (substring (aref calendar-day-name-array 6)
2119 0 calendar-day-header-width)
2120 (substring (aref calendar-day-name-array 0)
2121 0 calendar-day-header-width)))
2122 ;; Saturdays and Sundays are highlighted differently.
2123 . font-lock-comment-face)
2124 ;; First two chars of each day are used in the calendar.
2125 (,(regexp-opt (mapcar (lambda (x) (substring x 0 calendar-day-header-width))
2126 calendar-day-name-array))
2127 . font-lock-reference-face))
2128 "Default keywords to highlight in Calendar mode.")
2130 (defun calendar-day-name (date &optional abbrev absolute)
2131 "Return a string with the name of the day of the week of DATE.
2132 DATE should be a list in the format (MONTH DAY YEAR), unless the
2133 optional argument ABSOLUTE is non-nil, in which case DATE should
2134 be an integer in the range 0 to 6 corresponding to the day of the
2135 week. Day names are taken from the variable `calendar-day-name-array',
2136 unless the optional argument ABBREV is non-nil, in which case
2137 the variable `calendar-day-abbrev-array' is used."
2138 (aref (if abbrev
2139 (calendar-abbrev-construct calendar-day-abbrev-array
2140 calendar-day-name-array)
2141 calendar-day-name-array)
2142 (if absolute date (calendar-day-of-week date))))
2144 (defun calendar-month-name (month &optional abbrev)
2145 "Return a string with the name of month number MONTH.
2146 Months are numbered from one. Month names are taken from the
2147 variable `calendar-month-name-array', unless the optional
2148 argument ABBREV is non-nil, in which case
2149 `calendar-month-abbrev-array' is used."
2150 (aref (if abbrev
2151 (calendar-abbrev-construct calendar-month-abbrev-array
2152 calendar-month-name-array)
2153 calendar-month-name-array)
2154 (1- month)))
2156 (defun calendar-day-of-week (date)
2157 "Return the day-of-the-week index of DATE, 0 for Sunday, 1 for Monday, etc.
2158 DATE is a list of the form (month day year). A negative year is
2159 interpreted as BC; -1 being 1 BC, and so on."
2160 (mod (calendar-absolute-from-gregorian date) 7))
2162 (defun calendar-unmark ()
2163 "Delete all diary/holiday marks/highlighting from the calendar."
2164 (interactive)
2165 (setq calendar-mark-holidays-flag nil
2166 calendar-mark-diary-entries-flag nil)
2167 (with-current-buffer calendar-buffer
2168 (mapc 'delete-overlay (overlays-in (point-min) (point-max)))))
2170 (defun calendar-date-is-visible-p (date)
2171 "Return non-nil if DATE is valid and is visible in the calendar window."
2172 (and (calendar-date-is-valid-p date)
2173 (< (abs (calendar-interval
2174 displayed-month displayed-year
2175 (calendar-extract-month date) (calendar-extract-year date)))
2176 2)))
2178 ;; FIXME can this be generalized for holiday-chinese?
2179 (defun calendar-nongregorian-visible-p (month day toabs fromabs switch)
2180 "Return non-nil if MONTH, DAY is visible in the calendar window.
2181 MONTH and DAY are in some non-Gregorian calendar system. The
2182 functions TOABS and FROMABS convert that system to and from
2183 absolute, respectively. SWITCH is a function that takes a single
2184 argument (a local month number). It applies when the local year
2185 changes across the calendar window, and returns non-nil if the
2186 specified month should be associated with the higher year.
2187 Returns the corresponding Gregorian date."
2188 ;; We need to choose the local year associated with month and day
2189 ;; that might make them visible.
2190 (let* ((m1 displayed-month)
2191 (y1 displayed-year)
2192 (m2 displayed-month)
2193 (y2 displayed-year)
2194 ;; Absolute date of first/last dates in calendar window.
2195 (start-date (progn
2196 (calendar-increment-month m1 y1 -1)
2197 (calendar-absolute-from-gregorian (list m1 1 y1))))
2198 (end-date (progn
2199 (calendar-increment-month m2 y2 1)
2200 (calendar-absolute-from-gregorian
2201 (list m2 (calendar-last-day-of-month m2 y2) y2))))
2202 ;; Local date of first/last date in calendar window.
2203 (local-start (funcall fromabs start-date))
2204 (local-end (funcall fromabs end-date))
2205 ;; Local year of first/last dates.
2206 ;; Can only differ if displayed-month = 12, 1, 2.
2207 (local-y1 (calendar-extract-year local-start))
2208 (local-y2 (calendar-extract-year local-end))
2209 ;; Choose which year might be visible in the window.
2210 ;; Obviously it only matters when y1 and y2 differ, ie
2211 ;; when the _local_ new year is visible.
2212 (year (if (funcall switch month) local-y2 local-y1))
2213 (date (calendar-gregorian-from-absolute
2214 (funcall toabs (list month day year)))))
2215 (if (calendar-date-is-visible-p date)
2216 date)))
2218 (defun calendar-date-is-valid-p (date)
2219 "Return t if DATE is a valid date."
2220 (let ((month (calendar-extract-month date))
2221 (day (calendar-extract-day date))
2222 (year (calendar-extract-year date)))
2223 (and (<= 1 month) (<= month 12)
2224 ;; (calendar-read-date t) used to return a date with day = nil.
2225 ;; Should not be valid (?), since many funcs prob assume integer.
2226 ;; (calendar-read-date 'noday) returns (month year), which
2227 ;; currently results in calendar-extract-year returning nil.
2228 day year (<= 1 day) (<= day (calendar-last-day-of-month month year))
2229 ;; BC dates left as non-valid, to suppress errors from
2230 ;; complex holiday algorithms not suitable for years BC.
2231 ;; Note there are side effects on calendar navigation.
2232 (<= 1 year))))
2234 (define-obsolete-function-alias 'calendar-date-is-legal-p
2235 'calendar-date-is-valid-p "23.1")
2237 (defun calendar-date-equal (date1 date2)
2238 "Return t if the DATE1 and DATE2 are the same."
2239 (and
2240 (= (calendar-extract-month date1) (calendar-extract-month date2))
2241 (= (calendar-extract-day date1) (calendar-extract-day date2))
2242 (= (calendar-extract-year date1) (calendar-extract-year date2))))
2244 (defun calendar-make-temp-face (attrlist)
2245 "Return a temporary face based on the attributes in ATTRLIST.
2246 ATTRLIST is a list with elements of the form :face face :foreground color."
2247 (let ((attrs attrlist)
2248 faceinfo face temp-face)
2249 ;; Separate :face from the other attributes. Use the last :face
2250 ;; if there are more than one. FIXME is merging meaningful?
2251 (while attrs
2252 (if (eq (car attrs) :face)
2253 (setq face (intern-soft (cadr attrs))
2254 attrs (cddr attrs))
2255 (push (car attrs) faceinfo)
2256 (setq attrs (cdr attrs))))
2257 (or (facep face) (setq face 'default))
2258 (if (not faceinfo)
2259 ;; No attributes to apply, so just use an existing-face.
2260 face
2261 ;; FIXME should we be using numbered temp-faces, re-using where poss?
2262 (setq temp-face
2263 (make-symbol
2264 (concat ":caltemp"
2265 (mapconcat (lambda (sym)
2266 (cond
2267 ((symbolp sym) (symbol-name sym))
2268 ((numberp sym) (number-to-string sym))
2269 (t sym)))
2270 attrlist ""))))
2271 (make-face temp-face)
2272 (copy-face face temp-face)
2273 ;; Apply the font aspects.
2274 (apply 'set-face-attribute temp-face nil (nreverse faceinfo))
2275 temp-face)))
2277 (defun calendar-mark-visible-date (date &optional mark)
2278 "Mark DATE in the calendar window with MARK.
2279 MARK is a single-character string, a list of face attributes/values, or a face.
2280 MARK defaults to `diary-entry-marker'."
2281 (if (calendar-date-is-valid-p date)
2282 (with-current-buffer calendar-buffer
2283 (save-excursion
2284 (calendar-cursor-to-visible-date date)
2285 (setq mark
2286 (or (and (stringp mark) (= (length mark) 1) mark) ; single-char
2287 ;; The next two use to also check font-lock-mode.
2288 ;; See comments above diary-entry-marker for why
2289 ;; this was dropped.
2290 ;;; (and font-lock-mode
2291 ;;; (or
2292 (and (listp mark) (> (length mark) 0) mark) ; attrs
2293 (and (facep mark) mark) ; )) face-name
2294 diary-entry-marker))
2295 (cond
2296 ;; Face or an attr-list that contained a face.
2297 ((facep mark)
2298 (overlay-put
2299 (make-overlay (1- (point)) (1+ (point))) 'face mark))
2300 ;; Single-character mark, goes after the date.
2301 ((and (stringp mark) (= (length mark) 1))
2302 (overlay-put
2303 (make-overlay (1+ (point)) (+ 2 (point))) 'display mark))
2304 (t ; attr list
2305 (overlay-put
2306 (make-overlay (1- (point)) (1+ (point))) 'face
2307 (calendar-make-temp-face mark))))))))
2309 (define-obsolete-function-alias 'mark-visible-calendar-date
2310 'calendar-mark-visible-date "23.1")
2312 (defun calendar-star-date ()
2313 "Replace the date under the cursor in the calendar window with asterisks.
2314 You might want to add this function to `calendar-today-visible-hook'."
2315 (unless (catch 'found
2316 (dolist (ol (overlays-at (point)))
2317 (and (overlay-get ol 'calendar-star)
2318 (throw 'found t))))
2319 (let ((ol (make-overlay (1- (point)) (point))))
2320 (overlay-put ol 'display "*")
2321 (overlay-put ol 'calendar-star t)
2322 ;; Use copy-sequence to avoid merging of identical 'display props.
2323 ;; Use two overlays so as not to mess up
2324 ;; calendar-cursor-to-nearest-date (and calendar-forward-day).
2325 (overlay-put (setq ol (make-overlay (point) (1+ (point))))
2326 'display (copy-sequence "*"))
2327 (overlay-put ol 'calendar-star t))))
2329 (defun calendar-mark-today ()
2330 "Mark the date under the cursor in the calendar window.
2331 The date is marked with `calendar-today-marker'. You might want to add
2332 this function to `calendar-today-visible-hook'."
2333 (calendar-mark-visible-date (calendar-cursor-to-date) calendar-today-marker))
2335 (defun calendar-date-compare (date1 date2)
2336 "Return t if DATE1 is before DATE2, nil otherwise.
2337 The actual dates are in the car of DATE1 and DATE2."
2338 (< (calendar-absolute-from-gregorian (car date1))
2339 (calendar-absolute-from-gregorian (car date2))))
2341 (defun calendar-date-string (date &optional abbreviate nodayname)
2342 "A string form of DATE, driven by the variable `calendar-date-display-form'.
2343 An optional parameter ABBREVIATE, when non-nil, causes the month
2344 and day names to be abbreviated as specified by
2345 `calendar-month-abbrev-array' and `calendar-day-abbrev-array',
2346 respectively. An optional parameter NODAYNAME, when t, omits the
2347 name of the day of the week."
2348 (let* ((dayname (unless nodayname (calendar-day-name date abbreviate)))
2349 (month (calendar-extract-month date))
2350 (monthname (calendar-month-name month abbreviate))
2351 (day (number-to-string (calendar-extract-day date)))
2352 (month (number-to-string month))
2353 (year (number-to-string (calendar-extract-year date))))
2354 (mapconcat 'eval calendar-date-display-form "")))
2356 (defun calendar-dayname-on-or-before (dayname date)
2357 "Return the absolute date of the DAYNAME on or before absolute DATE.
2358 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
2360 Note: Applying this function to d+6 gives us the DAYNAME on or after an
2361 absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to
2362 absolute date d, applying it to d-1 gives the DAYNAME previous to absolute
2363 date d, and applying it to d+7 gives the DAYNAME following absolute date d."
2364 (- date (% (- date dayname) 7)))
2366 (defun calendar-nth-named-absday (n dayname month year &optional day)
2367 "Absolute date of the Nth DAYNAME after/before MONTH YEAR DAY.
2368 A DAYNAME of 0 means Sunday, 1 means Monday, and so on.
2369 If N>0, return the Nth DAYNAME after MONTH DAY, YEAR (inclusive).
2370 If N<0, return the Nth DAYNAME before MONTH DAY, YEAR (inclusive).
2371 DAY defaults to 1 if N>0, and MONTH's last day otherwise."
2372 (if (> n 0)
2373 (+ (* 7 (1- n))
2374 (calendar-dayname-on-or-before
2375 dayname
2376 (+ 6 (calendar-absolute-from-gregorian
2377 (list month (or day 1) year)))))
2378 (+ (* 7 (1+ n))
2379 (calendar-dayname-on-or-before
2380 dayname
2381 (calendar-absolute-from-gregorian
2382 (list month
2383 (or day (calendar-last-day-of-month month year))
2384 year))))))
2386 (defun calendar-nth-named-day (n dayname month year &optional day)
2387 "Date of the Nth DAYNAME after/before MONTH YEAR DAY.
2388 Like `calendar-nth-named-absday', but returns a Gregorian date."
2389 (calendar-gregorian-from-absolute
2390 (calendar-nth-named-absday n dayname month year day)))
2392 (defun calendar-day-of-year-string (&optional date)
2393 "String of day number of year of Gregorian DATE.
2394 Defaults to today's date if DATE is not given."
2395 (let* ((d (or date (calendar-current-date)))
2396 (year (calendar-extract-year d))
2397 (day (calendar-day-number d))
2398 (days-remaining (- (calendar-day-number (list 12 31 year)) day)))
2399 (format "Day %d of %d; %d day%s remaining in the year"
2400 day year days-remaining (if (= days-remaining 1) "" "s"))))
2402 (defun calendar-other-dates (date)
2403 "Return a list of strings giving Gregorian DATE in other calendars.
2404 DATE is (month day year). Calendars that do not apply are omitted."
2405 (let (odate)
2406 (delq nil
2407 (list
2408 (calendar-day-of-year-string date)
2409 (format "ISO date: %s" (calendar-iso-date-string date))
2410 (format "Julian date: %s"
2411 (calendar-julian-date-string date))
2412 (format "Astronomical (Julian) day number (at noon UTC): %s.0"
2413 (calendar-astro-date-string date))
2414 (format "Fixed (RD) date: %s"
2415 (calendar-absolute-from-gregorian date))
2416 (format "Hebrew date (before sunset): %s"
2417 (calendar-hebrew-date-string date))
2418 (format "Persian date: %s"
2419 (calendar-persian-date-string date))
2420 (unless (string-equal
2421 (setq odate (calendar-islamic-date-string date))
2423 (format "Islamic date (before sunset): %s" odate))
2424 (unless (string-equal
2425 (setq odate (calendar-bahai-date-string date))
2427 (format "Baha'i date: %s" odate))
2428 (format "Chinese date: %s"
2429 (calendar-chinese-date-string date))
2430 (unless (string-equal
2431 (setq odate (calendar-coptic-date-string date))
2433 (format "Coptic date: %s" odate))
2434 (unless (string-equal
2435 (setq odate (calendar-ethiopic-date-string date))
2437 (format "Ethiopic date: %s" odate))
2438 (unless (string-equal
2439 (setq odate (calendar-french-date-string date))
2441 (format "French Revolutionary date: %s" odate))
2442 (format "Mayan date: %s"
2443 (calendar-mayan-date-string date))))))
2445 (declare-function x-popup-menu "xmenu.c" (position menu))
2447 (defun calendar-print-other-dates (&optional event)
2448 "Show dates on other calendars for date under the cursor.
2449 If called by a mouse-event, pops up a menu with the result."
2450 (interactive (list last-nonmenu-event))
2451 (let* ((date (calendar-cursor-to-date t event))
2452 (title (format "%s (Gregorian)" (calendar-date-string date)))
2453 (others (calendar-other-dates date))
2454 selection)
2455 (if (mouse-event-p event)
2456 (and (setq selection (cal-menu-x-popup-menu event title
2457 (mapcar 'list others)))
2458 (call-interactively selection))
2459 (calendar-in-read-only-buffer calendar-other-calendars-buffer
2460 (calendar-set-mode-line title)
2461 (insert (mapconcat 'identity others "\n"))))))
2463 (defun calendar-print-day-of-year ()
2464 "Show day number in year/days remaining in year for date under the cursor."
2465 (interactive)
2466 (message "%s" (calendar-day-of-year-string (calendar-cursor-to-date t))))
2468 (defun calendar-set-mode-line (str)
2469 "Set mode line to STR, centered, surrounded by dashes."
2470 (let* ((edges (window-edges))
2471 ;; As per doc of window-width, total visible mode-line length.
2472 (width (- (nth 2 edges) (car edges))))
2473 ;; Hack for --daemon. See bug #2199.
2474 ;; If no frame exists yet, we have no idea what width to use.
2475 (and (= width 10)
2476 (not window-system)
2477 (setq width (or (getenv "COLUMNS") 80)))
2478 (setq mode-line-format
2479 (if buffer-file-name
2480 `("-" mode-line-modified
2481 ,(calendar-string-spread (list str) ?- (- width 6))
2482 "---")
2483 (calendar-string-spread (list str) ?- width)))))
2485 (defun calendar-version ()
2486 "Display the Calendar version."
2487 (interactive)
2488 (message "GNU Emacs %s" emacs-version))
2490 (make-obsolete 'calendar-version 'emacs-version "23.1")
2493 (run-hooks 'calendar-load-hook)
2495 (provide 'calendar)
2497 ;; Local variables:
2498 ;; byte-compile-dynamic: t
2499 ;; End:
2501 ;; arch-tag: 19c61596-c8fb-4c69-bcf1-7dd739919cd8
2502 ;;; calendar.el ends here