1 ;;; diary-lib.el --- diary functions
3 ;; Copyright (C) 1989, 1990, 1992, 1993, 1994, 1995, 2003, 2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; This collection of functions implements the diary features as described
31 ;; Comments, corrections, and improvements should be sent to
32 ;; Edward M. Reingold Department of Computer Science
33 ;; (217) 333-6733 University of Illinois at Urbana-Champaign
34 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
35 ;; Urbana, Illinois 61801
41 (defun diary-check-diary-file ()
42 "Check that the file specified by `diary-file' exists and is readable.
43 If so, return the expanded file name, otherwise signal an error."
44 (let ((d-file (substitute-in-file-name diary-file
)))
45 (if (and d-file
(file-exists-p d-file
))
46 (if (file-readable-p d-file
)
48 (error "Diary file `%s' is not readable" diary-file
))
49 (error "Diary file `%s' does not exist" diary-file
))))
52 (defun diary (&optional arg
)
53 "Generate the diary window for ARG days starting with the current date.
54 If no argument is provided, the number of days of diary entries is governed
55 by the variable `number-of-diary-entries'. A value of ARG less than 1
56 does nothing. This function is suitable for execution in a `.emacs' file."
58 (diary-check-diary-file)
59 (let ((date (calendar-current-date)))
62 (cond (arg (prefix-numeric-value arg
))
63 ((vectorp number-of-diary-entries
)
64 (aref number-of-diary-entries
(calendar-day-of-week date
)))
65 (t number-of-diary-entries
)))))
67 (defun view-diary-entries (arg)
68 "Prepare and display a buffer with diary entries.
69 Searches the file named in `diary-file' for entries that
70 match ARG days starting with the date indicated by the cursor position
71 in the displayed three-month calendar."
73 (diary-check-diary-file)
74 (list-diary-entries (calendar-cursor-to-date t
) arg
))
76 (defun view-other-diary-entries (arg d-file
)
77 "Prepare and display buffer of diary entries from an alternative diary file.
78 Searches for entries that match ARG days, starting with the date indicated
79 by the cursor position in the displayed three-month calendar.
80 D-FILE specifies the file to use as the diary file."
82 (list (if arg
(prefix-numeric-value arg
) 1)
83 (read-file-name "Enter diary file name: " default-directory nil t
)))
84 (let ((diary-file d-file
))
85 (view-diary-entries arg
)))
87 (autoload 'check-calendar-holidays
"holidays"
88 "Check the list of holidays for any that occur on DATE.
89 The value returned is a list of strings of relevant holiday descriptions.
90 The holidays are those in the list `calendar-holidays'.")
92 (autoload 'calendar-holiday-list
"holidays"
93 "Form the list of holidays that occur on dates in the calendar window.
94 The holidays are those in the list `calendar-holidays'.")
96 (autoload 'diary-french-date
"cal-french"
97 "French calendar equivalent of date diary entry.")
99 (autoload 'diary-mayan-date
"cal-mayan"
100 "Mayan calendar equivalent of date diary entry.")
102 (autoload 'diary-iso-date
"cal-iso"
103 "ISO calendar equivalent of date diary entry.")
105 (autoload 'diary-julian-date
"cal-julian"
106 "Julian calendar equivalent of date diary entry.")
108 (autoload 'diary-astro-day-number
"cal-julian"
109 "Astronomical (Julian) day number diary entry.")
111 (autoload 'diary-chinese-date
"cal-china"
112 "Chinese calendar equivalent of date diary entry.")
114 (autoload 'diary-islamic-date
"cal-islam"
115 "Islamic calendar equivalent of date diary entry.")
117 (autoload 'list-islamic-diary-entries
"cal-islam"
118 "Add any Islamic date entries from the diary file to `diary-entries-list'.")
120 (autoload 'mark-islamic-diary-entries
"cal-islam"
121 "Mark days in the calendar window that have Islamic date diary entries.")
123 (autoload 'mark-islamic-calendar-date-pattern
"cal-islam"
124 "Mark dates in calendar window that conform to Islamic date MONTH/DAY/YEAR.")
126 (autoload 'diary-hebrew-date
"cal-hebrew"
127 "Hebrew calendar equivalent of date diary entry.")
129 (autoload 'diary-omer
"cal-hebrew"
130 "Omer count diary entry.")
132 (autoload 'diary-yahrzeit
"cal-hebrew"
133 "Yahrzeit diary entry--entry applies if date is yahrzeit or the day before.")
135 (autoload 'diary-parasha
"cal-hebrew"
136 "Parasha diary entry--entry applies if date is a Saturday.")
138 (autoload 'diary-rosh-hodesh
"cal-hebrew"
139 "Rosh Hodesh diary entry.")
141 (autoload 'list-hebrew-diary-entries
"cal-hebrew"
142 "Add any Hebrew date entries from the diary file to `diary-entries-list'.")
144 (autoload 'mark-hebrew-diary-entries
"cal-hebrew"
145 "Mark days in the calendar window that have Hebrew date diary entries.")
147 (autoload 'mark-hebrew-calendar-date-pattern
"cal-hebrew"
148 "Mark dates in calendar window that conform to Hebrew date MONTH/DAY/YEAR.")
150 (autoload 'diary-coptic-date
"cal-coptic"
151 "Coptic calendar equivalent of date diary entry.")
153 (autoload 'diary-ethiopic-date
"cal-coptic"
154 "Ethiopic calendar equivalent of date diary entry.")
156 (autoload 'diary-persian-date
"cal-persia"
157 "Persian calendar equivalent of date diary entry.")
159 (autoload 'diary-phases-of-moon
"lunar" "Moon phases diary entry.")
161 (autoload 'diary-sunrise-sunset
"solar"
162 "Local time of sunrise and sunset as a diary entry.")
164 (autoload 'diary-sabbath-candles
"solar"
165 "Local time of candle lighting diary entry--applies if date is a Friday.
166 No diary entry if there is no sunset on that date.")
168 (defvar diary-syntax-table
(copy-syntax-table (standard-syntax-table))
169 "The syntax table used when parsing dates in the diary file.
170 It is the standard syntax table used in Fundamental mode, but with the
171 syntax of `*' and `:' changed to be word constituents.")
173 (modify-syntax-entry ?
* "w" diary-syntax-table
)
174 (modify-syntax-entry ?
: "w" diary-syntax-table
)
176 (defvar diary-entries-list
)
177 (defvar displayed-year
)
178 (defvar displayed-month
)
183 (defvar original-date
)
185 (defun diary-attrtype-convert (attrvalue type
)
186 "Convert string ATTRVALUE to TYPE appropriate for a face description.
187 Valid TYPEs are: string, symbol, int, stringtnil, tnil."
189 (setq ret
(cond ((eq type
'string
) attrvalue
)
190 ((eq type
'symbol
) (read attrvalue
))
191 ((eq type
'int
) (string-to-int attrvalue
))
192 ((eq type
'stringtnil
)
193 (cond ((string= "t" attrvalue
) t
)
194 ((string= "nil" attrvalue
) nil
)
197 (cond ((string= "t" attrvalue
) t
)
198 ((string= "nil" attrvalue
) nil
)))))
199 ; (message "(%s)[%s]=[%s]" (print type) attrvalue ret)
203 (defun diary-pull-attrs (entry fileglobattrs
)
204 "Pull the face-related attributes off the entry, merge with the
205 fileglobattrs, and return the (possibly modified) entry and face
206 data in a list of attrname attrvalue values.
207 The entry will be modified to drop all tags that are used for face matching.
208 If entry is nil, then the fileglobattrs are being searched for,
209 the fileglobattrs variable is ignored, and
210 diary-glob-file-regexp-prefix is prepended to the regexps before each
213 (let (regexp regnum attrname attr-list attrname attrvalue type
218 attr-list diary-face-attrs
)
220 (goto-char (point-min))
221 (setq attr
(car attr-list
)
224 attrname
(nth 2 attr
)
226 regexp
(concat diary-glob-file-regexp-prefix regexp
))
228 (if (re-search-forward regexp
(point-max) t
)
229 (setq attrvalue
(buffer-substring-no-properties
230 (match-beginning regnum
)
231 (match-end regnum
))))
233 (setq attrvalue
(diary-attrtype-convert attrvalue type
)))
234 (setq ret-attr
(append ret-attr
(list attrname attrvalue
))))
235 (setq attr-list
(cdr attr-list
)))
236 (setq fileglobattrs ret-attr
))
238 (setq ret-attr fileglobattrs
239 attr-list diary-face-attrs
)
241 (goto-char (point-min))
242 (setq attr
(car attr-list
)
245 attrname
(nth 2 attr
)
248 (if (string-match regexp entry
)
250 (setq attrvalue
(substring-no-properties entry
251 (match-beginning regnum
)
253 (setq entry
(replace-match "" t t entry
))))
255 (setq attrvalue
(diary-attrtype-convert attrvalue type
)))
256 (setq ret-attr
(append ret-attr
(list attrname attrvalue
))))
257 (setq attr-list
(cdr attr-list
)))))
258 (list entry ret-attr
))))
261 ;; This can be removed once the kill/yank treatment of invisible text
262 ;; (see etc/TODO) is fixed. -- gm
263 (defcustom diary-header-line-flag t
264 "*If non-nil, `simple-diary-display' will show a header line.
265 The format of the header is specified by `diary-header-line-format'."
270 (defcustom diary-header-line-format
271 '(:eval
(calendar-string-spread
272 (list (if selective-display
273 "Selective display active - press \"s\" in calendar \
277 "*Format of the header line displayed by `simple-diary-display'.
278 Only used if `diary-header-line-flag' is non-nil."
283 (defun list-diary-entries (date number
)
284 "Create and display a buffer containing the relevant lines in diary-file.
285 The arguments are DATE and NUMBER; the entries selected are those
286 for NUMBER days starting with date DATE. The other entries are hidden
287 using selective display. If NUMBER is less than 1, this function does nothing.
289 Returns a list of all relevant diary entries found, if any, in order by date.
290 The list entries have the form ((month day year) string specifier) where
291 \(month day year) is the date of the entry, string is the entry text, and
292 specifier is the applicability. If the variable `diary-list-include-blanks'
293 is t, this list includes a dummy diary entry consisting of the empty string)
294 for a date with no diary entries.
296 After the list is prepared, the hooks `nongregorian-diary-listing-hook',
297 `list-diary-entries-hook', `diary-display-hook', and `diary-hook' are run.
298 These hooks have the following distinct roles:
300 `nongregorian-diary-listing-hook' can cull dates from the diary
301 and each included file. Usually used for Hebrew or Islamic
302 diary entries in files. Applied to *each* file.
304 `list-diary-entries-hook' adds or manipulates diary entries from
305 external sources. Used, for example, to include diary entries
306 from other files or to sort the diary entries. Invoked *once* only,
307 before the display hook is run.
309 `diary-display-hook' does the actual display of information. If this is
310 nil, simple-diary-display will be used. Use add-hook to set this to
311 fancy-diary-display, if desired. If you want no diary display, use
312 add-hook to set this to ignore.
314 `diary-hook' is run last. This can be used for an appointment
315 notification function."
318 (let ((original-date date
);; save for possible use in the hooks
319 old-diary-syntax-table
322 (date-string (calendar-date-string date
))
323 (d-file (substitute-in-file-name diary-file
)))
324 (message "Preparing diary...")
326 (let ((diary-buffer (find-buffer-visiting d-file
)))
327 (if (not diary-buffer
)
328 (set-buffer (find-file-noselect d-file t
))
329 (set-buffer diary-buffer
)
330 (or (verify-visited-file-modtime diary-buffer
)
331 (revert-buffer t t
))))
332 (setq file-glob-attrs
(nth 1 (diary-pull-attrs nil
"")))
333 (setq selective-display t
)
334 (setq selective-display-ellipses nil
)
335 (if diary-header-line-flag
336 (setq header-line-format diary-header-line-format
))
337 (setq old-diary-syntax-table
(syntax-table))
338 (set-syntax-table diary-syntax-table
)
340 (let ((buffer-read-only nil
)
341 (diary-modified (buffer-modified-p))
342 (mark (regexp-quote diary-nonmarking-symbol
)))
343 ;; First and last characters must be ^M or \n for
344 ;; selective display to work properly
345 (goto-char (1- (point-max)))
346 (if (not (looking-at "\^M\\|\n"))
348 (goto-char (point-max))
350 (goto-char (point-min))
351 (if (not (looking-at "\^M\\|\n"))
353 (subst-char-in-region (point-min) (point-max) ?
\n ?\^M t
)
354 (calendar-for-loop i from
1 to number do
355 (let ((d diary-date-forms
)
356 (month (extract-calendar-month date
))
357 (day (extract-calendar-day date
))
358 (year (extract-calendar-year date
))
359 (entry-found (list-sexp-diary-entries date
)))
362 ((date-form (if (equal (car (car d
)) 'backup
)
365 (backup (equal (car (car d
)) 'backup
))
367 (format "%s\\|%s\\.?"
368 (calendar-day-name date
)
369 (calendar-day-name date
'abbrev
)))
371 (format "\\*\\|%s\\|%s\\.?"
372 (calendar-month-name month
)
373 (calendar-month-name month
'abbrev
)))
374 (month (concat "\\*\\|0*" (int-to-string month
)))
375 (day (concat "\\*\\|0*" (int-to-string day
)))
378 "\\*\\|0*" (int-to-string year
)
379 (if abbreviated-calendar-year
380 (concat "\\|" (format "%02d" (% year
100)))
384 "\\(\\`\\|\^M\\|\n\\)" mark
"?\\("
385 (mapconcat 'eval date-form
"\\)\\(")
387 (case-fold-search t
))
388 (goto-char (point-min))
389 (while (re-search-forward regexp nil t
)
390 (if backup
(re-search-backward "\\<" nil t
))
391 (if (and (or (char-equal (preceding-char) ?\^M
)
392 (char-equal (preceding-char) ?
\n))
393 (not (looking-at " \\|\^I")))
394 ;; Diary entry that consists only of date.
396 ;; Found a nonempty diary entry--make it visible and
397 ;; add it to the list.
399 (let ((entry-start (point))
401 (re-search-backward "\^M\\|\n\\|\\`")
402 (setq date-start
(point))
403 (re-search-forward "\^M\\|\n" nil t
2)
404 (while (looking-at " \\|\^I")
405 (re-search-forward "\^M\\|\n" nil t
))
407 (subst-char-in-region date-start
409 (setq entry
(buffer-substring entry-start
(point))
410 temp
(diary-pull-attrs entry file-glob-attrs
)
416 (1+ date-start
) (1- entry-start
))
417 (copy-marker entry-start
) (nth 1 temp
))))))
420 (not diary-list-include-blanks
)
421 (setq diary-entries-list
422 (append diary-entries-list
423 (list (list date
"" "" "" "")))))
425 (calendar-gregorian-from-absolute
426 (1+ (calendar-absolute-from-gregorian date
))))
427 (setq entry-found nil
)))
428 (set-buffer-modified-p diary-modified
))
429 (set-syntax-table old-diary-syntax-table
))
430 (goto-char (point-min))
431 (run-hooks 'nongregorian-diary-listing-hook
432 'list-diary-entries-hook
)
433 (if diary-display-hook
434 (run-hooks 'diary-display-hook
)
435 (simple-diary-display))
436 (run-hooks 'diary-hook
)
437 diary-entries-list
))))
439 (defun include-other-diary-files ()
440 "Include the diary entries from other diary files with those of diary-file.
441 This function is suitable for use in `list-diary-entries-hook';
442 it enables you to use shared diary files together with your own.
443 The files included are specified in the diaryfile by lines of this form:
444 #include \"filename\"
445 This is recursive; that is, #include directives in diary files thus included
446 are obeyed. You can change the `#include' to some other string by
447 changing the variable `diary-include-string'."
448 (goto-char (point-min))
449 (while (re-search-forward
451 "\\(\\`\\|\^M\\|\n\\)"
452 (regexp-quote diary-include-string
)
455 (let* ((diary-file (substitute-in-file-name
456 (buffer-substring-no-properties
457 (match-beginning 2) (match-end 2))))
458 (diary-list-include-blanks nil
)
459 (list-diary-entries-hook 'include-other-diary-files
)
460 (diary-display-hook 'ignore
)
462 (d-buffer (find-buffer-visiting diary-file
))
463 (diary-modified (if d-buffer
465 (set-buffer d-buffer
)
466 (buffer-modified-p)))))
467 (if (file-exists-p diary-file
)
468 (if (file-readable-p diary-file
)
470 (setq diary-entries-list
471 (append diary-entries-list
472 (list-diary-entries original-date number
)))
474 (set-buffer (find-buffer-visiting diary-file
))
475 (let ((inhibit-read-only t
))
476 (subst-char-in-region (point-min) (point-max) ?\^M ?
\n t
))
477 (setq selective-display nil
)
478 (set-buffer-modified-p diary-modified
)))
480 (message "Can't read included diary file %s" diary-file
)
483 (message "Can't find included diary file %s" diary-file
)
485 (goto-char (point-min)))
487 (defun simple-diary-display ()
488 "Display the diary buffer if there are any relevant entries or holidays."
489 (let* ((holiday-list (if holidays-in-diary-buffer
490 (check-calendar-holidays original-date
)))
491 (hol-string (format "%s%s%s"
493 (if holiday-list
": " "")
494 (mapconcat 'identity holiday-list
"; ")))
495 (msg (format "No diary entries for %s" hol-string
))
496 ;; If selected window is dedicated (to the calendar),
497 ;; need a new one to display the diary.
498 (pop-up-frames (window-dedicated-p (selected-window))))
499 (calendar-set-mode-line (format "Diary for %s" hol-string
))
500 (if (or (not diary-entries-list
)
501 (and (not (cdr diary-entries-list
))
502 (string-equal (car (cdr (car diary-entries-list
))) "")))
503 (if (< (length msg
) (frame-width))
505 (set-buffer (get-buffer-create holiday-buffer
))
506 (setq buffer-read-only nil
)
507 (calendar-set-mode-line date-string
)
509 (insert (mapconcat 'identity holiday-list
"\n"))
510 (goto-char (point-min))
511 (set-buffer-modified-p nil
)
512 (setq buffer-read-only t
)
513 (display-buffer holiday-buffer
)
514 (message "No diary entries for %s" date-string
))
515 (display-buffer (find-buffer-visiting
516 (substitute-in-file-name diary-file
)))
517 (message "Preparing diary...done"))))
519 (defface diary-button-face
'((((type pc
) (class color
))
520 (:foreground
"lightblue")))
521 "Default face used for buttons."
525 (define-button-type 'diary-entry
526 'action
#'diary-goto-entry
527 'face
#'diary-button-face
)
529 (defun diary-goto-entry (button)
530 (let ((marker (button-get button
'marker
)))
532 (pop-to-buffer (marker-buffer marker
))
533 (goto-char (marker-position marker
)))))
535 (defun fancy-diary-display ()
536 "Prepare a diary buffer with relevant entries in a fancy, noneditable form.
537 This function is provided for optional use as the `diary-display-hook'."
538 (save-excursion;; Turn off selective-display in the diary file's buffer.
539 (set-buffer (find-buffer-visiting (substitute-in-file-name diary-file
)))
540 (let ((diary-modified (buffer-modified-p)))
541 (subst-char-in-region (point-min) (point-max) ?\^M ?
\n t
)
542 (setq selective-display nil
)
543 (kill-local-variable 'mode-line-format
)
544 (set-buffer-modified-p diary-modified
)))
545 (if (or (not diary-entries-list
)
546 (and (not (cdr diary-entries-list
))
547 (string-equal (car (cdr (car diary-entries-list
))) "")))
548 (let* ((holiday-list (if holidays-in-diary-buffer
549 (check-calendar-holidays original-date
)))
550 (msg (format "No diary entries for %s %s"
551 (concat date-string
(if holiday-list
":" ""))
552 (mapconcat 'identity holiday-list
"; "))))
553 (if (<= (length msg
) (frame-width))
555 (set-buffer (get-buffer-create holiday-buffer
))
556 (setq buffer-read-only nil
)
557 (calendar-set-mode-line date-string
)
559 (insert (mapconcat 'identity holiday-list
"\n"))
560 (goto-char (point-min))
561 (set-buffer-modified-p nil
)
562 (setq buffer-read-only t
)
563 (display-buffer holiday-buffer
)
564 (message "No diary entries for %s" date-string
)))
565 (save-excursion;; Prepare the fancy diary buffer.
566 (set-buffer (make-fancy-diary-buffer))
567 (setq buffer-read-only nil
)
568 (let ((entry-list diary-entries-list
)
570 (holiday-list-last-month 1)
571 (holiday-list-last-year 1)
574 (if (not (calendar-date-equal date
(car (car entry-list
))))
576 (setq date
(car (car entry-list
)))
577 (and holidays-in-diary-buffer
578 (calendar-date-compare
579 (list (list holiday-list-last-month
580 (calendar-last-day-of-month
581 holiday-list-last-month
582 holiday-list-last-year
)
583 holiday-list-last-year
))
585 ;; We need to get the holidays for the next 3 months.
586 (setq holiday-list-last-month
587 (extract-calendar-month date
))
588 (setq holiday-list-last-year
589 (extract-calendar-year date
))
590 (increment-calendar-month
591 holiday-list-last-month holiday-list-last-year
1)
593 (let ((displayed-month holiday-list-last-month
)
594 (displayed-year holiday-list-last-year
))
595 (calendar-holiday-list)))
596 (increment-calendar-month
597 holiday-list-last-month holiday-list-last-year
1))
598 (let* ((date-string (calendar-date-string date
))
600 (let ((h holiday-list
)
602 ;; Make a list of all holidays for date.
604 (if (calendar-date-equal date
(car (car h
)))
605 (setq d
(append d
(cdr (car h
)))))
608 (insert (if (= (point) (point-min)) "" ?
\n) date-string
)
609 (if date-holiday-list
(insert ": "))
610 (let* ((l (current-column))
612 (insert (mapconcat (lambda (x)
613 (if (< longest
(length x
))
614 (setq longest
(length x
)))
617 (concat "\n" (make-string l ?
))))
618 (insert ?
\n (make-string (+ l longest
) ?
=) ?
\n)))))
620 (setq entry
(car (cdr (car entry-list
))))
621 (if (< 0 (length entry
))
623 (if (nth 3 (car entry-list
))
624 (insert-button (concat entry
"\n")
625 'marker
(nth 3 (car entry-list
))
629 (let* ((marks (nth 4 (car entry-list
)))
630 (temp-face (make-symbol
633 (mapcar '(lambda (sym)
639 (make-face temp-face
)
640 ;; Remove :face info from the marks,
641 ;; copy the face info into temp-face
642 (while (setq faceinfo
(memq :face faceinfo
))
643 (copy-face (read (nth 1 faceinfo
)) temp-face
)
644 (setcar faceinfo nil
)
645 (setcar (cdr faceinfo
) nil
))
646 (setq marks
(delq nil marks
))
647 ;; Apply the font aspects
648 (apply 'set-face-attribute temp-face nil marks
)
649 (search-backward entry
)
651 (make-overlay (match-beginning 0) (match-end 0))
653 (setq entry-list
(cdr entry-list
))))
654 (set-buffer-modified-p nil
)
655 (goto-char (point-min))
656 (setq buffer-read-only t
)
657 (display-buffer fancy-diary-buffer
)
658 (fancy-diary-display-mode)
659 (message "Preparing diary...done"))))
661 (defun make-fancy-diary-buffer ()
662 "Create and return the initial fancy diary buffer."
664 (set-buffer (get-buffer-create fancy-diary-buffer
))
665 (setq buffer-read-only nil
)
666 (calendar-set-mode-line "Diary Entries")
668 (set-buffer-modified-p nil
)
669 (setq buffer-read-only t
)
670 (get-buffer fancy-diary-buffer
)))
672 (defun print-diary-entries ()
673 "Print a hard copy of the diary display.
675 If the simple diary display is being used, prepare a temp buffer with the
676 visible lines of the diary buffer, add a heading line composed from the mode
677 line, print the temp buffer, and destroy it.
679 If the fancy diary display is being used, just print the buffer.
681 The hooks given by the variable `print-diary-entries-hook' are called to do
682 the actual printing."
684 (if (bufferp (get-buffer fancy-diary-buffer
))
686 (set-buffer (get-buffer fancy-diary-buffer
))
687 (run-hooks 'print-diary-entries-hook
))
689 (find-buffer-visiting (substitute-in-file-name diary-file
))))
691 (let ((temp-buffer (get-buffer-create "*Printable Diary Entries*"))
694 (set-buffer diary-buffer
)
696 (if (not (stringp mode-line-format
))
698 (string-match "^-*\\([^-].*[^-]\\)-*$" mode-line-format
)
699 (substring mode-line-format
700 (match-beginning 1) (match-end 1))))
701 (copy-to-buffer temp-buffer
(point-min) (point-max))
702 (set-buffer temp-buffer
)
703 (while (re-search-forward "\^M.*$" nil t
)
705 (goto-char (point-min))
707 (make-string (length heading
) ?
=) "\n")
708 (run-hooks 'print-diary-entries-hook
)
709 (kill-buffer temp-buffer
)))
710 (error "You don't have a diary buffer!")))))
712 (defun show-all-diary-entries ()
713 "Show all of the diary entries in the diary file.
714 This function gets rid of the selective display of the diary file so that
715 all entries, not just some, are visible. If there is no diary buffer, one
718 (let ((d-file (diary-check-diary-file))
719 (pop-up-frames (window-dedicated-p (selected-window))))
721 (set-buffer (or (find-buffer-visiting d-file
)
722 (find-file-noselect d-file t
)))
723 (let ((buffer-read-only nil
)
724 (diary-modified (buffer-modified-p)))
725 (subst-char-in-region (point-min) (point-max) ?\^M ?
\n t
)
726 (setq selective-display nil
727 mode-line-format default-mode-line-format
)
728 (display-buffer (current-buffer))
729 (set-buffer-modified-p diary-modified
)))))
731 (defcustom diary-mail-addr
732 (if (boundp 'user-mail-address
) user-mail-address
"")
733 "*Email address that `diary-mail-entries' will send email to."
738 (defcustom diary-mail-days
7
739 "*Default number of days for `diary-mail-entries' to check."
745 (defun diary-mail-entries (&optional ndays
)
746 "Send a mail message showing diary entries for next NDAYS days.
747 If no prefix argument is given, NDAYS is set to `diary-mail-days'.
748 Mail is sent to the address specified by `diary-mail-addr'.
750 You can call `diary-mail-entries' every night using an at/cron job.
751 For example, this script will run the program at 2am daily. Since
752 `emacs -batch' does not load your `.emacs' file, you must ensure that
753 all relevant variables are set, as done here.
756 # diary-rem.sh -- repeatedly run the Emacs diary-reminder
758 -eval \"(setq diary-mail-days 3 \\
759 diary-file \\\"/path/to/diary.file\\\" \\
760 european-calendar-style t \\
761 diary-mail-addr \\\"user@host.name\\\" )\" \\
762 -l diary-lib -f diary-mail-entries
763 at -f diary-rem.sh 0200 tomorrow
765 You may have to tweak the syntax of the `at' command to suit your
766 system. Alternatively, you can specify a cron entry:
767 0 1 * * * diary-rem.sh
768 to run it every morning at 1am."
770 (if (string-equal diary-mail-addr
"")
771 (error "You must set `diary-mail-addr' to use this command")
772 (let ((diary-display-hook 'fancy-diary-display
))
773 (list-diary-entries (calendar-current-date) (or ndays diary-mail-days
)))
774 (compose-mail diary-mail-addr
775 (concat "Diary entries generated "
776 (calendar-date-string (calendar-current-date))))
778 (if (get-buffer fancy-diary-buffer
)
780 (set-buffer fancy-diary-buffer
)
781 (buffer-substring (point-min) (point-max)))
783 (call-interactively (get mail-user-agent
'sendfunc
))))
785 (defun diary-name-pattern (string-array &optional abbrev-array paren
)
786 "Return a regexp matching the strings in the array STRING-ARRAY.
787 If the optional argument ABBREV-ARRAY is present, then the function
788 `calendar-abbrev-construct' is used to construct abbreviations from the
789 two supplied arrays. The returned regexp will then also match these
790 abbreviations, with or without final `.' characters. If the optional
791 argument PAREN is non-nil, the regexp is surrounded by parentheses."
792 (regexp-opt (append string-array
794 (calendar-abbrev-construct abbrev-array
797 (calendar-abbrev-construct abbrev-array
803 (defvar marking-diary-entries nil
804 "True during the marking of diary entries, nil otherwise.")
806 (defvar marking-diary-entry nil
807 "True during the marking of diary entries, if current entry is marking.")
809 (defun mark-diary-entries ()
810 "Mark days in the calendar window that have diary entries.
811 Each entry in the diary file visible in the calendar window is marked.
812 After the entries are marked, the hooks `nongregorian-diary-marking-hook' and
813 `mark-diary-entries-hook' are run."
815 (setq mark-diary-entries-in-calendar t
)
816 (let ((marking-diary-entries t
)
817 file-glob-attrs marks
)
819 (set-buffer (find-file-noselect (diary-check-diary-file) t
))
820 (message "Marking diary entries...")
821 (setq file-glob-attrs
(nth 1 (diary-pull-attrs nil
'())))
822 (let ((d diary-date-forms
)
823 (old-diary-syntax-table (syntax-table))
825 (set-syntax-table diary-syntax-table
)
827 (let* ((date-form (if (equal (car (car d
)) 'backup
)
829 (car d
)));; ignore 'backup directive
831 (diary-name-pattern calendar-day-name-array
832 calendar-day-abbrev-array
))
835 (diary-name-pattern calendar-month-name-array
836 calendar-month-abbrev-array
)))
837 (month "[0-9]+\\|\\*")
839 (year "[0-9]+\\|\\*")
840 (l (length date-form
))
841 (d-name-pos (- l
(length (memq 'dayname date-form
))))
842 (d-name-pos (if (/= l d-name-pos
) (+ 2 d-name-pos
)))
843 (m-name-pos (- l
(length (memq 'monthname date-form
))))
844 (m-name-pos (if (/= l m-name-pos
) (+ 2 m-name-pos
)))
845 (d-pos (- l
(length (memq 'day date-form
))))
846 (d-pos (if (/= l d-pos
) (+ 2 d-pos
)))
847 (m-pos (- l
(length (memq 'month date-form
))))
848 (m-pos (if (/= l m-pos
) (+ 2 m-pos
)))
849 (y-pos (- l
(length (memq 'year date-form
))))
850 (y-pos (if (/= l y-pos
) (+ 2 y-pos
)))
853 "\\(\\`\\|\^M\\|\n\\)\\("
854 (mapconcat 'eval date-form
"\\)\\(")
856 (case-fold-search t
))
857 (goto-char (point-min))
858 (while (re-search-forward regexp nil t
)
861 (buffer-substring-no-properties
862 (match-beginning d-name-pos
)
863 (match-end d-name-pos
))))
866 (buffer-substring-no-properties
867 (match-beginning m-name-pos
)
868 (match-end m-name-pos
))))
871 (buffer-substring-no-properties
872 (match-beginning m-pos
)
877 (buffer-substring-no-properties
878 (match-beginning d-pos
)
882 (buffer-substring-no-properties
883 (match-beginning y-pos
)
887 (if (and (= (length y-str
) 2)
888 abbreviated-calendar-year
)
890 (extract-calendar-year
891 (calendar-current-date)))
892 (y (+ (string-to-int y-str
)
894 (/ current-y
100)))))
895 (if (> (- y current-y
) 50)
897 (if (> (- current-y y
) 50)
900 (string-to-int y-str
))))
902 (setq entry
(buffer-substring-no-properties
903 (point) (line-end-position))
904 temp
(diary-pull-attrs entry file-glob-attrs
)
906 marks
(nth 1 temp
))))
908 (mark-calendar-days-named
912 calendar-day-name-array
913 0 nil calendar-day-abbrev-array
) t
)) marks
)
916 (if (string-equal mm-name
"*") 0
920 calendar-month-name-array
921 1 nil calendar-month-abbrev-array
) t
)))))
922 (mark-calendar-date-pattern mm dd yy marks
))))
924 (mark-sexp-diary-entries)
925 (run-hooks 'nongregorian-diary-marking-hook
926 'mark-diary-entries-hook
)
927 (set-syntax-table old-diary-syntax-table
)
928 (message "Marking diary entries...done")))))
930 (defun mark-sexp-diary-entries ()
931 "Mark days in the calendar window that have sexp diary entries.
932 Each entry in the diary file (or included files) visible in the calendar window
933 is marked. See the documentation for the function `list-sexp-diary-entries'."
934 (let* ((sexp-mark (regexp-quote sexp-diary-entry-symbol
))
935 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)\\("
936 sexp-mark
"(\\)\\|\\("
937 (regexp-quote diary-nonmarking-symbol
)
938 sexp-mark
"(diary-remind\\)"))
939 (file-glob-attrs (nth 1 (diary-pull-attrs nil
'())))
940 m y first-date last-date mark file-glob-attrs
)
942 (set-buffer calendar-buffer
)
943 (setq m displayed-month
)
944 (setq y displayed-year
))
945 (increment-calendar-month m y -
1)
947 (calendar-absolute-from-gregorian (list m
1 y
)))
948 (increment-calendar-month m y
2)
950 (calendar-absolute-from-gregorian
951 (list m
(calendar-last-day-of-month m y
) y
)))
952 (goto-char (point-min))
953 (while (re-search-forward s-entry nil t
)
954 (setq marking-diary-entry
(char-equal (preceding-char) ?\
())
955 (re-search-backward "(")
956 (let ((sexp-start (point))
957 sexp entry entry-start line-start marks
)
959 (setq sexp
(buffer-substring-no-properties sexp-start
(point)))
961 (re-search-backward "\^M\\|\n\\|\\`")
962 (setq line-start
(point)))
964 (if (and (or (char-equal (preceding-char) ?\^M
)
965 (char-equal (preceding-char) ?
\n))
966 (not (looking-at " \\|\^I")))
967 (progn;; Diary entry consists only of the sexp
970 (setq entry-start
(point))
972 (re-search-forward "\^M\\|\n" nil t
)
973 (while (looking-at " \\|\^I")
974 (or (re-search-forward "\^M\\|\n" nil t
)
975 (re-search-forward "$" nil t
)))
976 (if (or (char-equal (preceding-char) ?\^M
)
977 (char-equal (preceding-char) ?
\n))
979 (setq entry
(buffer-substring-no-properties entry-start
(point)))
980 (while (string-match "[\^M]" entry
)
981 (aset entry
(match-beginning 0) ?
\n )))
982 (calendar-for-loop date from first-date to last-date do
983 (if (setq mark
(diary-sexp-entry sexp entry
984 (calendar-gregorian-from-absolute date
)))
986 (setq marks
(diary-pull-attrs entry file-glob-attrs
)
987 marks
(nth 1 (diary-pull-attrs entry file-glob-attrs
)))
988 (mark-visible-calendar-date
989 (calendar-gregorian-from-absolute date
)
990 (if (< 0 (length marks
))
995 (defun mark-included-diary-files ()
996 "Mark the diary entries from other diary files with those of the diary file.
997 This function is suitable for use as the `mark-diary-entries-hook'; it enables
998 you to use shared diary files together with your own. The files included are
999 specified in the diary-file by lines of this form:
1000 #include \"filename\"
1001 This is recursive; that is, #include directives in diary files thus included
1002 are obeyed. You can change the `#include' to some other string by
1003 changing the variable `diary-include-string'."
1004 (goto-char (point-min))
1005 (while (re-search-forward
1007 "\\(\\`\\|\^M\\|\n\\)"
1008 (regexp-quote diary-include-string
)
1009 " \"\\([^\"]*\\)\"")
1011 (let ((diary-file (substitute-in-file-name
1012 (buffer-substring-no-properties
1013 (match-beginning 2) (match-end 2))))
1014 (mark-diary-entries-hook 'mark-included-diary-files
))
1015 (if (file-exists-p diary-file
)
1016 (if (file-readable-p diary-file
)
1018 (mark-diary-entries)
1019 (kill-buffer (find-buffer-visiting diary-file
)))
1021 (message "Can't read included diary file %s" diary-file
)
1024 (message "Can't find included diary file %s" diary-file
)
1026 (goto-char (point-min)))
1028 (defun mark-calendar-days-named (dayname &optional color
)
1029 "Mark all dates in the calendar window that are day DAYNAME of the week.
1030 0 means all Sundays, 1 means all Mondays, and so on."
1032 (set-buffer calendar-buffer
)
1033 (let ((prev-month displayed-month
)
1034 (prev-year displayed-year
)
1035 (succ-month displayed-month
)
1036 (succ-year displayed-year
)
1039 (increment-calendar-month succ-month succ-year
1)
1040 (increment-calendar-month prev-month prev-year -
1)
1041 (setq day
(calendar-absolute-from-gregorian
1042 (calendar-nth-named-day 1 dayname prev-month prev-year
)))
1043 (setq last-day
(calendar-absolute-from-gregorian
1044 (calendar-nth-named-day -
1 dayname succ-month succ-year
)))
1045 (while (<= day last-day
)
1046 (mark-visible-calendar-date (calendar-gregorian-from-absolute day
) color
)
1047 (setq day
(+ day
7))))))
1049 (defun mark-calendar-date-pattern (month day year
&optional color
)
1050 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR.
1051 A value of 0 in any position is a wildcard."
1053 (set-buffer calendar-buffer
)
1054 (let ((m displayed-month
)
1056 (increment-calendar-month m y -
1)
1057 (calendar-for-loop i from
0 to
2 do
1058 (mark-calendar-month m y month day year color
)
1059 (increment-calendar-month m y
1)))))
1061 (defun mark-calendar-month (month year p-month p-day p-year
&optional color
)
1062 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P_DAY/P-YEAR.
1063 A value of 0 in any position of the pattern is a wildcard."
1064 (if (or (and (= month p-month
)
1065 (or (= p-year
0) (= year p-year
)))
1067 (or (= p-year
0) (= year p-year
))))
1070 i from
1 to
(calendar-last-day-of-month month year
) do
1071 (mark-visible-calendar-date (list month i year
) color
))
1072 (mark-visible-calendar-date (list month p-day year
) color
))))
1074 (defun sort-diary-entries ()
1075 "Sort the list of diary entries by time of day."
1076 (setq diary-entries-list
(sort diary-entries-list
'diary-entry-compare
)))
1078 (defun diary-entry-compare (e1 e2
)
1079 "Returns t if E1 is earlier than E2."
1080 (or (calendar-date-compare e1 e2
)
1081 (and (calendar-date-equal (car e1
) (car e2
))
1082 (let* ((ts1 (cadr e1
)) (t1 (diary-entry-time ts1
))
1083 (ts2 (cadr e2
)) (t2 (diary-entry-time ts2
)))
1086 (string-lessp ts1 ts2
)))))))
1088 (defcustom diary-unknown-time
1090 "*Value returned by diary-entry-time when no time is found.
1091 The default value -9999 causes entries with no recognizable time to be placed
1092 before those with times; 9999 would place entries with no recognizable time
1093 after those with times."
1098 (defun diary-entry-time (s)
1099 "Return time at the beginning of the string S as a military-style integer.
1100 For example, returns 1325 for 1:25pm.
1102 Returns `diary-unknown-time' (default value -9999) if no time is recognized.
1103 The recognized forms are XXXX, X:XX, or XX:XX (military time), and XXam,
1104 XXAM, XXpm, XXPM, XX:XXam, XX:XXAM XX:XXpm, or XX:XXPM. A period (.) can
1105 be used instead of a colon (:) to separate the hour and minute parts."
1106 (let ((case-fold-search nil
))
1107 (cond ((string-match ; Military time
1108 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)[:.]?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)"
1110 (+ (* 100 (string-to-int
1111 (substring s
(match-beginning 1) (match-end 1))))
1112 (string-to-int (substring s
(match-beginning 2) (match-end 2)))))
1113 ((string-match ; Hour only XXam or XXpm
1114 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s
)
1115 (+ (* 100 (%
(string-to-int
1116 (substring s
(match-beginning 1) (match-end 1)))
1118 (if (equal ?a
(downcase (aref s
(match-beginning 2))))
1120 ((string-match ; Hour and minute XX:XXam or XX:XXpm
1121 "\\`[ \t\n\\^M]*\\([0-9]?[0-9]\\)[:.]\\([0-9][0-9]\\)\\([ap]\\)m\\>" s
)
1122 (+ (* 100 (%
(string-to-int
1123 (substring s
(match-beginning 1) (match-end 1)))
1125 (string-to-int (substring s
(match-beginning 2) (match-end 2)))
1126 (if (equal ?a
(downcase (aref s
(match-beginning 3))))
1128 (t diary-unknown-time
)))) ; Unrecognizable
1130 (defun list-sexp-diary-entries (date)
1131 "Add sexp entries for DATE from the diary file to `diary-entries-list'.
1132 Also, Make them visible in the diary file. Returns t if any entries were
1135 Sexp diary entries must be prefaced by a `sexp-diary-entry-symbol' (normally
1136 `%%'). The form of a sexp diary entry is
1140 Both ENTRY and DATE are globally available when the SEXP is evaluated. If the
1141 SEXP yields the value nil, the diary entry does not apply. If it yields a
1142 non-nil value, ENTRY will be taken to apply to DATE; if the non-nil value is a
1143 string, that string will be the diary entry in the fancy diary display.
1145 For example, the following diary entry will apply to the 21st of the month
1146 if it is a weekday and the Friday before if the 21st is on a weekend:
1148 &%%(let ((dayname (calendar-day-of-week date))
1149 (day (extract-calendar-day date)))
1151 (and (= day 21) (memq dayname '(1 2 3 4 5)))
1152 (and (memq day '(19 20)) (= dayname 5)))
1153 ) UIUC pay checks deposited
1155 A number of built-in functions are available for this type of diary entry:
1157 %%(diary-date MONTH DAY YEAR &optional MARK) text
1158 Entry applies if date is MONTH, DAY, YEAR if
1159 `european-calendar-style' is nil, and DAY, MONTH, YEAR if
1160 `european-calendar-style' is t. DAY, MONTH, and YEAR
1161 can be lists of integers, the constant t, or an integer.
1162 The constant t means all values. An optional parameter
1163 MARK specifies a face or single-character string to use
1164 when highlighting the day in the calendar.
1166 %%(diary-float MONTH DAYNAME N &optional DAY MARK) text
1167 Entry will appear on the Nth DAYNAME of MONTH.
1168 (DAYNAME=0 means Sunday, 1 means Monday, and so on;
1169 if N is negative it counts backward from the end of
1170 the month. MONTH can be a list of months, a single
1171 month, or t to specify all months. Optional DAY means
1172 Nth DAYNAME of MONTH on or after/before DAY. DAY defaults
1173 to 1 if N>0 and the last day of the month if N<0. An
1174 optional parameter MARK specifies a face or single-character
1175 string to use when highlighting the day in the calendar.
1177 %%(diary-block M1 D1 Y1 M2 D2 Y2 &optional MARK) text
1178 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2,
1179 inclusive. (If `european-calendar-style' is t, the
1180 order of the parameters should be changed to D1, M1, Y1,
1181 D2, M2, Y2.) An optional parameter MARK specifies a face
1182 or single-character string to use when highlighting the
1183 day in the calendar.
1185 %%(diary-anniversary MONTH DAY YEAR &optional MARK) text
1186 Entry will appear on anniversary dates of MONTH DAY, YEAR.
1187 (If `european-calendar-style' is t, the order of the
1188 parameters should be changed to DAY, MONTH, YEAR.) Text
1189 can contain %d or %d%s; %d will be replaced by the number
1190 of years since the MONTH DAY, YEAR and %s will be replaced
1191 by the ordinal ending of that number (that is, `st', `nd',
1192 `rd' or `th', as appropriate. The anniversary of February
1193 29 is considered to be March 1 in a non-leap year. An
1194 optional parameter MARK specifies a face or single-character
1195 string to use when highlighting the day in the calendar.
1197 %%(diary-cyclic N MONTH DAY YEAR &optional MARK) text
1198 Entry will appear every N days, starting MONTH DAY, YEAR.
1199 (If `european-calendar-style' is t, the order of the
1200 parameters should be changed to N, DAY, MONTH, YEAR.) Text
1201 can contain %d or %d%s; %d will be replaced by the number
1202 of repetitions since the MONTH DAY, YEAR and %s will
1203 be replaced by the ordinal ending of that number (that is,
1204 `st', `nd', `rd' or `th', as appropriate. An optional
1205 parameter MARK specifies a face or single-character string
1206 to use when highlighting the day in the calendar.
1208 %%(diary-remind SEXP DAYS &optional MARKING) text
1209 Entry is a reminder for diary sexp SEXP. DAYS is either a
1210 single number or a list of numbers indicating the number(s)
1211 of days before the event that the warning(s) should occur.
1212 If the current date is (one of) DAYS before the event
1213 indicated by EXPR, then a suitable message (as specified
1214 by `diary-remind-message') appears. In addition to the
1215 reminders beforehand, the diary entry also appears on
1216 the date itself. If optional MARKING is non-nil then the
1217 *reminders* are marked on the calendar. Marking of
1218 reminders is independent of whether the entry *itself* is
1219 a marking or nonmarking one.
1221 %%(diary-day-of-year)
1222 Diary entries giving the day of the year and the number of
1223 days remaining in the year will be made every day. Note
1224 that since there is no text, it makes sense only if the
1225 fancy diary display is used.
1228 Diary entries giving the corresponding ISO commercial date
1229 will be made every day. Note that since there is no text,
1230 it makes sense only if the fancy diary display is used.
1232 %%(diary-french-date)
1233 Diary entries giving the corresponding French Revolutionary
1234 date will be made every day. Note that since there is no
1235 text, it makes sense only if the fancy diary display is used.
1237 %%(diary-islamic-date)
1238 Diary entries giving the corresponding Islamic date will be
1239 made every day. Note that since there is no text, it
1240 makes sense only if the fancy diary display is used.
1242 %%(diary-hebrew-date)
1243 Diary entries giving the corresponding Hebrew date will be
1244 made every day. Note that since there is no text, it
1245 makes sense only if the fancy diary display is used.
1247 %%(diary-astro-day-number) Diary entries giving the corresponding
1248 astronomical (Julian) day number will be made every day.
1249 Note that since there is no text, it makes sense only if the
1250 fancy diary display is used.
1252 %%(diary-julian-date) Diary entries giving the corresponding
1253 Julian date will be made every day. Note that since
1254 there is no text, it makes sense only if the fancy diary
1257 %%(diary-sunrise-sunset)
1258 Diary entries giving the local times of sunrise and sunset
1259 will be made every day. Note that since there is no text,
1260 it makes sense only if the fancy diary display is used.
1261 Floating point required.
1263 %%(diary-phases-of-moon)
1264 Diary entries giving the times of the phases of the moon
1265 will be when appropriate. Note that since there is no text,
1266 it makes sense only if the fancy diary display is used.
1267 Floating point required.
1269 %%(diary-yahrzeit MONTH DAY YEAR) text
1270 Text is assumed to be the name of the person; the date is
1271 the date of death on the *civil* calendar. The diary entry
1272 will appear on the proper Hebrew-date anniversary and on the
1273 day before. (If `european-calendar-style' is t, the order
1274 of the parameters should be changed to DAY, MONTH, YEAR.)
1276 %%(diary-rosh-hodesh)
1277 Diary entries will be made on the dates of Rosh Hodesh on
1278 the Hebrew calendar. Note that since there is no text, it
1279 makes sense only if the fancy diary display is used.
1282 Diary entries giving the weekly parasha will be made on
1283 every Saturday. Note that since there is no text, it
1284 makes sense only if the fancy diary display is used.
1287 Diary entries giving the omer count will be made every day
1288 from Passover to Shavuot. Note that since there is no text,
1289 it makes sense only if the fancy diary display is used.
1291 Marking these entries is *extremely* time consuming, so these entries are
1292 best if they are nonmarking."
1293 (let ((s-entry (concat "\\(\\`\\|\^M\\|\n\\)"
1294 (regexp-quote diary-nonmarking-symbol
)
1296 (regexp-quote sexp-diary-entry-symbol
)
1298 entry-found file-glob-attrs marks
)
1299 (goto-char (point-min))
1301 (setq file-glob-attrs
(nth 1 (diary-pull-attrs nil
'()))))
1302 (while (re-search-forward s-entry nil t
)
1304 (let ((sexp-start (point))
1305 sexp entry specifier entry-start line-start
)
1307 (setq sexp
(buffer-substring-no-properties sexp-start
(point)))
1309 (re-search-backward "\^M\\|\n\\|\\`")
1310 (setq line-start
(point)))
1312 (buffer-substring-no-properties (1+ line-start
) (point))
1313 entry-start
(1+ line-start
))
1315 (if (and (or (char-equal (preceding-char) ?\^M
)
1316 (char-equal (preceding-char) ?
\n))
1317 (not (looking-at " \\|\^I")))
1318 (progn;; Diary entry consists only of the sexp
1321 (setq entry-start
(point))
1322 (re-search-forward "\^M\\|\n" nil t
)
1323 (while (looking-at " \\|\^I")
1324 (re-search-forward "\^M\\|\n" nil t
))
1326 (setq entry
(buffer-substring-no-properties entry-start
(point)))
1327 (while (string-match "[\^M]" entry
)
1328 (aset entry
(match-beginning 0) ?
\n )))
1329 (let ((diary-entry (diary-sexp-entry sexp entry date
))
1331 (setq entry
(if (consp diary-entry
)
1336 (subst-char-in-region line-start
(point) ?\^M ?
\n t
)
1337 (if (< 0 (length entry
))
1338 (setq temp
(diary-pull-attrs entry file-glob-attrs
)
1340 marks
(nth 1 temp
)))))
1341 (add-to-diary-list date
1344 (if entry-start
(copy-marker entry-start
)
1347 (setq entry-found
(or entry-found diary-entry
)))))
1350 (defun diary-sexp-entry (sexp entry date
)
1351 "Process a SEXP diary ENTRY for DATE."
1352 (let ((result (if calendar-debug-sexp
1353 (let ((stack-trace-on-error t
))
1354 (eval (car (read-from-string sexp
))))
1356 (eval (car (read-from-string sexp
)))
1359 (message "Bad sexp at line %d in %s: %s"
1362 (narrow-to-region 1 (point))
1363 (goto-char (point-min))
1365 (while (re-search-forward "\n\\|\^M" nil t
)
1366 (setq lines
(1+ lines
)))
1370 (cond ((stringp result
) result
)
1371 ((and (consp result
)
1372 (stringp (cdr result
))) result
)
1376 (defun diary-date (month day year
&optional mark
)
1377 "Specific date(s) diary entry.
1378 Entry applies if date is MONTH, DAY, YEAR if `european-calendar-style' is nil,
1379 and DAY, MONTH, YEAR if `european-calendar-style' is t. DAY, MONTH, and YEAR
1380 can be lists of integers, the constant t, or an integer. The constant t means
1383 An optional parameter MARK specifies a face or single-character string to
1384 use when highlighting the day in the calendar."
1385 (let ((dd (if european-calendar-style
1388 (mm (if european-calendar-style
1391 (m (extract-calendar-month date
))
1392 (y (extract-calendar-year date
))
1393 (d (extract-calendar-day date
)))
1395 (or (and (listp dd
) (memq d dd
))
1398 (or (and (listp mm
) (memq m mm
))
1401 (or (and (listp year
) (memq y year
))
1404 (cons mark entry
))))
1406 (defun diary-block (m1 d1 y1 m2 d2 y2
&optional mark
)
1408 Entry applies if date is between, or on one of, two dates.
1409 The order of the parameters is
1410 M1, D1, Y1, M2, D2, Y2 if `european-calendar-style' is nil, and
1411 D1, M1, Y1, D2, M2, Y2 if `european-calendar-style' is t.
1413 An optional parameter MARK specifies a face or single-character string to
1414 use when highlighting the day in the calendar."
1416 (let ((date1 (calendar-absolute-from-gregorian
1417 (if european-calendar-style
1420 (date2 (calendar-absolute-from-gregorian
1421 (if european-calendar-style
1424 (d (calendar-absolute-from-gregorian date
)))
1425 (if (and (<= date1 d
) (<= d date2
))
1426 (cons mark entry
))))
1428 (defun diary-float (month dayname n
&optional day mark
)
1429 "Floating diary entry--entry applies if date is the nth dayname of month.
1430 Parameters are MONTH, DAYNAME, N. MONTH can be a list of months, the constant
1431 t, or an integer. The constant t means all months. If N is negative, count
1432 backward from the end of the month.
1434 An optional parameter DAY means the Nth DAYNAME on or after/before MONTH DAY.
1435 Optional MARK specifies a face or single-character string to use when
1436 highlighting the day in the calendar."
1437 ;; This is messy because the diary entry may apply, but the date on which it
1438 ;; is based can be in a different month/year. For example, asking for the
1439 ;; first Monday after December 30. For large values of |n| the problem is
1441 (and (= dayname
(calendar-day-of-week date
))
1442 (let* ((m (extract-calendar-month date
))
1443 (d (extract-calendar-day date
))
1444 (y (extract-calendar-year date
))
1445 (limit; last (n>0) or first (n<0) possible base date for entry
1446 (calendar-nth-named-absday (- n
) dayname m y d
))
1447 (last-abs (if (> n
0) limit
(+ limit
6)))
1448 (first-abs (if (> n
0) (- limit
6) limit
))
1449 (last (calendar-gregorian-from-absolute last-abs
))
1450 (first (calendar-gregorian-from-absolute first-abs
))
1451 ; m1, d1 is first possible base date
1452 (m1 (extract-calendar-month first
))
1453 (d1 (extract-calendar-day first
))
1454 (y1 (extract-calendar-year first
))
1455 ; m2, d2 is last possible base date
1456 (m2 (extract-calendar-month last
))
1457 (d2 (extract-calendar-day last
))
1458 (y2 (extract-calendar-year last
)))
1459 (if (or (and (= m1 m2
) ; only possible base dates in one month
1464 (let ((d (or day
(if (> n
0)
1466 (calendar-last-day-of-month m1 y1
)))))
1467 (and (<= d1 d
) (<= d d2
))))
1468 ;; only possible base dates straddle two months
1470 (and (= y1 y2
) (< m1 m2
)))
1472 ;; m1, d1 works as a base date
1478 (<= d1
(or day
(if (> n
0)
1480 (calendar-last-day-of-month m1 y1
)))))
1481 ;; m2, d2 works as a base date
1482 (and (or (eq month t
)
1486 (<= (or day
(if (> n
0)
1488 (calendar-last-day-of-month m2 y2
)))
1490 (cons mark entry
)))))
1493 (defun diary-anniversary (month day year
&optional mark
)
1494 "Anniversary diary entry.
1495 Entry applies if date is the anniversary of MONTH, DAY, YEAR if
1496 `european-calendar-style' is nil, and DAY, MONTH, YEAR if
1497 `european-calendar-style' is t. Diary entry can contain `%d' or `%d%s'; the
1498 %d will be replaced by the number of years since the MONTH DAY, YEAR and the
1499 %s will be replaced by the ordinal ending of that number (that is, `st', `nd',
1500 `rd' or `th', as appropriate. The anniversary of February 29 is considered
1501 to be March 1 in non-leap years.
1503 An optional parameter MARK specifies a face or single-character string to
1504 use when highlighting the day in the calendar."
1505 (let* ((d (if european-calendar-style
1508 (m (if european-calendar-style
1511 (y (extract-calendar-year date
))
1513 (if (and (= m
2) (= d
29) (not (calendar-leap-year-p y
)))
1516 (if (and (> diff
0) (calendar-date-equal (list m d y
) date
))
1517 (cons mark
(format entry diff
(diary-ordinal-suffix diff
))))))
1519 (defun diary-cyclic (n month day year
&optional mark
)
1520 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR.
1521 If `european-calendar-style' is t, parameters are N, DAY, MONTH, YEAR.
1522 ENTRY can contain `%d' or `%d%s'; the %d will be replaced by the number of
1523 repetitions since the MONTH DAY, YEAR and %s will be replaced by the
1524 ordinal ending of that number (that is, `st', `nd', `rd' or `th', as
1527 An optional parameter MARK specifies a face or single-character string to
1528 use when highlighting the day in the calendar."
1529 (let* ((d (if european-calendar-style
1532 (m (if european-calendar-style
1535 (diff (- (calendar-absolute-from-gregorian date
)
1536 (calendar-absolute-from-gregorian
1539 (if (and (>= diff
0) (zerop (% diff n
)))
1540 (cons mark
(format entry cycle
(diary-ordinal-suffix cycle
))))))
1542 (defun diary-ordinal-suffix (n)
1543 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)"
1544 (if (or (memq (% n
100) '(11 12 13))
1547 (aref ["th" "st" "nd" "rd"] (% n
10))))
1549 (defun diary-day-of-year ()
1550 "Day of year and number of days remaining in the year of date diary entry."
1551 (calendar-day-of-year-string date
))
1553 (defcustom diary-remind-message
1555 (if (= 0 (% days
7))
1556 (concat (int-to-string (/ days
7)) (if (= 7 days
) " week" " weeks"))
1557 (concat (int-to-string days
) (if (= 1 days
) " day" " days")))
1560 "*Pseudo-pattern giving form of reminder messages in the fancy diary
1563 Used by the function `diary-remind', a pseudo-pattern is a list of
1564 expressions that can involve the keywords `days' (a number), `date' (a list of
1565 month, day, year), and `diary-entry' (a string)."
1569 (defun diary-remind (sexp days
&optional marking
)
1570 "Provide a reminder of a diary entry.
1571 SEXP is a diary-sexp. DAYS is either a single number or a list of numbers
1572 indicating the number(s) of days before the event that the warning(s) should
1573 occur on. If the current date is (one of) DAYS before the event indicated by
1574 SEXP, then a suitable message (as specified by `diary-remind-message' is
1577 In addition to the reminders beforehand, the diary entry also appears on the
1580 A `diary-nonmarking-symbol' at the beginning of the line of the diary-remind
1581 entry specifies that the diary entry (not the reminder) is non-marking.
1582 Marking of reminders is independent of whether the entry itself is a marking
1583 or nonmarking; if optional parameter MARKING is non-nil then the reminders are
1584 marked on the calendar."
1585 (let ((diary-entry (eval sexp
)))
1587 ;; Diary entry applies on date
1589 (or (not marking-diary-entries
) marking-diary-entry
))
1591 ;; Diary entry may apply to `days' before date
1592 ((and (integerp days
)
1593 (not diary-entry
); Diary entry does not apply to date
1594 (or (not marking-diary-entries
) marking
))
1595 (let ((date (calendar-gregorian-from-absolute
1596 (+ (calendar-absolute-from-gregorian date
) days
))))
1597 (if (setq diary-entry
(eval sexp
))
1598 (mapconcat 'eval diary-remind-message
""))))
1599 ;; Diary entry may apply to one of a list of days before date
1600 ((and (listp days
) days
)
1601 (or (diary-remind sexp
(car days
) marking
)
1602 (diary-remind sexp
(cdr days
) marking
))))))
1604 (defun add-to-diary-list (date string specifier marker
&optional globcolor
)
1605 "Add the entry (DATE STRING SPECIFIER MARKER GLOBCOLOR) to `diary-entries-list'.
1606 Do nothing if DATE or STRING is nil."
1607 (when (and date string
)
1608 (if diary-file-name-prefix
1609 (let ((prefix (funcall diary-file-name-prefix-function
1610 (buffer-file-name))))
1611 (or (string= prefix
"")
1612 (setq string
(format "[%s] %s" prefix string
)))))
1613 (setq diary-entries-list
1614 (append diary-entries-list
1615 (list (list date string specifier marker globcolor
))))))
1617 (defun make-diary-entry (string &optional nonmarking file
)
1618 "Insert a diary entry STRING which may be NONMARKING in FILE.
1619 If omitted, NONMARKING defaults to nil and FILE defaults to `diary-file'."
1620 (let ((pop-up-frames (window-dedicated-p (selected-window))))
1621 (find-file-other-window (substitute-in-file-name (or file diary-file
))))
1623 (goto-char (point-max))
1624 (when (let ((case-fold-search t
))
1625 (search-backward "Local Variables:"
1626 (max (- (point-max) 3000) (point-min))
1633 (if nonmarking diary-nonmarking-symbol
"")
1636 (defun insert-diary-entry (arg)
1637 "Insert a diary entry for the date indicated by point.
1638 Prefix arg will make the entry nonmarking."
1640 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t
) t t
)
1643 (defun insert-weekly-diary-entry (arg)
1644 "Insert a weekly diary entry for the day of the week indicated by point.
1645 Prefix arg will make the entry nonmarking."
1647 (make-diary-entry (calendar-day-name (calendar-cursor-to-date t
))
1650 (defun insert-monthly-diary-entry (arg)
1651 "Insert a monthly diary entry for the day of the month indicated by point.
1652 Prefix arg will make the entry nonmarking."
1654 (let ((calendar-date-display-form
1655 (if european-calendar-style
1658 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t
) t
)
1661 (defun insert-yearly-diary-entry (arg)
1662 "Insert an annual diary entry for the day of the year indicated by point.
1663 Prefix arg will make the entry nonmarking."
1665 (let ((calendar-date-display-form
1666 (if european-calendar-style
1667 '(day " " monthname
)
1668 '(monthname " " day
))))
1669 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t
) t
)
1672 (defun insert-anniversary-diary-entry (arg)
1673 "Insert an anniversary diary entry for the date given by point.
1674 Prefix arg will make the entry nonmarking."
1676 (let ((calendar-date-display-form
1677 (if european-calendar-style
1678 '(day " " month
" " year
)
1679 '(month " " day
" " year
))))
1681 (format "%s(diary-anniversary %s)"
1682 sexp-diary-entry-symbol
1683 (calendar-date-string (calendar-cursor-to-date t
) nil t
))
1686 (defun insert-block-diary-entry (arg)
1687 "Insert a block diary entry for the days between the point and marked date.
1688 Prefix arg will make the entry nonmarking."
1690 (let ((calendar-date-display-form
1691 (if european-calendar-style
1692 '(day " " month
" " year
)
1693 '(month " " day
" " year
)))
1694 (cursor (calendar-cursor-to-date t
))
1695 (mark (or (car calendar-mark-ring
)
1696 (error "No mark set in this buffer")))
1698 (if (< (calendar-absolute-from-gregorian mark
)
1699 (calendar-absolute-from-gregorian cursor
))
1705 (format "%s(diary-block %s %s)"
1706 sexp-diary-entry-symbol
1707 (calendar-date-string start nil t
)
1708 (calendar-date-string end nil t
))
1711 (defun insert-cyclic-diary-entry (arg)
1712 "Insert a cyclic diary entry starting at the date given by point.
1713 Prefix arg will make the entry nonmarking."
1715 (let ((calendar-date-display-form
1716 (if european-calendar-style
1717 '(day " " month
" " year
)
1718 '(month " " day
" " year
))))
1720 (format "%s(diary-cyclic %d %s)"
1721 sexp-diary-entry-symbol
1722 (calendar-read "Repeat every how many days: "
1723 (lambda (x) (> x
0)))
1724 (calendar-date-string (calendar-cursor-to-date t
) nil t
))
1728 (define-derived-mode diary-mode text-mode
1730 "Major mode for editing the diary file."
1731 (set (make-local-variable 'font-lock-defaults
)
1732 '(diary-font-lock-keywords t
)))
1734 (define-derived-mode fancy-diary-display-mode text-mode
1736 "Major mode used while displaying diary entries using Fancy Display."
1737 (set (make-local-variable 'font-lock-defaults
)
1738 '(fancy-diary-font-lock-keywords t
))
1739 (define-key (current-local-map) "q" 'quit-window
))
1742 (defvar fancy-diary-font-lock-keywords
1746 (let ((dayname (diary-name-pattern calendar-day-name-array nil t
))
1747 (monthname (diary-name-pattern calendar-month-name-array nil t
))
1751 (mapconcat 'eval calendar-date-display-form
""))
1752 "\\(\\(: .*\\)\\|\\(\n +.*\\)\\)*\n=+$")
1754 '("^.*anniversary.*$" . font-lock-keyword-face
)
1755 '("^.*birthday.*$" . font-lock-keyword-face
)
1756 '("^.*Yahrzeit.*$" . font-lock-reference-face
)
1757 '("^\\(Erev \\)?Rosh Hodesh.*" . font-lock-function-name-face
)
1758 '("^Day.*omer.*$" . font-lock-builtin-face
)
1759 '("^Parashat.*$" . font-lock-comment-face
)
1760 '("^[ \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\\)?\\)?"
1761 . font-lock-variable-name-face
))
1762 "Keywords to highlight in fancy diary display")
1765 (defun font-lock-diary-sexps (limit)
1766 "Recognize sexp diary entry for font-locking."
1767 (if (re-search-forward
1768 (concat "^" (regexp-quote diary-nonmarking-symbol
)
1769 "?\\(" (regexp-quote sexp-diary-entry-symbol
) "\\)")
1773 (narrow-to-region (point-min) limit
)
1774 (let ((start (point)))
1776 (store-match-data (list start
(point)))
1780 (defun font-lock-diary-date-forms (month-array &optional symbol abbrev-array
)
1781 "Create font-lock patterns for `diary-date-forms' using MONTH-ARRAY.
1782 If given, optional SYMBOL must be a prefix to entries.
1783 If optional ABBREV-ARRAY is present, the abbreviations constructed
1784 from this array by the function `calendar-abbrev-construct' are
1785 matched (with or without a final `.'), in addition to the full month
1787 (let ((dayname (diary-name-pattern calendar-day-name-array
1788 calendar-day-abbrev-array t
))
1789 (monthname (format "\\(%s\\|\\*\\)"
1790 (diary-name-pattern month-array abbrev-array
)))
1791 (month "\\([0-9]+\\|\\*\\)")
1792 (day "\\([0-9]+\\|\\*\\)")
1793 (year "-?\\([0-9]+\\|\\*\\)"))
1794 (mapcar '(lambda (x)
1796 (concat "^" (regexp-quote diary-nonmarking-symbol
) "?"
1797 (if symbol
(regexp-quote symbol
) "") "\\("
1799 ;; If backup, omit first item (backup)
1800 ;; and last item (not part of date)
1801 (if (equal (car x
) 'backup
)
1802 (reverse (cdr (reverse (cdr x
))))
1805 ;; With backup, last item is not part of date
1806 (if (equal (car x
) 'backup
)
1807 (concat "\\)" (eval (car (reverse x
))))
1812 (eval-when-compile (require 'cal-hebrew
)
1813 (require 'cal-islam
))
1815 (defvar diary-font-lock-keywords
1817 (font-lock-diary-date-forms calendar-month-name-array
1818 nil calendar-month-abbrev-array
)
1819 (when (or (memq 'mark-hebrew-diary-entries
1820 nongregorian-diary-marking-hook
)
1821 (memq 'list-hebrew-diary-entries
1822 nongregorian-diary-listing-hook
))
1823 (require 'cal-hebrew
)
1824 (font-lock-diary-date-forms
1825 calendar-hebrew-month-name-array-leap-year
1826 hebrew-diary-entry-symbol
))
1827 (when (or (memq 'mark-islamic-diary-entries
1828 nongregorian-diary-marking-hook
)
1829 (memq 'list-islamic-diary-entries
1830 nongregorian-diary-listing-hook
))
1831 (require 'cal-islam
)
1832 (font-lock-diary-date-forms
1833 calendar-islamic-month-name-array
1834 islamic-diary-entry-symbol
))
1837 (concat "^" (regexp-quote diary-include-string
) ".*$")
1838 'font-lock-keyword-face
)
1840 (concat "^" (regexp-quote diary-nonmarking-symbol
)
1841 "?\\(" (regexp-quote sexp-diary-entry-symbol
) "\\)")
1842 '(1 font-lock-reference-face
))
1844 (concat "^" (regexp-quote diary-nonmarking-symbol
))
1845 'font-lock-reference-face
)
1847 (concat "^" (regexp-quote diary-nonmarking-symbol
)
1848 "?\\(" (regexp-quote hebrew-diary-entry-symbol
) "\\)")
1849 '(1 font-lock-reference-face
))
1851 (concat "^" (regexp-quote diary-nonmarking-symbol
)
1852 "?\\(" (regexp-quote islamic-diary-entry-symbol
) "\\)")
1853 '(1 font-lock-reference-face
))
1854 '(font-lock-diary-sexps . font-lock-keyword-face
)
1855 '("[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)\\(-[0-9]?[0-9]\\([:.]?[0-9][0-9]\\)?\\(am\\|pm\\|AM\\|PM\\)\\)?"
1856 . font-lock-function-name-face
)))
1857 "Forms to highlight in diary-mode")
1860 (provide 'diary-lib
)
1862 ;;; arch-tag: 22dd506e-2e33-410d-9ae1-095a0c1b2010
1863 ;;; diary-lib.el ends here