]> code.delx.au - gnu-emacs/blob - lisp/calendar/diary-lib.el
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-25
[gnu-emacs] / lisp / calendar / diary-lib.el
1 ;;; diary-lib.el --- diary functions
2
3 ;; Copyright (C) 1989, 1990, 1992, 1993, 1994, 1995, 2003, 2004, 2005
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <gmorris@ast.cam.ac.uk>
8 ;; Keywords: calendar
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; This collection of functions implements the diary features as described
30 ;; in calendar.el.
31
32 ;; Comments, corrections, and improvements should be sent to
33 ;; Edward M. Reingold Department of Computer Science
34 ;; (217) 333-6733 University of Illinois at Urbana-Champaign
35 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
36 ;; Urbana, Illinois 61801
37
38 ;;; Code:
39
40 (require 'calendar)
41
42 (defun diary-check-diary-file ()
43 "Check that the file specified by `diary-file' exists and is readable.
44 If so, return the expanded file name, otherwise signal an error."
45 (let ((d-file (substitute-in-file-name diary-file)))
46 (if (and d-file (file-exists-p d-file))
47 (if (file-readable-p d-file)
48 d-file
49 (error "Diary file `%s' is not readable" diary-file))
50 (error "Diary file `%s' does not exist" diary-file))))
51
52 ;;;###autoload
53 (defun diary (&optional arg)
54 "Generate the diary window for ARG days starting with the current date.
55 If no argument is provided, the number of days of diary entries is governed
56 by the variable `number-of-diary-entries'. A value of ARG less than 1
57 does nothing. This function is suitable for execution in a `.emacs' file."
58 (interactive "P")
59 (diary-check-diary-file)
60 (let ((date (calendar-current-date)))
61 (list-diary-entries
62 date
63 (cond (arg (prefix-numeric-value arg))
64 ((vectorp number-of-diary-entries)
65 (aref number-of-diary-entries (calendar-day-of-week date)))
66 (t number-of-diary-entries)))))
67
68 (defun view-diary-entries (arg)
69 "Prepare and display a buffer with diary entries.
70 Searches the file named in `diary-file' for entries that
71 match ARG days starting with the date indicated by the cursor position
72 in the displayed three-month calendar."
73 (interactive "p")
74 (diary-check-diary-file)
75 (list-diary-entries (calendar-cursor-to-date t) arg))
76
77 (defun view-other-diary-entries (arg d-file)
78 "Prepare and display buffer of diary entries from an alternative diary file.
79 Searches for entries that match ARG days, starting with the date indicated
80 by the cursor position in the displayed three-month calendar.
81 D-FILE specifies the file to use as the diary file."
82 (interactive
83 (list (prefix-numeric-value current-prefix-arg)
84 (read-file-name "Enter diary file name: " default-directory nil t)))
85 (let ((diary-file d-file))
86 (view-diary-entries arg)))
87
88 (autoload 'check-calendar-holidays "holidays"
89 "Check the list of holidays for any that occur on DATE.
90 The value returned is a list of strings of relevant holiday descriptions.
91 The holidays are those in the list `calendar-holidays'.")
92
93 (autoload 'calendar-holiday-list "holidays"
94 "Form the list of holidays that occur on dates in the calendar window.
95 The holidays are those in the list `calendar-holidays'.")
96
97 (autoload 'diary-french-date "cal-french"
98 "French calendar equivalent of date diary entry.")
99
100 (autoload 'diary-mayan-date "cal-mayan"
101 "Mayan calendar equivalent of date diary entry.")
102
103 (autoload 'diary-iso-date "cal-iso"
104 "ISO calendar equivalent of date diary entry.")
105
106 (autoload 'diary-julian-date "cal-julian"
107 "Julian calendar equivalent of date diary entry.")
108
109 (autoload 'diary-astro-day-number "cal-julian"
110 "Astronomical (Julian) day number diary entry.")
111
112 (autoload 'diary-chinese-date "cal-china"
113 "Chinese calendar equivalent of date diary entry.")
114
115 (autoload 'diary-islamic-date "cal-islam"
116 "Islamic calendar equivalent of date diary entry.")
117
118 (autoload 'list-islamic-diary-entries "cal-islam"
119 "Add any Islamic date entries from the diary file to `diary-entries-list'.")
120
121 (autoload 'mark-islamic-diary-entries "cal-islam"
122 "Mark days in the calendar window that have Islamic date diary entries.")
123
124 (autoload 'mark-islamic-calendar-date-pattern "cal-islam"
125 "Mark dates in calendar window that conform to Islamic date MONTH/DAY/YEAR.")
126
127 (autoload 'diary-bahai-date "cal-bahai"
128 "Baha'i calendar equivalent of date diary entry."
129 t)
130
131 (autoload 'list-bahai-diary-entries "cal-bahai"
132 "Add any Baha'i date entries from the diary file to `diary-entries-list'."
133 t)
134
135 (autoload 'mark-bahai-diary-entries "cal-bahai"
136 "Mark days in the calendar window that have Baha'i date diary entries."
137 t)
138
139 (autoload 'mark-bahai-calendar-date-pattern "cal-bahai"
140 "Mark dates in calendar window that conform to Baha'i date MONTH/DAY/YEAR."
141 t)
142
143 (autoload 'diary-hebrew-date "cal-hebrew"
144 "Hebrew calendar equivalent of date diary entry.")
145
146 (autoload 'diary-omer "cal-hebrew"
147 "Omer count diary entry.")
148
149 (autoload 'diary-yahrzeit "cal-hebrew"
150 "Yahrzeit diary entry--entry applies if date is yahrzeit or the day before.")
151
152 (autoload 'diary-parasha "cal-hebrew"
153 "Parasha diary entry--entry applies if date is a Saturday.")
154
155 (autoload 'diary-rosh-hodesh "cal-hebrew"
156 "Rosh Hodesh diary entry.")
157
158 (autoload 'list-hebrew-diary-entries "cal-hebrew"
159 "Add any Hebrew date entries from the diary file to `diary-entries-list'.")
160
161 (autoload 'mark-hebrew-diary-entries "cal-hebrew"
162 "Mark days in the calendar window that have Hebrew date diary entries.")
163
164 (autoload 'mark-hebrew-calendar-date-pattern "cal-hebrew"
165 "Mark dates in calendar window that conform to Hebrew date MONTH/DAY/YEAR.")
166
167 (autoload 'diary-coptic-date "cal-coptic"
168 "Coptic calendar equivalent of date diary entry.")
169
170 (autoload 'diary-ethiopic-date "cal-coptic"
171 "Ethiopic calendar equivalent of date diary entry.")
172
173 (autoload 'diary-persian-date "cal-persia"
174 "Persian calendar equivalent of date diary entry.")
175
176 (autoload 'diary-phases-of-moon "lunar" "Moon phases diary entry.")
177
178 (autoload 'diary-sunrise-sunset "solar"
179 "Local time of sunrise and sunset as a diary entry.")
180
181 (autoload 'diary-sabbath-candles "solar"
182 "Local time of candle lighting diary entry--applies if date is a Friday.
183 No diary entry if there is no sunset on that date.")
184
185 (defvar diary-syntax-table (copy-syntax-table (standard-syntax-table))
186 "The syntax table used when parsing dates in the diary file.
187 It is the standard syntax table used in Fundamental mode, but with the
188 syntax of `*' and `:' changed to be word constituents.")
189
190 (modify-syntax-entry ?* "w" diary-syntax-table)
191 (modify-syntax-entry ?: "w" diary-syntax-table)
192
193 (defvar diary-entries-list)
194 (defvar displayed-year)
195 (defvar displayed-month)
196 (defvar entry)
197 (defvar date)
198 (defvar number)
199 (defvar date-string)
200 (defvar original-date)
201
202 (defun diary-attrtype-convert (attrvalue type)
203 "Convert string ATTRVALUE to TYPE appropriate for a face description.
204 Valid TYPEs are: string, symbol, int, stringtnil, tnil."
205 (let (ret)
206 (setq ret (cond ((eq type 'string) attrvalue)
207 ((eq type 'symbol) (read attrvalue))
208 ((eq type 'int) (string-to-int attrvalue))
209 ((eq type 'stringtnil)
210 (cond ((string= "t" attrvalue) t)
211 ((string= "nil" attrvalue) nil)
212 (t attrvalue)))
213 ((eq type 'tnil)
214 (cond ((string= "t" attrvalue) t)
215 ((string= "nil" attrvalue) nil)))))
216 ; (message "(%s)[%s]=[%s]" (print type) attrvalue ret)
217 ret))
218
219
220 (defun diary-pull-attrs (entry fileglobattrs)
221 "Pull the face-related attributes off the entry, merge with the
222 fileglobattrs, and return the (possibly modified) entry and face
223 data in a list of attrname attrvalue values.
224 The entry will be modified to drop all tags that are used for face matching.
225 If entry is nil, then the fileglobattrs are being searched for,
226 the fileglobattrs variable is ignored, and
227 diary-glob-file-regexp-prefix is prepended to the regexps before each
228 search."
229 (save-excursion
230 (let (regexp regnum attrname attr-list attrname attrvalue type
231 ret-attr attr)
232 (if (null entry)
233 (progn
234 (setq ret-attr '()
235 attr-list diary-face-attrs)
236 (while attr-list
237 (goto-char (point-min))
238 (setq attr (car attr-list)
239 regexp (nth 0 attr)
240 regnum (nth 1 attr)
241 attrname (nth 2 attr)
242 type (nth 3 attr)
243 regexp (concat diary-glob-file-regexp-prefix regexp))
244 (setq attrvalue nil)
245 (if (re-search-forward regexp (point-max) t)
246 (setq attrvalue (buffer-substring-no-properties
247 (match-beginning regnum)
248 (match-end regnum))))
249 (if (and attrvalue
250 (setq attrvalue (diary-attrtype-convert attrvalue type)))
251 (setq ret-attr (append ret-attr (list attrname attrvalue))))
252 (setq attr-list (cdr attr-list)))
253 (setq fileglobattrs ret-attr))
254 (progn
255 (setq ret-attr fileglobattrs
256 attr-list diary-face-attrs)
257 (while attr-list
258 (goto-char (point-min))
259 (setq attr (car attr-list)
260 regexp (nth 0 attr)
261 regnum (nth 1 attr)
262 attrname (nth 2 attr)
263 type (nth 3 attr))
264 (setq attrvalue nil)
265 (if (string-match regexp entry)
266 (progn
267 (setq attrvalue (substring-no-properties entry
268 (match-beginning regnum)
269 (match-end regnum)))
270 (setq entry (replace-match "" t t entry))))
271 (if (and attrvalue
272 (setq attrvalue (diary-attrtype-convert attrvalue type)))
273 (setq ret-attr (append ret-attr (list attrname attrvalue))))
274 (setq attr-list (cdr attr-list)))))
275 (list entry ret-attr))))
276
277
278 ;; This can be removed once the kill/yank treatment of invisible text
279 ;; (see etc/TODO) is fixed. -- gm
280 (defcustom diary-header-line-flag t
281 "*If non-nil, `simple-diary-display' will show a header line.
282 The format of the header is specified by `diary-header-line-format'."
283 :group 'diary
284 :type 'boolean
285 :version "22.1")
286
287 (defcustom diary-header-line-format
288 '(:eval (calendar-string-spread
289 (list (if selective-display
290 "Selective display active - press \"s\" in calendar \
291 before edit/copy"
292 "Diary"))
293 ?\ (frame-width)))
294 "*Format of the header line displayed by `simple-diary-display'.
295 Only used if `diary-header-line-flag' is non-nil."
296 :group 'diary
297 :type 'sexp
298 :version "22.1")
299
300 (defvar diary-saved-point) ; internal
301
302 (defun list-diary-entries (date number)
303 "Create and display a buffer containing the relevant lines in diary-file.
304 The arguments are DATE and NUMBER; the entries selected are those
305 for NUMBER days starting with date DATE. The other entries are hidden
306 using selective display. If NUMBER is less than 1, this function does nothing.
307
308 Returns a list of all relevant diary entries found, if any, in order by date.
309 The list entries have the form ((month day year) string specifier) where
310 \(month day year) is the date of the entry, string is the entry text, and
311 specifier is the applicability. If the variable `diary-list-include-blanks'
312 is t, this list includes a dummy diary entry consisting of the empty string)
313 for a date with no diary entries.
314
315 After the list is prepared, the hooks `nongregorian-diary-listing-hook',
316 `list-diary-entries-hook', `diary-display-hook', and `diary-hook' are run.
317 These hooks have the following distinct roles:
318
319 `nongregorian-diary-listing-hook' can cull dates from the diary
320 and each included file. Usually used for Hebrew or Islamic
321 diary entries in files. Applied to *each* file.
322
323 `list-diary-entries-hook' adds or manipulates diary entries from
324 external sources. Used, for example, to include diary entries
325 from other files or to sort the diary entries. Invoked *once* only,
326 before the display hook is run.
327
328 `diary-display-hook' does the actual display of information. If this is
329 nil, simple-diary-display will be used. Use add-hook to set this to
330 fancy-diary-display, if desired. If you want no diary display, use
331 add-hook to set this to ignore.
332
333 `diary-hook' is run last. This can be used for an appointment
334 notification function."
335
336 (when (> number 0)
337 (let ((original-date date);; save for possible use in the hooks
338 old-diary-syntax-table
339 diary-entries-list
340 file-glob-attrs
341 (date-string (calendar-date-string date))
342 (d-file (substitute-in-file-name diary-file)))
343 (message "Preparing diary...")
344 (save-excursion
345 (let ((diary-buffer (find-buffer-visiting d-file)))
346 (if (not diary-buffer)
347 (set-buffer (find-file-noselect d-file t))
348 (set-buffer diary-buffer)
349 (or (verify-visited-file-modtime diary-buffer)
350 (revert-buffer t t))))
351 ;; d-s-p is passed to the diary display function.
352 (let ((diary-saved-point (point)))
353 (save-excursion
354 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil "")))
355 (setq selective-display t)
356 (setq selective-display-ellipses nil)
357 (if diary-header-line-flag
358 (setq header-line-format diary-header-line-format))
359 (setq old-diary-syntax-table (syntax-table))
360 (set-syntax-table diary-syntax-table)
361 (unwind-protect
362 (let ((buffer-read-only nil)
363 (diary-modified (buffer-modified-p))
364 (mark (regexp-quote diary-nonmarking-symbol)))
365 ;; First and last characters must be ^M or \n for
366 ;; selective display to work properly
367 (goto-char (1- (point-max)))
368 (if (not (looking-at "\^M\\|\n"))
369 (progn
370 (goto-char (point-max))
371 (insert "\^M")))
372 (goto-char (point-min))
373 (if (not (looking-at "\^M\\|\n"))
374 (insert "\^M"))
375 (subst-char-in-region (point-min) (point-max) ?\n ?\^M t)
376 (calendar-for-loop
377 i from 1 to number do
378 (let ((d diary-date-forms)
379 (month (extract-calendar-month date))
380 (day (extract-calendar-day date))
381 (year (extract-calendar-year date))
382 (entry-found (list-sexp-diary-entries date)))
383 (while d
384 (let*
385 ((date-form (if (equal (car (car d)) 'backup)
386 (cdr (car d))
387 (car d)))
388 (backup (equal (car (car d)) 'backup))
389 (dayname
390 (format "%s\\|%s\\.?"
391 (calendar-day-name date)
392 (calendar-day-name date 'abbrev)))
393 (monthname
394 (format "\\*\\|%s\\|%s\\.?"
395 (calendar-month-name month)
396 (calendar-month-name month 'abbrev)))
397 (month (concat "\\*\\|0*" (int-to-string month)))
398 (day (concat "\\*\\|0*" (int-to-string day)))
399 (year
400 (concat
401 "\\*\\|0*" (int-to-string year)
402 (if abbreviated-calendar-year
403 (concat "\\|" (format "%02d" (% year 100)))
404 "")))
405 (regexp
406 (concat
407 "\\(\\`\\|\^M\\|\n\\)" mark "?\\("
408 (mapconcat 'eval date-form "\\)\\(")
409 "\\)"))
410 (case-fold-search t))
411 (goto-char (point-min))
412 (while (re-search-forward regexp nil t)
413 (if backup (re-search-backward "\\<" nil t))
414 (if (and (or (char-equal (preceding-char) ?\^M)
415 (char-equal (preceding-char) ?\n))
416 (not (looking-at " \\|\^I")))
417 ;; Diary entry that consists only of date.
418 (backward-char 1)
419 ;; Found a nonempty diary entry--make it
420 ;; visible and add it to the list.
421 (setq entry-found t)
422 (let ((entry-start (point))
423 date-start temp)
424 (re-search-backward "\^M\\|\n\\|\\`")
425 (setq date-start (point))
426 (re-search-forward "\^M\\|\n" nil t 2)
427 (while (looking-at " \\|\^I")
428 (re-search-forward "\^M\\|\n" nil t))
429 (backward-char 1)
430 (subst-char-in-region date-start
431 (point) ?\^M ?\n t)
432 (setq entry (buffer-substring entry-start (point))
433 temp (diary-pull-attrs entry file-glob-attrs)
434 entry (nth 0 temp))
435 (add-to-diary-list
436 date
437 entry
438 (buffer-substring
439 (1+ date-start) (1- entry-start))
440 (copy-marker entry-start) (nth 1 temp))))))
441 (setq d (cdr d)))
442 (or entry-found
443 (not diary-list-include-blanks)
444 (setq diary-entries-list
445 (append diary-entries-list
446 (list (list date "" "" "" "")))))
447 (setq date
448 (calendar-gregorian-from-absolute
449 (1+ (calendar-absolute-from-gregorian date))))
450 (setq entry-found nil)))
451 (set-buffer-modified-p diary-modified))
452 (set-syntax-table old-diary-syntax-table))
453 (goto-char (point-min))
454 (run-hooks 'nongregorian-diary-listing-hook
455 'list-diary-entries-hook)
456 (if diary-display-hook
457 (run-hooks 'diary-display-hook)
458 (simple-diary-display))
459 (run-hooks 'diary-hook)
460 diary-entries-list))))))
461
462 (defun include-other-diary-files ()
463 "Include the diary entries from other diary files with those of diary-file.
464 This function is suitable for use in `list-diary-entries-hook';
465 it enables you to use shared diary files together with your own.
466 The files included are specified in the diaryfile by lines of this form:
467 #include \"filename\"
468 This is recursive; that is, #include directives in diary files thus included
469 are obeyed. You can change the `#include' to some other string by
470 changing the variable `diary-include-string'."
471 (goto-char (point-min))
472 (while (re-search-forward
473 (concat
474 "\\(\\`\\|\^M\\|\n\\)"
475 (regexp-quote diary-include-string)
476 " \"\\([^\"]*\\)\"")
477 nil t)
478 (let* ((diary-file (substitute-in-file-name
479 (buffer-substring-no-properties
480 (match-beginning 2) (match-end 2))))
481 (diary-list-include-blanks nil)
482 (list-diary-entries-hook 'include-other-diary-files)
483 (diary-display-hook 'ignore)
484 (diary-hook nil)
485 (d-buffer (find-buffer-visiting diary-file))
486 (diary-modified (if d-buffer
487 (save-excursion
488 (set-buffer d-buffer)
489 (buffer-modified-p)))))
490 (if (file-exists-p diary-file)
491 (if (file-readable-p diary-file)
492 (unwind-protect
493 (setq diary-entries-list
494 (append diary-entries-list
495 (list-diary-entries original-date number)))
496 (save-excursion
497 (set-buffer (find-buffer-visiting diary-file))
498 (let ((inhibit-read-only t))
499 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t))
500 (setq selective-display nil)
501 (set-buffer-modified-p diary-modified)))
502 (beep)
503 (message "Can't read included diary file %s" diary-file)
504 (sleep-for 2))
505 (beep)
506 (message "Can't find included diary file %s" diary-file)
507 (sleep-for 2))))
508 (goto-char (point-min)))
509
510 (defun simple-diary-display ()
511 "Display the diary buffer if there are any relevant entries or holidays."
512 (let* ((holiday-list (if holidays-in-diary-buffer
513 (check-calendar-holidays original-date)))
514 (hol-string (format "%s%s%s"
515 date-string
516 (if holiday-list ": " "")
517 (mapconcat 'identity holiday-list "; ")))
518 (msg (format "No diary entries for %s" hol-string))
519 ;; If selected window is dedicated (to the calendar),
520 ;; need a new one to display the diary.
521 (pop-up-frames (window-dedicated-p (selected-window))))
522 (calendar-set-mode-line (format "Diary for %s" hol-string))
523 (if (or (not diary-entries-list)
524 (and (not (cdr diary-entries-list))
525 (string-equal (car (cdr (car diary-entries-list))) "")))
526 (if (< (length msg) (frame-width))
527 (message "%s" msg)
528 (set-buffer (get-buffer-create holiday-buffer))
529 (setq buffer-read-only nil)
530 (calendar-set-mode-line date-string)
531 (erase-buffer)
532 (insert (mapconcat 'identity holiday-list "\n"))
533 (goto-char (point-min))
534 (set-buffer-modified-p nil)
535 (setq buffer-read-only t)
536 (display-buffer holiday-buffer)
537 (message "No diary entries for %s" date-string))
538 (with-current-buffer
539 (find-buffer-visiting (substitute-in-file-name diary-file))
540 (let ((window (display-buffer (current-buffer))))
541 ;; d-s-p is passed from list-diary-entries.
542 (set-window-point window diary-saved-point)
543 (set-window-start window (point-min))))
544 (message "Preparing diary...done"))))
545
546 (defface diary-button-face '((((type pc) (class color))
547 (:foreground "lightblue")))
548 "Default face used for buttons."
549 :version "22.1"
550 :group 'diary)
551
552 (define-button-type 'diary-entry
553 'action #'diary-goto-entry
554 'face #'diary-button-face)
555
556 (defun diary-goto-entry (button)
557 (let ((marker (button-get button 'marker)))
558 (when marker
559 (pop-to-buffer (marker-buffer marker))
560 (goto-char (marker-position marker)))))
561
562 (defun fancy-diary-display ()
563 "Prepare a diary buffer with relevant entries in a fancy, noneditable form.
564 This function is provided for optional use as the `diary-display-hook'."
565 (save-excursion;; Turn off selective-display in the diary file's buffer.
566 (set-buffer (find-buffer-visiting (substitute-in-file-name diary-file)))
567 (let ((diary-modified (buffer-modified-p)))
568 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
569 (setq selective-display nil)
570 (kill-local-variable 'mode-line-format)
571 (set-buffer-modified-p diary-modified)))
572 (if (or (not diary-entries-list)
573 (and (not (cdr diary-entries-list))
574 (string-equal (car (cdr (car diary-entries-list))) "")))
575 (let* ((holiday-list (if holidays-in-diary-buffer
576 (check-calendar-holidays original-date)))
577 (msg (format "No diary entries for %s %s"
578 (concat date-string (if holiday-list ":" ""))
579 (mapconcat 'identity holiday-list "; "))))
580 (if (<= (length msg) (frame-width))
581 (message "%s" msg)
582 (set-buffer (get-buffer-create holiday-buffer))
583 (setq buffer-read-only nil)
584 (erase-buffer)
585 (insert (mapconcat 'identity holiday-list "\n"))
586 (goto-char (point-min))
587 (set-buffer-modified-p nil)
588 (setq buffer-read-only t)
589 (display-buffer holiday-buffer)
590 (message "No diary entries for %s" date-string)))
591 (save-excursion;; Prepare the fancy diary buffer.
592 (set-buffer (make-fancy-diary-buffer))
593 (setq buffer-read-only nil)
594 (let ((entry-list diary-entries-list)
595 (holiday-list)
596 (holiday-list-last-month 1)
597 (holiday-list-last-year 1)
598 (date (list 0 0 0)))
599 (while entry-list
600 (if (not (calendar-date-equal date (car (car entry-list))))
601 (progn
602 (setq date (car (car entry-list)))
603 (and holidays-in-diary-buffer
604 (calendar-date-compare
605 (list (list holiday-list-last-month
606 (calendar-last-day-of-month
607 holiday-list-last-month
608 holiday-list-last-year)
609 holiday-list-last-year))
610 (list date))
611 ;; We need to get the holidays for the next 3 months.
612 (setq holiday-list-last-month
613 (extract-calendar-month date))
614 (setq holiday-list-last-year
615 (extract-calendar-year date))
616 (progn
617 (increment-calendar-month
618 holiday-list-last-month holiday-list-last-year 1)
619 t)
620 (setq holiday-list
621 (let ((displayed-month holiday-list-last-month)
622 (displayed-year holiday-list-last-year))
623 (calendar-holiday-list)))
624 (increment-calendar-month
625 holiday-list-last-month holiday-list-last-year 1))
626 (let* ((date-string (calendar-date-string date))
627 (date-holiday-list
628 (let ((h holiday-list)
629 (d))
630 ;; Make a list of all holidays for date.
631 (while h
632 (if (calendar-date-equal date (car (car h)))
633 (setq d (append d (cdr (car h)))))
634 (setq h (cdr h)))
635 d)))
636 (insert (if (= (point) (point-min)) "" ?\n) date-string)
637 (if date-holiday-list (insert ": "))
638 (let* ((l (current-column))
639 (longest 0))
640 (insert (mapconcat (lambda (x)
641 (if (< longest (length x))
642 (setq longest (length x)))
643 x)
644 date-holiday-list
645 (concat "\n" (make-string l ? ))))
646 (insert ?\n (make-string (+ l longest) ?=) ?\n)))))
647
648 (setq entry (car (cdr (car entry-list))))
649 (if (< 0 (length entry))
650 (progn
651 (if (nth 3 (car entry-list))
652 (insert-button (concat entry "\n")
653 'marker (nth 3 (car entry-list))
654 :type 'diary-entry)
655 (insert entry ?\n))
656 (save-excursion
657 (let* ((marks (nth 4 (car entry-list)))
658 (temp-face (make-symbol
659 (apply
660 'concat "temp-face-"
661 (mapcar '(lambda (sym)
662 (if (stringp sym)
663 sym
664 (symbol-name sym)))
665 marks))))
666 (faceinfo marks))
667 (make-face temp-face)
668 ;; Remove :face info from the marks,
669 ;; copy the face info into temp-face
670 (while (setq faceinfo (memq :face faceinfo))
671 (copy-face (read (nth 1 faceinfo)) temp-face)
672 (setcar faceinfo nil)
673 (setcar (cdr faceinfo) nil))
674 (setq marks (delq nil marks))
675 ;; Apply the font aspects
676 (apply 'set-face-attribute temp-face nil marks)
677 (search-backward entry)
678 (overlay-put
679 (make-overlay (match-beginning 0) (match-end 0))
680 'face temp-face)))))
681 (setq entry-list (cdr entry-list))))
682 (set-buffer-modified-p nil)
683 (goto-char (point-min))
684 (setq buffer-read-only t)
685 (display-buffer fancy-diary-buffer)
686 (fancy-diary-display-mode)
687 (calendar-set-mode-line date-string)
688 (message "Preparing diary...done"))))
689
690 (defun make-fancy-diary-buffer ()
691 "Create and return the initial fancy diary buffer."
692 (save-excursion
693 (set-buffer (get-buffer-create fancy-diary-buffer))
694 (setq buffer-read-only nil)
695 (calendar-set-mode-line "Diary Entries")
696 (erase-buffer)
697 (set-buffer-modified-p nil)
698 (setq buffer-read-only t)
699 (get-buffer fancy-diary-buffer)))
700
701 (defun print-diary-entries ()
702 "Print a hard copy of the diary display.
703
704 If the simple diary display is being used, prepare a temp buffer with the
705 visible lines of the diary buffer, add a heading line composed from the mode
706 line, print the temp buffer, and destroy it.
707
708 If the fancy diary display is being used, just print the buffer.
709
710 The hooks given by the variable `print-diary-entries-hook' are called to do
711 the actual printing."
712 (interactive)
713 (if (bufferp (get-buffer fancy-diary-buffer))
714 (save-excursion
715 (set-buffer (get-buffer fancy-diary-buffer))
716 (run-hooks 'print-diary-entries-hook))
717 (let ((diary-buffer
718 (find-buffer-visiting (substitute-in-file-name diary-file))))
719 (if diary-buffer
720 (let ((temp-buffer (get-buffer-create "*Printable Diary Entries*"))
721 (heading))
722 (save-excursion
723 (set-buffer diary-buffer)
724 (setq heading
725 (if (not (stringp mode-line-format))
726 "All Diary Entries"
727 (string-match "^-*\\([^-].*[^-]\\)-*$" mode-line-format)
728 (substring mode-line-format
729 (match-beginning 1) (match-end 1))))
730 (copy-to-buffer temp-buffer (point-min) (point-max))
731 (set-buffer temp-buffer)
732 (while (re-search-forward "\^M.*$" nil t)
733 (replace-match ""))
734 (goto-char (point-min))
735 (insert heading "\n"
736 (make-string (length heading) ?=) "\n")
737 (run-hooks 'print-diary-entries-hook)
738 (kill-buffer temp-buffer)))
739 (error "You don't have a diary buffer!")))))
740
741 (defun show-all-diary-entries ()
742 "Show all of the diary entries in the diary file.
743 This function gets rid of the selective display of the diary file so that
744 all entries, not just some, are visible. If there is no diary buffer, one
745 is created."
746 (interactive)
747 (let ((d-file (diary-check-diary-file))
748 (pop-up-frames (window-dedicated-p (selected-window))))
749 (save-excursion
750 (set-buffer (or (find-buffer-visiting d-file)
751 (find-file-noselect d-file t)))
752 (let ((buffer-read-only nil)
753 (diary-modified (buffer-modified-p)))
754 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
755 (setq selective-display nil
756 mode-line-format default-mode-line-format)
757 (display-buffer (current-buffer))
758 (set-buffer-modified-p diary-modified)))))
759
760 (defcustom diary-mail-addr
761 (if (boundp 'user-mail-address) user-mail-address "")
762 "*Email address that `diary-mail-entries' will send email to."
763 :group 'diary
764 :type 'string
765 :version "20.3")
766
767 (defcustom diary-mail-days 7
768 "*Default number of days for `diary-mail-entries' to check."
769 :group 'diary
770 :type 'integer
771 :version "20.3")
772
773 ;;;###autoload
774 (defun diary-mail-entries (&optional ndays)
775 "Send a mail message showing diary entries for next NDAYS days.
776 If no prefix argument is given, NDAYS is set to `diary-mail-days'.
777 Mail is sent to the address specified by `diary-mail-addr'.
778
779 You can call `diary-mail-entries' every night using an at/cron job.
780 For example, this script will run the program at 2am daily. Since
781 `emacs -batch' does not load your `.emacs' file, you must ensure that
782 all relevant variables are set, as done here.
783
784 #!/bin/sh
785 # diary-rem.sh -- repeatedly run the Emacs diary-reminder
786 emacs -batch \\
787 -eval \"(setq diary-mail-days 3 \\
788 diary-file \\\"/path/to/diary.file\\\" \\
789 european-calendar-style t \\
790 diary-mail-addr \\\"user@host.name\\\" )\" \\
791 -l diary-lib -f diary-mail-entries
792 at -f diary-rem.sh 0200 tomorrow
793
794 You may have to tweak the syntax of the `at' command to suit your
795 system. Alternatively, you can specify a cron entry:
796 0 1 * * * diary-rem.sh
797 to run it every morning at 1am."
798 (interactive "P")
799 (if (string-equal diary-mail-addr "")
800 (error "You must set `diary-mail-addr' to use this command")
801 (let ((diary-display-hook 'fancy-diary-display))
802 (list-diary-entries (calendar-current-date) (or ndays diary-mail-days)))
803 (compose-mail diary-mail-addr
804 (concat "Diary entries generated "
805 (calendar-date-string (calendar-current-date))))
806 (insert
807 (if (get-buffer fancy-diary-buffer)
808 (save-excursion
809 (set-buffer fancy-diary-buffer)
810 (buffer-substring (point-min) (point-max)))
811 "No entries found"))
812 (call-interactively (get mail-user-agent 'sendfunc))))
813
814 (defun diary-name-pattern (string-array &optional abbrev-array paren)
815 "Return a regexp matching the strings in the array STRING-ARRAY.
816 If the optional argument ABBREV-ARRAY is present, then the function
817 `calendar-abbrev-construct' is used to construct abbreviations from the
818 two supplied arrays. The returned regexp will then also match these
819 abbreviations, with or without final `.' characters. If the optional
820 argument PAREN is non-nil, the regexp is surrounded by parentheses."
821 (regexp-opt (append string-array
822 (if abbrev-array
823 (calendar-abbrev-construct abbrev-array
824 string-array))
825 (if abbrev-array
826 (calendar-abbrev-construct abbrev-array
827 string-array
828 'period))
829 nil)
830 paren))
831
832 (defvar marking-diary-entries nil
833 "True during the marking of diary entries, nil otherwise.")
834
835 (defvar marking-diary-entry nil
836 "True during the marking of diary entries, if current entry is marking.")
837
838 (defun mark-diary-entries ()
839 "Mark days in the calendar window that have diary entries.
840 Each entry in the diary file visible in the calendar window is marked.
841 After the entries are marked, the hooks `nongregorian-diary-marking-hook' and
842 `mark-diary-entries-hook' are run."
843 (interactive)
844 ;; To remove any deleted diary entries.
845 (when (and mark-diary-entries-in-calendar
846 ;; Avoid redrawing when called recursively, eg through
847 ;; mark-diary-entries-hook for #include's, else only get
848 ;; the last set of diary marks.
849 (not marking-diary-entries)
850 ;; If called from redraw-calendar, the calendar has been
851 ;; erased, so no need to unmark the diary entries.
852 (not calendar-redrawing))
853 (setq mark-diary-entries-in-calendar nil)
854 (redraw-calendar))
855 (let ((marking-diary-entries t)
856 file-glob-attrs marks)
857 (save-excursion
858 (set-buffer (find-file-noselect (diary-check-diary-file) t))
859 (setq mark-diary-entries-in-calendar t)
860 (message "Marking diary entries...")
861 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
862 (let ((d diary-date-forms)
863 (old-diary-syntax-table (syntax-table))
864 temp)
865 (set-syntax-table diary-syntax-table)
866 (while d
867 (let* ((date-form (if (equal (car (car d)) 'backup)
868 (cdr (car d))
869 (car d)));; ignore 'backup directive
870 (dayname
871 (diary-name-pattern calendar-day-name-array
872 calendar-day-abbrev-array))
873 (monthname
874 (format "%s\\|\\*"
875 (diary-name-pattern calendar-month-name-array
876 calendar-month-abbrev-array)))
877 (month "[0-9]+\\|\\*")
878 (day "[0-9]+\\|\\*")
879 (year "[0-9]+\\|\\*")
880 (l (length date-form))
881 (d-name-pos (- l (length (memq 'dayname date-form))))
882 (d-name-pos (if (/= l d-name-pos) (+ 2 d-name-pos)))
883 (m-name-pos (- l (length (memq 'monthname date-form))))
884 (m-name-pos (if (/= l m-name-pos) (+ 2 m-name-pos)))
885 (d-pos (- l (length (memq 'day date-form))))
886 (d-pos (if (/= l d-pos) (+ 2 d-pos)))
887 (m-pos (- l (length (memq 'month date-form))))
888 (m-pos (if (/= l m-pos) (+ 2 m-pos)))
889 (y-pos (- l (length (memq 'year date-form))))
890 (y-pos (if (/= l y-pos) (+ 2 y-pos)))
891 (regexp
892 (concat
893 "\\(\\`\\|\^M\\|\n\\)\\("
894 (mapconcat 'eval date-form "\\)\\(")
895 "\\)"))
896 (case-fold-search t))
897 (goto-char (point-min))
898 (while (re-search-forward regexp nil t)
899 (let* ((dd-name
900 (if d-name-pos
901 (buffer-substring-no-properties
902 (match-beginning d-name-pos)
903 (match-end d-name-pos))))
904 (mm-name
905 (if m-name-pos
906 (buffer-substring-no-properties
907 (match-beginning m-name-pos)
908 (match-end m-name-pos))))
909 (mm (string-to-int
910 (if m-pos
911 (buffer-substring-no-properties
912 (match-beginning m-pos)
913 (match-end m-pos))
914 "")))
915 (dd (string-to-int
916 (if d-pos
917 (buffer-substring-no-properties
918 (match-beginning d-pos)
919 (match-end d-pos))
920 "")))
921 (y-str (if y-pos
922 (buffer-substring-no-properties
923 (match-beginning y-pos)
924 (match-end y-pos))))
925 (yy (if (not y-str)
926 0
927 (if (and (= (length y-str) 2)
928 abbreviated-calendar-year)
929 (let* ((current-y
930 (extract-calendar-year
931 (calendar-current-date)))
932 (y (+ (string-to-int y-str)
933 (* 100
934 (/ current-y 100)))))
935 (if (> (- y current-y) 50)
936 (- y 100)
937 (if (> (- current-y y) 50)
938 (+ y 100)
939 y)))
940 (string-to-int y-str))))
941 (save-excursion
942 (setq entry (buffer-substring-no-properties
943 (point) (line-end-position))
944 temp (diary-pull-attrs entry file-glob-attrs)
945 entry (nth 0 temp)
946 marks (nth 1 temp))))
947 (if dd-name
948 (mark-calendar-days-named
949 (cdr (assoc-string
950 dd-name
951 (calendar-make-alist
952 calendar-day-name-array
953 0 nil calendar-day-abbrev-array) t)) marks)
954 (if mm-name
955 (setq mm
956 (if (string-equal mm-name "*") 0
957 (cdr (assoc-string
958 mm-name
959 (calendar-make-alist
960 calendar-month-name-array
961 1 nil calendar-month-abbrev-array) t)))))
962 (mark-calendar-date-pattern mm dd yy marks))))
963 (setq d (cdr d))))
964 (mark-sexp-diary-entries)
965 (run-hooks 'nongregorian-diary-marking-hook
966 'mark-diary-entries-hook)
967 (set-syntax-table old-diary-syntax-table)
968 (message "Marking diary entries...done")))))
969
970 (defun mark-sexp-diary-entries ()
971 "Mark days in the calendar window that have sexp diary entries.
972 Each entry in the diary file (or included files) visible in the calendar window
973 is marked. See the documentation for the function `list-sexp-diary-entries'."
974 (let* ((sexp-mark (regexp-quote sexp-diary-entry-symbol))
975 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)\\("
976 sexp-mark "(\\)\\|\\("
977 (regexp-quote diary-nonmarking-symbol)
978 sexp-mark "(diary-remind\\)"))
979 (file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
980 m y first-date last-date mark file-glob-attrs)
981 (save-excursion
982 (set-buffer calendar-buffer)
983 (setq m displayed-month)
984 (setq y displayed-year))
985 (increment-calendar-month m y -1)
986 (setq first-date
987 (calendar-absolute-from-gregorian (list m 1 y)))
988 (increment-calendar-month m y 2)
989 (setq last-date
990 (calendar-absolute-from-gregorian
991 (list m (calendar-last-day-of-month m y) y)))
992 (goto-char (point-min))
993 (while (re-search-forward s-entry nil t)
994 (setq marking-diary-entry (char-equal (preceding-char) ?\())
995 (re-search-backward "(")
996 (let ((sexp-start (point))
997 sexp entry entry-start line-start marks)
998 (forward-sexp)
999 (setq sexp (buffer-substring-no-properties sexp-start (point)))
1000 (save-excursion
1001 (re-search-backward "\^M\\|\n\\|\\`")
1002 (setq line-start (point)))
1003 (forward-char 1)
1004 (if (and (or (char-equal (preceding-char) ?\^M)
1005 (char-equal (preceding-char) ?\n))
1006 (not (looking-at " \\|\^I")))
1007 (progn;; Diary entry consists only of the sexp
1008 (backward-char 1)
1009 (setq entry ""))
1010 (setq entry-start (point))
1011 ;; Find end of entry
1012 (re-search-forward "\^M\\|\n" nil t)
1013 (while (looking-at " \\|\^I")
1014 (or (re-search-forward "\^M\\|\n" nil t)
1015 (re-search-forward "$" nil t)))
1016 (if (or (char-equal (preceding-char) ?\^M)
1017 (char-equal (preceding-char) ?\n))
1018 (backward-char 1))
1019 (setq entry (buffer-substring-no-properties entry-start (point)))
1020 (while (string-match "[\^M]" entry)
1021 (aset entry (match-beginning 0) ?\n )))
1022 (calendar-for-loop date from first-date to last-date do
1023 (if (setq mark (diary-sexp-entry sexp entry
1024 (calendar-gregorian-from-absolute date)))
1025 (progn
1026 (setq marks (diary-pull-attrs entry file-glob-attrs)
1027 marks (nth 1 (diary-pull-attrs entry file-glob-attrs)))
1028 (mark-visible-calendar-date
1029 (calendar-gregorian-from-absolute date)
1030 (if (< 0 (length marks))
1031 marks
1032 (if (consp mark)
1033 (car mark)))))))))))
1034
1035 (defun mark-included-diary-files ()
1036 "Mark the diary entries from other diary files with those of the diary file.
1037 This function is suitable for use as the `mark-diary-entries-hook'; it enables
1038 you to use shared diary files together with your own. The files included are
1039 specified in the diary-file by lines of this form:
1040 #include \"filename\"
1041 This is recursive; that is, #include directives in diary files thus included
1042 are obeyed. You can change the `#include' to some other string by
1043 changing the variable `diary-include-string'."
1044 (goto-char (point-min))
1045 (while (re-search-forward
1046 (concat
1047 "\\(\\`\\|\^M\\|\n\\)"
1048 (regexp-quote diary-include-string)
1049 " \"\\([^\"]*\\)\"")
1050 nil t)
1051 (let ((diary-file (substitute-in-file-name
1052 (buffer-substring-no-properties
1053 (match-beginning 2) (match-end 2))))
1054 (mark-diary-entries-hook 'mark-included-diary-files))
1055 (if (file-exists-p diary-file)
1056 (if (file-readable-p diary-file)
1057 (progn
1058 (mark-diary-entries)
1059 (kill-buffer (find-buffer-visiting diary-file)))
1060 (beep)
1061 (message "Can't read included diary file %s" diary-file)
1062 (sleep-for 2))
1063 (beep)
1064 (message "Can't find included diary file %s" diary-file)
1065 (sleep-for 2))))
1066 (goto-char (point-min)))
1067
1068 (defun mark-calendar-days-named (dayname &optional color)
1069 "Mark all dates in the calendar window that are day DAYNAME of the week.
1070 0 means all Sundays, 1 means all Mondays, and so on."
1071 (save-excursion
1072 (set-buffer calendar-buffer)
1073 (let ((prev-month displayed-month)
1074 (prev-year displayed-year)
1075 (succ-month displayed-month)
1076 (succ-year displayed-year)
1077 (last-day)
1078 (day))
1079 (increment-calendar-month succ-month succ-year 1)
1080 (increment-calendar-month prev-month prev-year -1)
1081 (setq day (calendar-absolute-from-gregorian
1082 (calendar-nth-named-day 1 dayname prev-month prev-year)))
1083 (setq last-day (calendar-absolute-from-gregorian
1084 (calendar-nth-named-day -1 dayname succ-month succ-year)))
1085 (while (<= day last-day)
1086 (mark-visible-calendar-date (calendar-gregorian-from-absolute day) color)
1087 (setq day (+ day 7))))))
1088
1089 (defun mark-calendar-date-pattern (month day year &optional color)
1090 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR.
1091 A value of 0 in any position is a wildcard."
1092 (save-excursion
1093 (set-buffer calendar-buffer)
1094 (let ((m displayed-month)
1095 (y displayed-year))
1096 (increment-calendar-month m y -1)
1097 (calendar-for-loop i from 0 to 2 do
1098 (mark-calendar-month m y month day year color)
1099 (increment-calendar-month m y 1)))))
1100
1101 (defun mark-calendar-month (month year p-month p-day p-year &optional color)
1102 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P_DAY/P-YEAR.
1103 A value of 0 in any position of the pattern is a wildcard."
1104 (if (or (and (= month p-month)
1105 (or (= p-year 0) (= year p-year)))
1106 (and (= p-month 0)
1107 (or (= p-year 0) (= year p-year))))
1108 (if (= p-day 0)
1109 (calendar-for-loop
1110 i from 1 to (calendar-last-day-of-month month year) do
1111 (mark-visible-calendar-date (list month i year) color))
1112 (mark-visible-calendar-date (list month p-day year) color))))
1113
1114 (defun sort-diary-entries ()
1115 "Sort the list of diary entries by time of day."
1116 (setq diary-entries-list (sort diary-entries-list 'diary-entry-compare)))
1117
1118 (defun diary-entry-compare (e1 e2)
1119 "Returns t if E1 is earlier than E2."
1120 (or (calendar-date-compare e1 e2)
1121 (and (calendar-date-equal (car e1) (car e2))
1122 (let* ((ts1 (cadr e1)) (t1 (diary-entry-time ts1))
1123 (ts2 (cadr e2)) (t2 (diary-entry-time ts2)))
1124 (or (< t1 t2)
1125 (and (= t1 t2)
1126 (string-lessp ts1 ts2)))))))
1127
1128 (defcustom diary-unknown-time
1129 -9999
1130 "*Value returned by diary-entry-time when no time is found.
1131 The default value -9999 causes entries with no recognizable time to be placed
1132 before those with times; 9999 would place entries with no recognizable time
1133 after those with times."
1134 :type 'integer
1135 :group 'diary
1136 :version "20.3")
1137
1138 (defun diary-entry-time (s)
1139 "Return time at the beginning of the string S as a military-style integer.
1140 For example, returns 1325 for 1:25pm.
1141
1142 Returns `diary-unknown-time' (default value -9999) if no time is recognized.
1143 The recognized forms are XXXX, X:XX, or XX:XX (military time), and XXam,
1144 XXAM, XXpm, XXPM, XX:XXam, XX:XXAM XX:XXpm, or XX:XXPM. A period (.) can
1145 be used instead of a colon (:) to separate the hour and minute parts."
1146 (let ((case-fold-search nil))
1147 (cond ((string-match ; Military time
1148 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)[:.]?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)"
1149 s)
1150 (+ (* 100 (string-to-int
1151 (substring s (match-beginning 1) (match-end 1))))
1152 (string-to-int (substring s (match-beginning 2) (match-end 2)))))
1153 ((string-match ; Hour only XXam or XXpm
1154 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s)
1155 (+ (* 100 (% (string-to-int
1156 (substring s (match-beginning 1) (match-end 1)))
1157 12))
1158 (if (equal ?a (downcase (aref s (match-beginning 2))))
1159 0 1200)))
1160 ((string-match ; Hour and minute XX:XXam or XX:XXpm
1161 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)[:.]\\([0-9][0-9]\\)\\([ap]\\)m\\>" s)
1162 (+ (* 100 (% (string-to-int
1163 (substring s (match-beginning 1) (match-end 1)))
1164 12))
1165 (string-to-int (substring s (match-beginning 2) (match-end 2)))
1166 (if (equal ?a (downcase (aref s (match-beginning 3))))
1167 0 1200)))
1168 (t diary-unknown-time)))) ; Unrecognizable
1169
1170 ;; Unrecognizable
1171
1172 (defun list-sexp-diary-entries (date)
1173 "Add sexp entries for DATE from the diary file to `diary-entries-list'.
1174 Also, Make them visible in the diary file. Returns t if any entries were
1175 found.
1176
1177 Sexp diary entries must be prefaced by a `sexp-diary-entry-symbol' (normally
1178 `%%'). The form of a sexp diary entry is
1179
1180 %%(SEXP) ENTRY
1181
1182 Both ENTRY and DATE are globally available when the SEXP is evaluated. If the
1183 SEXP yields the value nil, the diary entry does not apply. If it yields a
1184 non-nil value, ENTRY will be taken to apply to DATE; if the non-nil value is a
1185 string, that string will be the diary entry in the fancy diary display.
1186
1187 For example, the following diary entry will apply to the 21st of the month
1188 if it is a weekday and the Friday before if the 21st is on a weekend:
1189
1190 &%%(let ((dayname (calendar-day-of-week date))
1191 (day (extract-calendar-day date)))
1192 (or
1193 (and (= day 21) (memq dayname '(1 2 3 4 5)))
1194 (and (memq day '(19 20)) (= dayname 5)))
1195 ) UIUC pay checks deposited
1196
1197 A number of built-in functions are available for this type of diary entry:
1198
1199 %%(diary-date MONTH DAY YEAR &optional MARK) text
1200 Entry applies if date is MONTH, DAY, YEAR if
1201 `european-calendar-style' is nil, and DAY, MONTH, YEAR if
1202 `european-calendar-style' is t. DAY, MONTH, and YEAR
1203 can be lists of integers, the constant t, or an integer.
1204 The constant t means all values. An optional parameter
1205 MARK specifies a face or single-character string to use
1206 when highlighting the day in the calendar.
1207
1208 %%(diary-float MONTH DAYNAME N &optional DAY MARK) text
1209 Entry will appear on the Nth DAYNAME of MONTH.
1210 (DAYNAME=0 means Sunday, 1 means Monday, and so on;
1211 if N is negative it counts backward from the end of
1212 the month. MONTH can be a list of months, a single
1213 month, or t to specify all months. Optional DAY means
1214 Nth DAYNAME of MONTH on or after/before DAY. DAY defaults
1215 to 1 if N>0 and the last day of the month if N<0. An
1216 optional parameter MARK specifies a face or single-character
1217 string to use when highlighting the day in the calendar.
1218
1219 %%(diary-block M1 D1 Y1 M2 D2 Y2 &optional MARK) text
1220 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2,
1221 inclusive. (If `european-calendar-style' is t, the
1222 order of the parameters should be changed to D1, M1, Y1,
1223 D2, M2, Y2.) An optional parameter MARK specifies a face
1224 or single-character string to use when highlighting the
1225 day in the calendar.
1226
1227 %%(diary-anniversary MONTH DAY YEAR &optional MARK) text
1228 Entry will appear on anniversary dates of MONTH DAY, YEAR.
1229 (If `european-calendar-style' is t, the order of the
1230 parameters should be changed to DAY, MONTH, YEAR.) Text
1231 can contain %d or %d%s; %d will be replaced by the number
1232 of years since the MONTH DAY, YEAR and %s will be replaced
1233 by the ordinal ending of that number (that is, `st', `nd',
1234 `rd' or `th', as appropriate. The anniversary of February
1235 29 is considered to be March 1 in a non-leap year. An
1236 optional parameter MARK specifies a face or single-character
1237 string to use when highlighting the day in the calendar.
1238
1239 %%(diary-cyclic N MONTH DAY YEAR &optional MARK) text
1240 Entry will appear every N days, starting MONTH DAY, YEAR.
1241 (If `european-calendar-style' is t, the order of the
1242 parameters should be changed to N, DAY, MONTH, YEAR.) Text
1243 can contain %d or %d%s; %d will be replaced by the number
1244 of repetitions since the MONTH DAY, YEAR and %s will
1245 be replaced by the ordinal ending of that number (that is,
1246 `st', `nd', `rd' or `th', as appropriate. An optional
1247 parameter MARK specifies a face or single-character string
1248 to use when highlighting the day in the calendar.
1249
1250 %%(diary-remind SEXP DAYS &optional MARKING) text
1251 Entry is a reminder for diary sexp SEXP. DAYS is either a
1252 single number or a list of numbers indicating the number(s)
1253 of days before the event that the warning(s) should occur.
1254 If the current date is (one of) DAYS before the event
1255 indicated by EXPR, then a suitable message (as specified
1256 by `diary-remind-message') appears. In addition to the
1257 reminders beforehand, the diary entry also appears on
1258 the date itself. If optional MARKING is non-nil then the
1259 *reminders* are marked on the calendar. Marking of
1260 reminders is independent of whether the entry *itself* is
1261 a marking or nonmarking one.
1262
1263 %%(diary-day-of-year)
1264 Diary entries giving the day of the year and the number of
1265 days remaining in the year will be made every day. Note
1266 that since there is no text, it makes sense only if the
1267 fancy diary display is used.
1268
1269 %%(diary-iso-date)
1270 Diary entries giving the corresponding ISO commercial date
1271 will be made every day. Note that since there is no text,
1272 it makes sense only if the fancy diary display is used.
1273
1274 %%(diary-french-date)
1275 Diary entries giving the corresponding French Revolutionary
1276 date will be made every day. Note that since there is no
1277 text, it makes sense only if the fancy diary display is used.
1278
1279 %%(diary-islamic-date)
1280 Diary entries giving the corresponding Islamic date will be
1281 made every day. Note that since there is no text, it
1282 makes sense only if the fancy diary display is used.
1283
1284 %%(diary-hebrew-date)
1285 Diary entries giving the corresponding Hebrew date will be
1286 made every day. Note that since there is no text, it
1287 makes sense only if the fancy diary display is used.
1288
1289 %%(diary-astro-day-number) Diary entries giving the corresponding
1290 astronomical (Julian) day number will be made every day.
1291 Note that since there is no text, it makes sense only if the
1292 fancy diary display is used.
1293
1294 %%(diary-julian-date) Diary entries giving the corresponding
1295 Julian date will be made every day. Note that since
1296 there is no text, it makes sense only if the fancy diary
1297 display is used.
1298
1299 %%(diary-sunrise-sunset)
1300 Diary entries giving the local times of sunrise and sunset
1301 will be made every day. Note that since there is no text,
1302 it makes sense only if the fancy diary display is used.
1303 Floating point required.
1304
1305 %%(diary-phases-of-moon)
1306 Diary entries giving the times of the phases of the moon
1307 will be when appropriate. Note that since there is no text,
1308 it makes sense only if the fancy diary display is used.
1309 Floating point required.
1310
1311 %%(diary-yahrzeit MONTH DAY YEAR) text
1312 Text is assumed to be the name of the person; the date is
1313 the date of death on the *civil* calendar. The diary entry
1314 will appear on the proper Hebrew-date anniversary and on the
1315 day before. (If `european-calendar-style' is t, the order
1316 of the parameters should be changed to DAY, MONTH, YEAR.)
1317
1318 %%(diary-rosh-hodesh)
1319 Diary entries will be made on the dates of Rosh Hodesh on
1320 the Hebrew calendar. Note that since there is no text, it
1321 makes sense only if the fancy diary display is used.
1322
1323 %%(diary-parasha)
1324 Diary entries giving the weekly parasha will be made on
1325 every Saturday. Note that since there is no text, it
1326 makes sense only if the fancy diary display is used.
1327
1328 %%(diary-omer)
1329 Diary entries giving the omer count will be made every day
1330 from Passover to Shavuot. Note that since there is no text,
1331 it makes sense only if the fancy diary display is used.
1332
1333 Marking these entries is *extremely* time consuming, so these entries are
1334 best if they are nonmarking."
1335 (let ((s-entry (concat "\\(\\`\\|\^M\\|\n\\)"
1336 (regexp-quote diary-nonmarking-symbol)
1337 "?"
1338 (regexp-quote sexp-diary-entry-symbol)
1339 "("))
1340 entry-found file-glob-attrs marks)
1341 (goto-char (point-min))
1342 (save-excursion
1343 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '()))))
1344 (while (re-search-forward s-entry nil t)
1345 (backward-char 1)
1346 (let ((sexp-start (point))
1347 sexp entry specifier entry-start line-start)
1348 (forward-sexp)
1349 (setq sexp (buffer-substring-no-properties sexp-start (point)))
1350 (save-excursion
1351 (re-search-backward "\^M\\|\n\\|\\`")
1352 (setq line-start (point)))
1353 (setq specifier
1354 (buffer-substring-no-properties (1+ line-start) (point))
1355 entry-start (1+ line-start))
1356 (forward-char 1)
1357 (if (and (or (char-equal (preceding-char) ?\^M)
1358 (char-equal (preceding-char) ?\n))
1359 (not (looking-at " \\|\^I")))
1360 (progn;; Diary entry consists only of the sexp
1361 (backward-char 1)
1362 (setq entry ""))
1363 (setq entry-start (point))
1364 (re-search-forward "\^M\\|\n" nil t)
1365 (while (looking-at " \\|\^I")
1366 (re-search-forward "\^M\\|\n" nil t))
1367 (backward-char 1)
1368 (setq entry (buffer-substring-no-properties entry-start (point)))
1369 (while (string-match "[\^M]" entry)
1370 (aset entry (match-beginning 0) ?\n )))
1371 (let ((diary-entry (diary-sexp-entry sexp entry date))
1372 temp)
1373 (setq entry (if (consp diary-entry)
1374 (cdr diary-entry)
1375 diary-entry))
1376 (if diary-entry
1377 (progn
1378 (subst-char-in-region line-start (point) ?\^M ?\n t)
1379 (if (< 0 (length entry))
1380 (setq temp (diary-pull-attrs entry file-glob-attrs)
1381 entry (nth 0 temp)
1382 marks (nth 1 temp)))))
1383 (add-to-diary-list date
1384 entry
1385 specifier
1386 (if entry-start (copy-marker entry-start)
1387 nil)
1388 marks)
1389 (setq entry-found (or entry-found diary-entry)))))
1390 entry-found))
1391
1392 (defun diary-sexp-entry (sexp entry date)
1393 "Process a SEXP diary ENTRY for DATE."
1394 (let ((result (if calendar-debug-sexp
1395 (let ((stack-trace-on-error t))
1396 (eval (car (read-from-string sexp))))
1397 (condition-case nil
1398 (eval (car (read-from-string sexp)))
1399 (error
1400 (beep)
1401 (message "Bad sexp at line %d in %s: %s"
1402 (save-excursion
1403 (save-restriction
1404 (narrow-to-region 1 (point))
1405 (goto-char (point-min))
1406 (let ((lines 1))
1407 (while (re-search-forward "\n\\|\^M" nil t)
1408 (setq lines (1+ lines)))
1409 lines)))
1410 diary-file sexp)
1411 (sleep-for 2))))))
1412 (cond ((stringp result) result)
1413 ((and (consp result)
1414 (stringp (cdr result))) result)
1415 (result entry)
1416 (t nil))))
1417
1418 (defun diary-date (month day year &optional mark)
1419 "Specific date(s) diary entry.
1420 Entry applies if date is MONTH, DAY, YEAR if `european-calendar-style' is nil,
1421 and DAY, MONTH, YEAR if `european-calendar-style' is t. DAY, MONTH, and YEAR
1422 can be lists of integers, the constant t, or an integer. The constant t means
1423 all values.
1424
1425 An optional parameter MARK specifies a face or single-character string to
1426 use when highlighting the day in the calendar."
1427 (let ((dd (if european-calendar-style
1428 month
1429 day))
1430 (mm (if european-calendar-style
1431 day
1432 month))
1433 (m (extract-calendar-month date))
1434 (y (extract-calendar-year date))
1435 (d (extract-calendar-day date)))
1436 (if (and
1437 (or (and (listp dd) (memq d dd))
1438 (equal d dd)
1439 (eq dd t))
1440 (or (and (listp mm) (memq m mm))
1441 (equal m mm)
1442 (eq mm t))
1443 (or (and (listp year) (memq y year))
1444 (equal y year)
1445 (eq year t)))
1446 (cons mark entry))))
1447
1448 (defun diary-block (m1 d1 y1 m2 d2 y2 &optional mark)
1449 "Block diary entry.
1450 Entry applies if date is between, or on one of, two dates.
1451 The order of the parameters is
1452 M1, D1, Y1, M2, D2, Y2 if `european-calendar-style' is nil, and
1453 D1, M1, Y1, D2, M2, Y2 if `european-calendar-style' is t.
1454
1455 An optional parameter MARK specifies a face or single-character string to
1456 use when highlighting the day in the calendar."
1457
1458 (let ((date1 (calendar-absolute-from-gregorian
1459 (if european-calendar-style
1460 (list d1 m1 y1)
1461 (list m1 d1 y1))))
1462 (date2 (calendar-absolute-from-gregorian
1463 (if european-calendar-style
1464 (list d2 m2 y2)
1465 (list m2 d2 y2))))
1466 (d (calendar-absolute-from-gregorian date)))
1467 (if (and (<= date1 d) (<= d date2))
1468 (cons mark entry))))
1469
1470 (defun diary-float (month dayname n &optional day mark)
1471 "Floating diary entry--entry applies if date is the nth dayname of month.
1472 Parameters are MONTH, DAYNAME, N. MONTH can be a list of months, the constant
1473 t, or an integer. The constant t means all months. If N is negative, count
1474 backward from the end of the month.
1475
1476 An optional parameter DAY means the Nth DAYNAME on or after/before MONTH DAY.
1477 Optional MARK specifies a face or single-character string to use when
1478 highlighting the day in the calendar."
1479 ;; This is messy because the diary entry may apply, but the date on which it
1480 ;; is based can be in a different month/year. For example, asking for the
1481 ;; first Monday after December 30. For large values of |n| the problem is
1482 ;; more grotesque.
1483 (and (= dayname (calendar-day-of-week date))
1484 (let* ((m (extract-calendar-month date))
1485 (d (extract-calendar-day date))
1486 (y (extract-calendar-year date))
1487 (limit; last (n>0) or first (n<0) possible base date for entry
1488 (calendar-nth-named-absday (- n) dayname m y d))
1489 (last-abs (if (> n 0) limit (+ limit 6)))
1490 (first-abs (if (> n 0) (- limit 6) limit))
1491 (last (calendar-gregorian-from-absolute last-abs))
1492 (first (calendar-gregorian-from-absolute first-abs))
1493 ; m1, d1 is first possible base date
1494 (m1 (extract-calendar-month first))
1495 (d1 (extract-calendar-day first))
1496 (y1 (extract-calendar-year first))
1497 ; m2, d2 is last possible base date
1498 (m2 (extract-calendar-month last))
1499 (d2 (extract-calendar-day last))
1500 (y2 (extract-calendar-year last)))
1501 (if (or (and (= m1 m2) ; only possible base dates in one month
1502 (or (eq month t)
1503 (if (listp month)
1504 (memq m1 month)
1505 (= m1 month)))
1506 (let ((d (or day (if (> n 0)
1507 1
1508 (calendar-last-day-of-month m1 y1)))))
1509 (and (<= d1 d) (<= d d2))))
1510 ;; only possible base dates straddle two months
1511 (and (or (< y1 y2)
1512 (and (= y1 y2) (< m1 m2)))
1513 (or
1514 ;; m1, d1 works as a base date
1515 (and
1516 (or (eq month t)
1517 (if (listp month)
1518 (memq m1 month)
1519 (= m1 month)))
1520 (<= d1 (or day (if (> n 0)
1521 1
1522 (calendar-last-day-of-month m1 y1)))))
1523 ;; m2, d2 works as a base date
1524 (and (or (eq month t)
1525 (if (listp month)
1526 (memq m2 month)
1527 (= m2 month)))
1528 (<= (or day (if (> n 0)
1529 1
1530 (calendar-last-day-of-month m2 y2)))
1531 d2)))))
1532 (cons mark entry)))))
1533
1534
1535 (defun diary-anniversary (month day year &optional mark)
1536 "Anniversary diary entry.
1537 Entry applies if date is the anniversary of MONTH, DAY, YEAR if
1538 `european-calendar-style' is nil, and DAY, MONTH, YEAR if
1539 `european-calendar-style' is t. Diary entry can contain `%d' or `%d%s'; the
1540 %d will be replaced by the number of years since the MONTH DAY, YEAR and the
1541 %s will be replaced by the ordinal ending of that number (that is, `st', `nd',
1542 `rd' or `th', as appropriate. The anniversary of February 29 is considered
1543 to be March 1 in non-leap years.
1544
1545 An optional parameter MARK specifies a face or single-character string to
1546 use when highlighting the day in the calendar."
1547 (let* ((d (if european-calendar-style
1548 month
1549 day))
1550 (m (if european-calendar-style
1551 day
1552 month))
1553 (y (extract-calendar-year date))
1554 (diff (- y year)))
1555 (if (and (= m 2) (= d 29) (not (calendar-leap-year-p y)))
1556 (setq m 3
1557 d 1))
1558 (if (and (> diff 0) (calendar-date-equal (list m d y) date))
1559 (cons mark (format entry diff (diary-ordinal-suffix diff))))))
1560
1561 (defun diary-cyclic (n month day year &optional mark)
1562 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR.
1563 If `european-calendar-style' is t, parameters are N, DAY, MONTH, YEAR.
1564 ENTRY can contain `%d' or `%d%s'; the %d will be replaced by the number of
1565 repetitions since the MONTH DAY, YEAR and %s will be replaced by the
1566 ordinal ending of that number (that is, `st', `nd', `rd' or `th', as
1567 appropriate.
1568
1569 An optional parameter MARK specifies a face or single-character string to
1570 use when highlighting the day in the calendar."
1571 (let* ((d (if european-calendar-style
1572 month
1573 day))
1574 (m (if european-calendar-style
1575 day
1576 month))
1577 (diff (- (calendar-absolute-from-gregorian date)
1578 (calendar-absolute-from-gregorian
1579 (list m d year))))
1580 (cycle (/ diff n)))
1581 (if (and (>= diff 0) (zerop (% diff n)))
1582 (cons mark (format entry cycle (diary-ordinal-suffix cycle))))))
1583
1584 (defun diary-ordinal-suffix (n)
1585 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)"
1586 (if (or (memq (% n 100) '(11 12 13))
1587 (< 3 (% n 10)))
1588 "th"
1589 (aref ["th" "st" "nd" "rd"] (% n 10))))
1590
1591 (defun diary-day-of-year ()
1592 "Day of year and number of days remaining in the year of date diary entry."
1593 (calendar-day-of-year-string date))
1594
1595 (defcustom diary-remind-message
1596 '("Reminder: Only "
1597 (if (= 0 (% days 7))
1598 (concat (int-to-string (/ days 7)) (if (= 7 days) " week" " weeks"))
1599 (concat (int-to-string days) (if (= 1 days) " day" " days")))
1600 " until "
1601 diary-entry)
1602 "*Pseudo-pattern giving form of reminder messages in the fancy diary
1603 display.
1604
1605 Used by the function `diary-remind', a pseudo-pattern is a list of
1606 expressions that can involve the keywords `days' (a number), `date' (a list of
1607 month, day, year), and `diary-entry' (a string)."
1608 :type 'sexp
1609 :group 'diary)
1610
1611 (defun diary-remind (sexp days &optional marking)
1612 "Provide a reminder of a diary entry.
1613 SEXP is a diary-sexp. DAYS is either a single number or a list of numbers
1614 indicating the number(s) of days before the event that the warning(s) should
1615 occur on. If the current date is (one of) DAYS before the event indicated by
1616 SEXP, then a suitable message (as specified by `diary-remind-message' is
1617 returned.
1618
1619 In addition to the reminders beforehand, the diary entry also appears on the
1620 date itself.
1621
1622 A `diary-nonmarking-symbol' at the beginning of the line of the diary-remind
1623 entry specifies that the diary entry (not the reminder) is non-marking.
1624 Marking of reminders is independent of whether the entry itself is a marking
1625 or nonmarking; if optional parameter MARKING is non-nil then the reminders are
1626 marked on the calendar."
1627 (let ((diary-entry (eval sexp)))
1628 (cond
1629 ;; Diary entry applies on date
1630 ((and diary-entry
1631 (or (not marking-diary-entries) marking-diary-entry))
1632 diary-entry)
1633 ;; Diary entry may apply to `days' before date
1634 ((and (integerp days)
1635 (not diary-entry); Diary entry does not apply to date
1636 (or (not marking-diary-entries) marking))
1637 (let ((date (calendar-gregorian-from-absolute
1638 (+ (calendar-absolute-from-gregorian date) days))))
1639 (when (setq diary-entry (eval sexp)) ; re-evaluate with adjusted date
1640 ;; Discard any mark portion from diary-anniversary, etc.
1641 (if (consp diary-entry) (setq diary-entry (cdr diary-entry)))
1642 (mapconcat 'eval diary-remind-message ""))))
1643 ;; Diary entry may apply to one of a list of days before date
1644 ((and (listp days) days)
1645 (or (diary-remind sexp (car days) marking)
1646 (diary-remind sexp (cdr days) marking))))))
1647
1648 (defun add-to-diary-list (date string specifier marker &optional globcolor)
1649 "Add the entry (DATE STRING SPECIFIER MARKER GLOBCOLOR) to `diary-entries-list'.
1650 Do nothing if DATE or STRING is nil."
1651 (when (and date string)
1652 (if diary-file-name-prefix
1653 (let ((prefix (funcall diary-file-name-prefix-function
1654 (buffer-file-name))))
1655 (or (string= prefix "")
1656 (setq string (format "[%s] %s" prefix string)))))
1657 (setq diary-entries-list
1658 (append diary-entries-list
1659 (list (list date string specifier marker globcolor))))))
1660
1661 (defun diary-redraw-calendar ()
1662 "If `calendar-buffer' is live and diary entries are marked, redraw it."
1663 (and mark-diary-entries-in-calendar
1664 (redraw-calendar))
1665 ;; Return value suitable for `write-contents-functions'.
1666 nil)
1667
1668 (defun make-diary-entry (string &optional nonmarking file)
1669 "Insert a diary entry STRING which may be NONMARKING in FILE.
1670 If omitted, NONMARKING defaults to nil and FILE defaults to
1671 `diary-file'. Adds `diary-redraw-calendar' to
1672 `write-contents-functions' for FILE, so that the calendar will be
1673 redrawn with the new entry marked, if necessary."
1674 (let ((pop-up-frames (window-dedicated-p (selected-window))))
1675 (find-file-other-window (substitute-in-file-name (or file diary-file))))
1676 (add-hook 'write-contents-functions 'diary-redraw-calendar nil t)
1677 (when selective-display
1678 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
1679 (setq selective-display nil)
1680 (kill-local-variable 'mode-line-format))
1681 (widen)
1682 (goto-char (point-max))
1683 (when (let ((case-fold-search t))
1684 (search-backward "Local Variables:"
1685 (max (- (point-max) 3000) (point-min))
1686 t))
1687 (beginning-of-line)
1688 (insert "\n")
1689 (previous-line 1))
1690 (insert
1691 (if (bolp) "" "\n")
1692 (if nonmarking diary-nonmarking-symbol "")
1693 string " "))
1694
1695 (defun insert-diary-entry (arg)
1696 "Insert a diary entry for the date indicated by point.
1697 Prefix arg will make the entry nonmarking."
1698 (interactive "P")
1699 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t t)
1700 arg))
1701
1702 (defun insert-weekly-diary-entry (arg)
1703 "Insert a weekly diary entry for the day of the week indicated by point.
1704 Prefix arg will make the entry nonmarking."
1705 (interactive "P")
1706 (make-diary-entry (calendar-day-name (calendar-cursor-to-date t))
1707 arg))
1708
1709 (defun insert-monthly-diary-entry (arg)
1710 "Insert a monthly diary entry for the day of the month indicated by point.
1711 Prefix arg will make the entry nonmarking."
1712 (interactive "P")
1713 (let ((calendar-date-display-form
1714 (if european-calendar-style
1715 '(day " * ")
1716 '("* " day))))
1717 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t)
1718 arg)))
1719
1720 (defun insert-yearly-diary-entry (arg)
1721 "Insert an annual diary entry for the day of the year indicated by point.
1722 Prefix arg will make the entry nonmarking."
1723 (interactive "P")
1724 (let ((calendar-date-display-form
1725 (if european-calendar-style
1726 '(day " " monthname)
1727 '(monthname " " day))))
1728 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t)
1729 arg)))
1730
1731 (defun insert-anniversary-diary-entry (arg)
1732 "Insert an anniversary diary entry for the date given by point.
1733 Prefix arg will make the entry nonmarking."
1734 (interactive "P")
1735 (let ((calendar-date-display-form
1736 (if european-calendar-style
1737 '(day " " month " " year)
1738 '(month " " day " " year))))
1739 (make-diary-entry
1740 (format "%s(diary-anniversary %s)"
1741 sexp-diary-entry-symbol
1742 (calendar-date-string (calendar-cursor-to-date t) nil t))
1743 arg)))
1744
1745 (defun insert-block-diary-entry (arg)
1746 "Insert a block diary entry for the days between the point and marked date.
1747 Prefix arg will make the entry nonmarking."
1748 (interactive "P")
1749 (let ((calendar-date-display-form
1750 (if european-calendar-style
1751 '(day " " month " " year)
1752 '(month " " day " " year)))
1753 (cursor (calendar-cursor-to-date t))
1754 (mark (or (car calendar-mark-ring)
1755 (error "No mark set in this buffer")))
1756 start end)
1757 (if (< (calendar-absolute-from-gregorian mark)
1758 (calendar-absolute-from-gregorian cursor))
1759 (setq start mark
1760 end cursor)
1761 (setq start cursor
1762 end mark))
1763 (make-diary-entry
1764 (format "%s(diary-block %s %s)"
1765 sexp-diary-entry-symbol
1766 (calendar-date-string start nil t)
1767 (calendar-date-string end nil t))
1768 arg)))
1769
1770 (defun insert-cyclic-diary-entry (arg)
1771 "Insert a cyclic diary entry starting at the date given by point.
1772 Prefix arg will make the entry nonmarking."
1773 (interactive "P")
1774 (let ((calendar-date-display-form
1775 (if european-calendar-style
1776 '(day " " month " " year)
1777 '(month " " day " " year))))
1778 (make-diary-entry
1779 (format "%s(diary-cyclic %d %s)"
1780 sexp-diary-entry-symbol
1781 (calendar-read "Repeat every how many days: "
1782 (lambda (x) (> x 0)))
1783 (calendar-date-string (calendar-cursor-to-date t) nil t))
1784 arg)))
1785
1786 ;;;###autoload
1787 (define-derived-mode diary-mode fundamental-mode
1788 "Diary"
1789 "Major mode for editing the diary file."
1790 (set (make-local-variable 'font-lock-defaults)
1791 '(diary-font-lock-keywords t)))
1792
1793 (define-derived-mode fancy-diary-display-mode fundamental-mode
1794 "Diary"
1795 "Major mode used while displaying diary entries using Fancy Display."
1796 (set (make-local-variable 'font-lock-defaults)
1797 '(fancy-diary-font-lock-keywords t))
1798 (define-key (current-local-map) "q" 'quit-window))
1799
1800
1801 (defvar fancy-diary-font-lock-keywords
1802 (list
1803 (cons
1804 (concat
1805 (let ((dayname (diary-name-pattern calendar-day-name-array nil t))
1806 (monthname (diary-name-pattern calendar-month-name-array nil t))
1807 (day "[0-9]+")
1808 (month "[0-9]+")
1809 (year "-?[0-9]+"))
1810 (mapconcat 'eval calendar-date-display-form ""))
1811 "\\(\\(: .*\\)\\|\\(\n +.*\\)\\)*\n=+$")
1812 'diary-face)
1813 '("^.*anniversary.*$" . font-lock-keyword-face)
1814 '("^.*birthday.*$" . font-lock-keyword-face)
1815 '("^.*Yahrzeit.*$" . font-lock-reference-face)
1816 '("^\\(Erev \\)?Rosh Hodesh.*" . font-lock-function-name-face)
1817 '("^Day.*omer.*$" . font-lock-builtin-face)
1818 '("^Parashat.*$" . font-lock-comment-face)
1819 '("^[ \t]*[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)?\\(-[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)?\\)?"
1820 . font-lock-variable-name-face))
1821 "Keywords to highlight in fancy diary display")
1822
1823
1824 (defun font-lock-diary-sexps (limit)
1825 "Recognize sexp diary entry for font-locking."
1826 (if (re-search-forward
1827 (concat "^" (regexp-quote diary-nonmarking-symbol)
1828 "?\\(" (regexp-quote sexp-diary-entry-symbol) "\\)")
1829 limit t)
1830 (condition-case nil
1831 (save-restriction
1832 (narrow-to-region (point-min) limit)
1833 (let ((start (point)))
1834 (forward-sexp 1)
1835 (store-match-data (list start (point)))
1836 t))
1837 (error t))))
1838
1839 (defun font-lock-diary-date-forms (month-array &optional symbol abbrev-array)
1840 "Create font-lock patterns for `diary-date-forms' using MONTH-ARRAY.
1841 If given, optional SYMBOL must be a prefix to entries.
1842 If optional ABBREV-ARRAY is present, the abbreviations constructed
1843 from this array by the function `calendar-abbrev-construct' are
1844 matched (with or without a final `.'), in addition to the full month
1845 names."
1846 (let ((dayname (diary-name-pattern calendar-day-name-array
1847 calendar-day-abbrev-array t))
1848 (monthname (format "\\(%s\\|\\*\\)"
1849 (diary-name-pattern month-array abbrev-array)))
1850 (month "\\([0-9]+\\|\\*\\)")
1851 (day "\\([0-9]+\\|\\*\\)")
1852 (year "-?\\([0-9]+\\|\\*\\)"))
1853 (mapcar '(lambda (x)
1854 (cons
1855 (concat "^" (regexp-quote diary-nonmarking-symbol) "?"
1856 (if symbol (regexp-quote symbol) "") "\\("
1857 (mapconcat 'eval
1858 ;; If backup, omit first item (backup)
1859 ;; and last item (not part of date)
1860 (if (equal (car x) 'backup)
1861 (reverse (cdr (reverse (cdr x))))
1862 x)
1863 "")
1864 ;; With backup, last item is not part of date
1865 (if (equal (car x) 'backup)
1866 (concat "\\)" (eval (car (reverse x))))
1867 "\\)"))
1868 '(1 diary-face)))
1869 diary-date-forms)))
1870
1871 (eval-when-compile (require 'cal-hebrew)
1872 (require 'cal-islam))
1873
1874 (defvar diary-font-lock-keywords
1875 (append
1876 (font-lock-diary-date-forms calendar-month-name-array
1877 nil calendar-month-abbrev-array)
1878 (when (or (memq 'mark-hebrew-diary-entries
1879 nongregorian-diary-marking-hook)
1880 (memq 'list-hebrew-diary-entries
1881 nongregorian-diary-listing-hook))
1882 (require 'cal-hebrew)
1883 (font-lock-diary-date-forms
1884 calendar-hebrew-month-name-array-leap-year
1885 hebrew-diary-entry-symbol))
1886 (when (or (memq 'mark-islamic-diary-entries
1887 nongregorian-diary-marking-hook)
1888 (memq 'list-islamic-diary-entries
1889 nongregorian-diary-listing-hook))
1890 (require 'cal-islam)
1891 (font-lock-diary-date-forms
1892 calendar-islamic-month-name-array
1893 islamic-diary-entry-symbol))
1894 (list
1895 (cons
1896 (concat "^" (regexp-quote diary-include-string) ".*$")
1897 'font-lock-keyword-face)
1898 (cons
1899 (concat "^" (regexp-quote diary-nonmarking-symbol)
1900 "?\\(" (regexp-quote sexp-diary-entry-symbol) "\\)")
1901 '(1 font-lock-reference-face))
1902 (cons
1903 (concat "^" (regexp-quote diary-nonmarking-symbol))
1904 'font-lock-reference-face)
1905 (cons
1906 (concat "^" (regexp-quote diary-nonmarking-symbol)
1907 "?\\(" (regexp-quote hebrew-diary-entry-symbol) "\\)")
1908 '(1 font-lock-reference-face))
1909 (cons
1910 (concat "^" (regexp-quote diary-nonmarking-symbol)
1911 "?\\(" (regexp-quote islamic-diary-entry-symbol) "\\)")
1912 '(1 font-lock-reference-face))
1913 '(font-lock-diary-sexps . font-lock-keyword-face)
1914 '("[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)\\(-[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)\\)?"
1915 . font-lock-function-name-face)))
1916 "Forms to highlight in diary-mode")
1917
1918
1919 ;; Following code from Dave Love <fx@gnu.org>.
1920 ;; Import Outlook-format appointments from mail messages in Gnus or
1921 ;; Rmail using command `diary-from-outlook'. This, or the specialized
1922 ;; functions `diary-from-outlook-gnus' and `diary-from-outlook-rmail',
1923 ;; could be run from hooks to notice appointments automatically (in
1924 ;; which case they will prompt about adding to the diary). The
1925 ;; message formats recognized are customizable through
1926 ;; `diary-outlook-formats'.
1927
1928 (defcustom diary-outlook-formats
1929 '(
1930 ;; When: 11 October 2001 12:00-14:00 (GMT) Greenwich Mean Time : Dublin, ...
1931 ;; [Current UK format? The timezone is meaningless. Sometimes the
1932 ;; Where is missing.]
1933 ("When: \\([0-9]+ [[:alpha:]]+ [0-9]+\\) \
1934 \\([^ ]+\\) [^\n]+
1935 \[^\n]+
1936 \\(?:Where: \\([^\n]+\\)\n+\\)?
1937 \\*~\\*~\\*~\\*~\\*~\\*~\\*~\\*~\\*~\\*"
1938 . "\\1\n \\2 %s, \\3")
1939 ;; When: Tuesday, April 30, 2002 03:00 PM-03:30 PM (GMT) Greenwich Mean ...
1940 ;; [Old UK format?]
1941 ("^When: [[:alpha:]]+, \\([[:alpha:]]+\\) \\([0-9][0-9]*\\), \\([0-9]\\{4\\}\\) \
1942 \\([^ ]+\\) [^\n]+
1943 \[^\n]+
1944 \\(?:Where: \\([^\n]+\\)\\)?\n+"
1945 . "\\2 \\1 \\3\n \\4 %s, \\5")
1946 (
1947 ;; German format, apparently.
1948 "^Zeit: [^ ]+, +\\([0-9]+\\)\. +\\([[:upper:]][[:lower:]][[:lower:]]\\)[^ ]* +\\([0-9]+\\) +\\([^ ]+\\).*$"
1949 . "\\1 \\2 \\3\n \\4 %s"))
1950 "Alist of regexps matching message text and replacement text.
1951
1952 The regexp must match the start of the message text containing an
1953 appointment, but need not include a leading `^'. If it matches the
1954 current message, a diary entry is made from the corresponding
1955 template. If the template is a string, it should be suitable for
1956 passing to `replace-match', and so will have occurrences of `\\D' to
1957 substitute the match for the Dth subexpression. It must also contain
1958 a single `%s' which will be replaced with the text of the message's
1959 Subject field. Any other `%' characters must be doubled, so that the
1960 template can be passed to `format'.
1961
1962 If the template is actually a function, it is called with the message
1963 body text as argument, and may use `match-string' etc. to make a
1964 template following the rules above."
1965 :type '(alist :key-type (regexp :tag "Regexp matching time/place")
1966 :value-type (choice
1967 (string :tag "Template for entry")
1968 (function :tag "Unary function providing template")))
1969 :version "22.1"
1970 :group 'diary)
1971
1972
1973 ;; Dynamically bound.
1974 (defvar body)
1975 (defvar subject)
1976
1977 (defun diary-from-outlook-internal (&optional test-only)
1978 "Snarf a diary entry from a message assumed to be from MS Outlook.
1979 Assumes `body' is bound to a string comprising the body of the message and
1980 `subject' is bound to a string comprising its subject.
1981 Arg TEST-ONLY non-nil means return non-nil if and only if the
1982 message contains an appointment, don't make a diary entry."
1983 (catch 'finished
1984 (let (format-string)
1985 (dotimes (i (length diary-outlook-formats))
1986 (when (eq 0 (string-match (car (nth i diary-outlook-formats))
1987 body))
1988 (unless test-only
1989 (setq format-string (cdr (nth i diary-outlook-formats)))
1990 (save-excursion
1991 (save-window-excursion
1992 ;; Fixme: References to optional fields in the format
1993 ;; are treated literally, not replaced by the empty
1994 ;; string. I think this is an Emacs bug.
1995 (make-diary-entry
1996 (format (replace-match (if (functionp format-string)
1997 (funcall format-string body)
1998 format-string)
1999 t nil (match-string 0 body))
2000 subject))
2001 (save-buffer))))
2002 (throw 'finished t))))
2003 nil))
2004
2005 (defun diary-from-outlook (&optional noconfirm)
2006 "Maybe snarf diary entry from current Outlook-generated message.
2007 Currently knows about Gnus and Rmail modes. Unless the optional
2008 argument NOCONFIRM is non-nil (which is the case when this
2009 function is called interactively), then if an entry is found the
2010 user is asked to confirm its addition."
2011 (interactive "p")
2012 (let ((func (cond
2013 ((eq major-mode 'rmail-mode)
2014 #'diary-from-outlook-rmail)
2015 ((memq major-mode '(gnus-summary-mode gnus-article-mode))
2016 #'diary-from-outlook-gnus)
2017 (t (error "Don't know how to snarf in `%s'" major-mode)))))
2018 (funcall func noconfirm)))
2019
2020
2021 (defvar gnus-article-mime-handles)
2022 (defvar gnus-article-buffer)
2023
2024 (autoload 'gnus-fetch-field "gnus-util")
2025 (autoload 'gnus-narrow-to-body "gnus")
2026 (autoload 'mm-get-part "mm-decode")
2027
2028 (defun diary-from-outlook-gnus (&optional noconfirm)
2029 "Maybe snarf diary entry from Outlook-generated message in Gnus.
2030 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2031 this function is called interactively), then if an entry is found the
2032 user is asked to confirm its addition.
2033 Add this function to `gnus-article-prepare-hook' to notice appointments
2034 automatically."
2035 (interactive "p")
2036 (with-current-buffer gnus-article-buffer
2037 (let ((subject (gnus-fetch-field "subject"))
2038 (body (if gnus-article-mime-handles
2039 ;; We're multipart. Don't get confused by part
2040 ;; buttons &c. Assume info is in first part.
2041 (mm-get-part (nth 1 gnus-article-mime-handles))
2042 (save-restriction
2043 (gnus-narrow-to-body)
2044 (buffer-string)))))
2045 (when (diary-from-outlook-internal t)
2046 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2047 (diary-from-outlook-internal)
2048 (message "Diary entry added"))))))
2049
2050 (custom-add-option 'gnus-article-prepare-hook 'diary-from-outlook-gnus)
2051
2052
2053 (defvar rmail-buffer)
2054
2055 (defun diary-from-outlook-rmail (&optional noconfirm)
2056 "Maybe snarf diary entry from Outlook-generated message in Rmail.
2057 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2058 this function is called interactively), then if an entry is found the
2059 user is asked to confirm its addition."
2060 (interactive "p")
2061 (with-current-buffer rmail-buffer
2062 (let ((subject (mail-fetch-field "subject"))
2063 (body (buffer-substring (save-excursion
2064 (rfc822-goto-eoh)
2065 (point))
2066 (point-max))))
2067 (when (diary-from-outlook-internal t)
2068 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2069 (diary-from-outlook-internal)
2070 (message "Diary entry added"))))))
2071
2072
2073 (provide 'diary-lib)
2074
2075 ;;; arch-tag: 22dd506e-2e33-410d-9ae1-095a0c1b2010
2076 ;;; diary-lib.el ends here