Fix bug #9221 with memory leak in bidi display.
[emacs.git] / lisp / calendar / diary-lib.el
blob1b980b3b1fa72e08c346ee060ff70003bb131cbd
1 ;;; diary-lib.el --- diary functions
3 ;; Copyright (C) 1989-1990, 1992-1995, 2001-2011
4 ;; Free Software Foundation, Inc.
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
10 ;; This file is part of GNU Emacs.
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 3 of the License, or
15 ;; (at your option) any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; See calendar.el.
29 ;;; Code:
31 (require 'calendar)
32 (eval-and-compile (load "diary-loaddefs" nil t))
34 (defgroup diary nil
35 "Emacs diary."
36 :prefix "diary-"
37 :group 'calendar)
39 (defcustom diary-include-string "#include"
40 "The string indicating inclusion of another file of diary entries.
41 See the documentation for the function `diary-include-other-diary-files'."
42 :type 'string
43 :group 'diary)
45 (defcustom diary-list-include-blanks nil
46 "If nil, do not include days with no diary entry in the list of diary entries.
47 Such days will then not be shown in the fancy diary buffer, even if they
48 are holidays."
49 :type 'boolean
50 :group 'diary)
52 (defcustom diary-face 'diary
53 "Face name to use for diary entries."
54 :type 'face
55 :group 'calendar-faces)
56 (make-obsolete-variable 'diary-face "customize the face `diary' instead."
57 "23.1")
59 (defface diary-anniversary '((t :inherit font-lock-keyword-face))
60 "Face used for anniversaries in the fancy diary display."
61 :version "22.1"
62 :group 'calendar-faces)
64 (defface diary-time '((t :inherit font-lock-variable-name-face))
65 "Face used for times of day in the fancy diary display."
66 :version "22.1"
67 :group 'calendar-faces)
69 (defface diary-button '((((type pc) (class color))
70 (:foreground "lightblue")))
71 "Face used for buttons in the fancy diary display."
72 :version "22.1"
73 :group 'calendar-faces)
75 (define-obsolete-face-alias 'diary-button-face 'diary-button "22.1")
77 ;; Face markup of calendar and diary displays: Any entry line that
78 ;; ends with [foo:value] where foo is a face attribute (except :box
79 ;; :stipple) or with [face:blah] tags, will have these values applied
80 ;; to the calendar and fancy diary displays. These attributes "stack"
81 ;; on calendar displays. File-wide attributes can be defined as
82 ;; follows: the first line matching "^# [tag:value]" defines the value
83 ;; for that particular tag.
84 (defcustom diary-face-attrs
85 '((" *\\[foreground:\\([-a-z]+\\)\\]$" 1 :foreground string)
86 (" *\\[background:\\([-a-z]+\\)\\]$" 1 :background string)
87 (" *\\[width:\\([-a-z]+\\)\\]$" 1 :width symbol)
88 (" *\\[height:\\([.0-9]+\\)\\]$" 1 :height int)
89 (" *\\[weight:\\([-a-z]+\\)\\]$" 1 :weight symbol)
90 (" *\\[slant:\\([-a-z]+\\)\\]$" 1 :slant symbol)
91 (" *\\[underline:\\([-a-z]+\\)\\]$" 1 :underline stringtnil)
92 (" *\\[overline:\\([-a-z]+\\)\\]$" 1 :overline stringtnil)
93 (" *\\[strike-through:\\([-a-z]+\\)\\]$" 1 :strike-through stringtnil)
94 (" *\\[inverse-video:\\([-a-z]+\\)\\]$" 1 :inverse-video tnil)
95 (" *\\[face:\\([-0-9a-z]+\\)\\]$" 1 :face string)
96 (" *\\[font:\\([-a-z0-9]+\\)\\]$" 1 :font string)
97 ;; Unsupported.
98 ;;; (" *\\[box:\\([-a-z]+\\)\\]$" 1 :box)
99 ;;; (" *\\[stipple:\\([-a-z]+\\)\\]$" 1 :stipple)
101 "Alist of (REGEXP SUBEXP ATTRIBUTE TYPE) elements.
102 This is used by `diary-pull-attrs' to fontify certain diary
103 elements. REGEXP is a regular expression to for, and SUBEXP is
104 the numbered sub-expression to extract. `diary-glob-file-regexp-prefix'
105 is pre-pended to REGEXP for file-wide specifiers. ATTRIBUTE
106 specifies which face attribute (e.g. `:foreground') to modify, or
107 that this is a face (`:face') to apply. TYPE is the type of
108 attribute being applied. Available TYPES (see `diary-attrtype-convert')
109 are: `string', `symbol', `int', `tnil', `stringtnil.'"
110 :type '(repeat (list (string :tag "Regular expression")
111 (integer :tag "Sub-expression")
112 (symbol :tag "Attribute (e.g. :foreground)")
113 (choice (const string :tag "A string")
114 (const symbol :tag "A symbol")
115 (const int :tag "An integer")
116 (const tnil :tag "`t' or `nil'")
117 (const stringtnil
118 :tag "A string, `t', or `nil'"))))
119 :group 'diary)
121 (defcustom diary-glob-file-regexp-prefix "^\\#"
122 "Regular expression pre-pended to `diary-face-attrs' for file-wide specifiers."
123 :type 'regexp
124 :group 'diary)
126 (defcustom diary-file-name-prefix nil
127 "Non-nil means prefix each diary entry with the name of the file defining it."
128 :type 'boolean
129 :group 'diary)
131 (defcustom diary-file-name-prefix-function 'identity
132 "The function that will take a diary file name and return the desired prefix."
133 :type 'function
134 :group 'diary)
136 (define-obsolete-variable-alias 'sexp-diary-entry-symbol
137 'diary-sexp-entry-symbol "23.1")
139 (defcustom diary-sexp-entry-symbol "%%"
140 "The string used to indicate a sexp diary entry in `diary-file'.
141 See the documentation for the function `diary-list-sexp-entries'."
142 :type 'string
143 :group 'diary)
145 (defcustom diary-comment-start nil
146 "String marking the start of a comment in the diary, or nil.
147 Nil means there are no comments. The diary does not display
148 parts of entries that are inside comments. You can use comments
149 for whatever you like, e.g. for meta-data that packages such as
150 `appt.el' can use. Comments may not span mutliple lines, and there
151 can be only one comment on any line.
152 See also `diary-comment-end'."
153 :version "24.1"
154 :type '(choice (const :tag "No comment" nil) string)
155 :group 'diary)
157 (defcustom diary-comment-end ""
158 "String marking the end of a comment in the diary.
159 The empty string means comments finish at the end of a line.
160 See also `diary-comment-start'."
161 :version "24.1"
162 :type 'string
163 :group 'diary)
165 (defcustom diary-hook nil
166 "List of functions called after the display of the diary.
167 Used for example by the appointment package - see `appt-activate'."
168 :type 'hook
169 :group 'diary)
171 (define-obsolete-variable-alias 'diary-display-hook 'diary-display-function
172 "23.1")
174 (defcustom diary-display-function 'diary-fancy-display
175 "Function used to display the diary.
176 The two standard options are `diary-fancy-display' and `diary-simple-display'.
178 For historical reasons, `nil' is the same as `diary-simple-display'
179 \(so you must use `ignore' for no display). Also for historical
180 reasons, this variable can be a list of functions to run. These
181 uses are not recommended and may be removed at some point.
183 When this function is called, the variable `diary-entries-list'
184 is a list, in order by date, of all relevant diary entries in the
185 form of ((MONTH DAY YEAR) STRING), where string is the diary
186 entry for the given date. This can be used, for example, to
187 produce a different buffer for display (perhaps combined with
188 holidays), or hard copy output."
189 :type '(choice (const diary-fancy-display :tag "Fancy display")
190 (const diary-simple-display :tag "Basic display")
191 (const ignore :tag "No display")
192 (const nil :tag "Obsolete way to choose basic display")
193 (hook :tag "Obsolete form with list of display functions"))
194 :initialize 'custom-initialize-default
195 :set 'diary-set-maybe-redraw
196 :version "23.2" ; simple->fancy
197 :group 'diary)
199 (define-obsolete-variable-alias 'list-diary-entries-hook
200 'diary-list-entries-hook "23.1")
202 (defcustom diary-list-entries-hook nil
203 "List of functions called after diary file is culled for relevant entries.
204 You might wish to add `diary-include-other-diary-files', in which case
205 you will probably also want to add `diary-mark-included-diary-files' to
206 `diary-mark-entries-hook'. For example, you could use
208 (setq diary-display-function 'diary-fancy-display)
209 (add-hook 'diary-list-entries-hook 'diary-include-other-diary-files)
210 (add-hook 'diary-list-entries-hook 'diary-sort-entries t)
212 in your `.emacs' file to cause the fancy diary buffer to be displayed with
213 diary entries from various included files, each day's entries sorted into
214 lexicographic order. Note how the sort function is placed last,
215 so that it can sort the entries included from other files.
217 This hook runs after `diary-nongregorian-listing-hook'. These two hooks
218 differ only if you are using included diary files. In that case,
219 `diary-nongregorian-listing-hook' runs for each file, whereas
220 `diary-list-entries-hook' only runs once, for the main diary file.
221 So for example, to sort the complete list of diary entries you would
222 use the list-entries hook, whereas to process e.g. Islamic entries in
223 the main file and all included files, you would use the nongregorian hook."
224 :type 'hook
225 :options '(diary-include-other-diary-files diary-sort-entries)
226 :group 'diary)
228 (define-obsolete-variable-alias 'mark-diary-entries-hook
229 'diary-mark-entries-hook "23.1")
231 (defcustom diary-mark-entries-hook nil
232 "List of functions called after marking diary entries in the calendar.
233 You might wish to add `diary-mark-included-diary-files', in which case
234 you will probably also want to add `diary-include-other-diary-files' to
235 `diary-list-entries-hook'.
237 This hook runs after `diary-nongregorian-marking-hook'. These two hooks
238 differ only if you are using included diary files. In that case,
239 `diary-nongregorian-marking-hook' runs for each file, whereas
240 `diary-mark-entries-hook' only runs once, for the main diary file."
241 :type 'hook
242 :options '(diary-mark-included-diary-files)
243 :group 'diary)
245 (define-obsolete-variable-alias 'nongregorian-diary-listing-hook
246 'diary-nongregorian-listing-hook "23.1")
248 (defcustom diary-nongregorian-listing-hook nil
249 "List of functions called for listing diary file and included files.
250 As the files are processed for diary entries, these functions are used
251 to cull relevant entries. You can use any or all of
252 `diary-bahai-list-entries', `diary-hebrew-list-entries', and
253 `diary-islamic-list-entries'. The documentation for these functions
254 describes the style of such diary entries.
256 You can use this hook for other functions as well, if you want them to
257 be run on the main diary file and any included diary files. Otherwise,
258 use `diary-list-entries-hook', which runs only for the main diary file."
259 :type 'hook
260 :options '(diary-bahai-list-entries
261 diary-hebrew-list-entries
262 diary-islamic-list-entries)
263 :group 'diary)
265 (define-obsolete-variable-alias 'nongregorian-diary-marking-hook
266 'diary-nongregorian-marking-hook "23.1")
268 (defcustom diary-nongregorian-marking-hook nil
269 "List of functions called for marking diary file and included files.
270 As the files are processed for diary entries, these functions are used
271 to cull relevant entries. You can use any or all of
272 `diary-bahai-mark-entries', `diary-hebrew-mark-entries' and
273 `diary-islamic-mark-entries'. The documentation for these functions
274 describes the style of such diary entries.
276 You can use this hook for other functions as well, if you want them to
277 be run on the main diary file and any included diary files. Otherwise,
278 use `diary-mark-entries-hook', which runs only for the main diary file."
279 :type 'hook
280 :options '(diary-bahai-mark-entries
281 diary-hebrew-mark-entries
282 diary-islamic-mark-entries)
283 :group 'diary)
285 (define-obsolete-variable-alias 'print-diary-entries-hook
286 'diary-print-entries-hook "23.1")
288 (defcustom diary-print-entries-hook 'lpr-buffer
289 "Run by `diary-print-entries' after preparing a temporary diary buffer.
290 The buffer shows only the diary entries currently visible in the
291 diary buffer. The default just does the printing. Other uses
292 might include, for example, rearranging the lines into order by
293 day and time, saving the buffer instead of deleting it, or
294 changing the function used to do the printing."
295 :type 'hook
296 :group 'diary)
298 (defcustom diary-unknown-time -9999
299 "Value returned by `diary-entry-time' when no time is found.
300 The default value -9999 causes entries with no recognizable time
301 to be placed before those with times; 9999 would place entries
302 with no recognizable time after those with times."
303 :type 'integer
304 :group 'diary
305 :version "20.3")
307 (defcustom diary-mail-addr
308 (or (bound-and-true-p user-mail-address) "")
309 "Email address that `diary-mail-entries' will send email to."
310 :group 'diary
311 :type 'string
312 :version "20.3")
314 (defcustom diary-mail-days 7
315 "Default number of days for `diary-mail-entries' to check."
316 :group 'diary
317 :type 'integer
318 :version "20.3")
320 (defcustom diary-remind-message
321 '("Reminder: Only "
322 (if (zerop (% days 7))
323 (format "%d week%s" (/ days 7) (if (= 7 days) "" "s"))
324 (format "%d day%s" days (if (= 1 days) "" "s")))
325 " until "
326 diary-entry)
327 "Pseudo-pattern giving form of reminder messages in the fancy diary display.
329 Used by the function `diary-remind', a pseudo-pattern is a list of
330 expressions that can involve the keywords `days' (a number), `date'
331 \(a list of month, day, year), and `diary-entry' (a string)."
332 :type 'sexp
333 :group 'diary)
335 (define-obsolete-variable-alias 'abbreviated-calendar-year
336 'diary-abbreviated-year-flag "23.1")
338 (defcustom diary-abbreviated-year-flag t
339 "Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
340 This applies to the Gregorian, Hebrew, Islamic, and Baha'i calendars.
341 When the current century is added to a two-digit year, if the result
342 is more than 50 years in the future, the previous century is assumed.
343 If the result is more than 50 years in the past, the next century is assumed.
344 If this variable is nil, years must be written in full."
345 :type 'boolean
346 :group 'diary)
348 (defun diary-outlook-format-1 (body)
349 "Return a replace-match template for an element of `diary-outlook-formats'.
350 Returns a string using match elements 1-5, where:
351 1 = month name, 2 = day, 3 = year, 4 = time, 5 = location; also uses
352 %s = message subject. BODY is the string from which the matches derive."
353 (let* ((monthname (match-string 1 body))
354 (day (match-string 2 body))
355 (year (match-string 3 body))
356 ;; Blech.
357 (month (catch 'found
358 (dotimes (i (length calendar-month-name-array))
359 (if (string-equal (aref calendar-month-name-array i)
360 monthname)
361 (throw 'found (1+ i))))
362 nil)))
363 ;; If we could convert the monthname to a numeric month, we can
364 ;; use the standard function calendar-date-string.
365 (concat (if month
366 (calendar-date-string (list month (string-to-number day)
367 (string-to-number year)))
368 (cond ((eq calendar-date-style 'iso) "\\3 \\1 \\2") ; YMD
369 ((eq calendar-date-style 'european) "\\2 \\1 \\3") ; DMY
370 (t "\\1 \\2 \\3"))) ; MDY
371 "\n \\4 %s, \\5")))
372 ;; TODO Sometimes the time is in a different time-zone to the one you
373 ;; are in. Eg in PST, you might still get an email referring to:
374 ;; "7:00 PM-8:00 PM. Greenwich Standard Time".
375 ;; Note that it doesn't use a standard abbreviation for the timezone,
376 ;; or anything helpful like that.
377 ;; Sigh, this could cause the meeting to even be on a different day
378 ;; to that given in the When: string.
379 ;; These things seem to come in a multipart mail with a calendar part,
380 ;; it's probably better to use that rather than this whole thing.
381 ;; So this is unlikely to get improved.
383 ;; TODO Is the format of these messages actually documented anywhere?
384 (defcustom diary-outlook-formats
385 '(;; When: Tuesday, November 9, 2010 7:00 PM-8:00 PM. Greenwich Standard Time
386 ;; Where: Meeting room B
387 ("[ \t\n]*When: [[:alpha:]]+, \\([[:alpha:]]+\\) \\([0-9][0-9]*\\), \
388 \\([0-9]\\{4\\}\\),? \\(.+\\)\n\
389 \\(?:Where: \\(.+\n\\)\\)?" . diary-outlook-format-1))
390 "Alist of regexps matching message text and replacement text.
392 The regexp must match the start of the message text containing an
393 appointment, but need not include a leading `^'. If it matches the
394 current message, a diary entry is made from the corresponding
395 template. If the template is a string, it should be suitable for
396 passing to `replace-match', and so will have occurrences of `\\D' to
397 substitute the match for the Dth subexpression. It must also contain
398 a single `%s' which will be replaced with the text of the message's
399 Subject field. Any other `%' characters must be doubled, so that the
400 template can be passed to `format'.
402 If the template is actually a function, it is called with the message
403 body text as argument, and may use `match-string' etc. to make a
404 template following the rules above."
405 :type '(alist :key-type (regexp :tag "Regexp matching time/place")
406 :value-type (choice
407 (string :tag "Template for entry")
408 (function :tag
409 "Unary function providing template")))
410 :version "22.1"
411 :group 'diary)
413 (defvar diary-header-line-flag)
414 (defvar diary-header-line-format)
416 (defun diary-set-header (symbol value)
417 "Set SYMBOL's value to VALUE, and redraw the diary header if necessary."
418 (let ((oldvalue (symbol-value symbol))
419 (dbuff (and diary-file (find-buffer-visiting diary-file))))
420 (custom-set-default symbol value)
421 (and dbuff
422 (not (equal value oldvalue))
423 (with-current-buffer dbuff
424 (if (eq major-mode 'diary-mode)
425 (setq header-line-format (and diary-header-line-flag
426 diary-header-line-format)))))))
428 ;; This can be removed once the kill/yank treatment of invisible text
429 ;; (see etc/TODO) is fixed. -- gm
430 (defcustom diary-header-line-flag t
431 "Non-nil means `diary-simple-display' will show a header line.
432 The format of the header is specified by `diary-header-line-format'."
433 :group 'diary
434 :type 'boolean
435 :initialize 'custom-initialize-default
436 :set 'diary-set-header
437 :version "22.1")
439 (defvar diary-selective-display nil
440 "Internal diary variable; non-nil if some diary text is hidden.")
442 (defcustom diary-header-line-format
443 '(:eval (calendar-string-spread
444 (list (if diary-selective-display
445 "Some text is hidden - press \"s\" in calendar \
446 before edit/copy"
447 "Diary"))
448 ?\s (window-width)))
449 "Format of the header line displayed by `diary-simple-display'.
450 Only used if `diary-header-line-flag' is non-nil."
451 :group 'diary
452 :type 'sexp
453 :initialize 'custom-initialize-default
454 :set 'diary-set-header
455 :version "23.3") ; frame-width -> window-width
457 ;; The first version of this also checked for diary-selective-display
458 ;; in the non-fancy case. This was an attempt to distinguish between
459 ;; displaying the diary and just visiting the diary file. However,
460 ;; when using fancy diary, calling diary when there are no entries to
461 ;; display does not create the fancy buffer, nor does it set
462 ;; diary-selective-display in the diary buffer. This means some
463 ;; customizations will not take effect, eg:
464 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-03/msg00466.html
465 ;; So the check for diary-selective-display was dropped. This means the
466 ;; diary will be displayed if one customizes a diary variable while
467 ;; just visiting the diary-file. This is i) unlikely, and ii) no great loss.
468 ;;;###cal-autoload
469 (defun diary-live-p ()
470 "Return non-nil if the diary is being displayed."
471 (or (get-buffer diary-fancy-buffer)
472 (and diary-file (find-buffer-visiting diary-file))))
474 ;;;###cal-autoload
475 (defun diary-set-maybe-redraw (symbol value)
476 "Set SYMBOL's value to VALUE, and redraw the diary if necessary.
477 Redraws the diary if it is being displayed (note this is not the same as
478 just visiting the `diary-file'), and SYMBOL's value is to be changed."
479 (let ((oldvalue (symbol-value symbol)))
480 (custom-set-default symbol value)
481 (and (not (equal value oldvalue))
482 (diary-live-p)
483 ;; Note this assumes diary was called without prefix arg.
484 (diary))))
486 (define-obsolete-variable-alias 'number-of-diary-entries
487 'diary-number-of-entries "23.1")
489 (defcustom diary-number-of-entries 1
490 "Specifies how many days of diary entries are to be displayed initially.
491 This variable affects the diary display when the command \\[diary] is
492 used, or if the value of the variable `calendar-view-diary-initially-flag'
493 is non-nil. For example, if the default value 1 is used, then only the
494 current day's diary entries will be displayed. If the value 2 is used,
495 then both the current day's and the next day's entries will be displayed.
497 The value can also be a vector such as [0 2 2 2 2 4 1]; this value says
498 to display no diary entries on Sunday, the entries for the current date
499 and the day after on Monday through Thursday, Friday through Monday's
500 entries on Friday, and only Saturday's entries on Saturday.
502 This variable does not affect the diary display with the `d' command
503 from the calendar; in that case, the prefix argument controls the number
504 of days of diary entries displayed."
505 :type '(choice (integer :tag "Entries")
506 (vector :value [0 0 0 0 0 0 0]
507 (integer :tag "Sunday")
508 (integer :tag "Monday")
509 (integer :tag "Tuesday")
510 (integer :tag "Wednesday")
511 (integer :tag "Thursday")
512 (integer :tag "Friday")
513 (integer :tag "Saturday")))
514 :initialize 'custom-initialize-default
515 :set 'diary-set-maybe-redraw
516 :group 'diary)
518 ;;; More user options in calendar.el, holidays.el.
521 (defun diary-check-diary-file ()
522 "Check that the file specified by `diary-file' exists and is readable.
523 If so, return the expanded file name, otherwise signal an error."
524 (if (and diary-file (file-exists-p diary-file))
525 (if (file-readable-p diary-file)
526 diary-file
527 (error "Diary file `%s' is not readable" diary-file))
528 (error "Diary file `%s' does not exist" diary-file)))
530 ;;;###autoload
531 (defun diary (&optional arg)
532 "Generate the diary window for ARG days starting with the current date.
533 If no argument is provided, the number of days of diary entries is governed
534 by the variable `diary-number-of-entries'. A value of ARG less than 1
535 does nothing. This function is suitable for execution in a `.emacs' file."
536 (interactive "P")
537 (diary-check-diary-file)
538 (diary-list-entries (calendar-current-date)
539 (if arg (prefix-numeric-value arg))))
541 ;;;###cal-autoload
542 (defun diary-view-entries (&optional arg)
543 "Prepare and display a buffer with diary entries.
544 Searches the file named in `diary-file' for entries that match
545 ARG days starting with the date indicated by the cursor position
546 in the displayed three-month calendar."
547 (interactive "p")
548 (diary-check-diary-file)
549 (diary-list-entries (calendar-cursor-to-date t) arg))
552 ;;;###cal-autoload
553 (defun diary-view-other-diary-entries (arg dfile)
554 "Prepare and display buffer of diary entries from an alternative diary file.
555 Searches for entries that match ARG days, starting with the date indicated
556 by the cursor position in the displayed three-month calendar.
557 DFILE specifies the file to use as the diary file."
558 (interactive
559 (list (prefix-numeric-value current-prefix-arg)
560 (read-file-name "Enter diary file name: " default-directory nil t)))
561 (let ((diary-file dfile))
562 (diary-view-entries arg)))
564 ;;;###cal-autoload
565 (define-obsolete-function-alias 'view-other-diary-entries
566 'diary-view-other-diary-entries "23.1")
568 (defvar diary-syntax-table
569 (let ((st (copy-syntax-table (standard-syntax-table))))
570 (modify-syntax-entry ?* "w" st)
571 (modify-syntax-entry ?: "w" st)
573 "The syntax table used when parsing dates in the diary file.
574 It is the standard syntax table used in Fundamental mode, but with the
575 syntax of `*' and `:' changed to be word constituents.")
577 (defun diary-attrtype-convert (attrvalue type)
578 "Convert string ATTRVALUE to TYPE appropriate for a face description.
579 Valid TYPEs are: string, symbol, int, stringtnil, tnil."
580 (cond ((eq type 'string) attrvalue)
581 ((eq type 'symbol) (intern-soft attrvalue))
582 ((eq type 'int) (string-to-number attrvalue))
583 ((eq type 'stringtnil)
584 (cond ((string-equal "t" attrvalue) t)
585 ((string-equal "nil" attrvalue) nil)
586 (t attrvalue)))
587 ((eq type 'tnil) (string-equal "t" attrvalue))))
589 (defun diary-pull-attrs (entry fileglobattrs)
590 "Search for matches for regexps from `diary-face-attrs'.
591 If ENTRY is nil, searches from the start of the current buffer, and
592 prepends all regexps with `diary-glob-file-regexp-prefix'.
593 If ENTRY is a string, search for matches in that string, and remove them.
594 Returns a list of ENTRY followed by (ATTRIBUTE VALUE) pairs.
595 When ENTRY is non-nil, FILEGLOBATTRS forms the start of the (ATTRIBUTE VALUE)
596 pairs."
597 (let (regexp regnum attrname attrname attrvalue type ret-attr)
598 (if (null entry)
599 (save-excursion
600 (dolist (attr diary-face-attrs)
601 ;; FIXME inefficient searching.
602 (goto-char (point-min))
603 (setq regexp (concat diary-glob-file-regexp-prefix (car attr))
604 regnum (cadr attr)
605 attrname (nth 2 attr)
606 type (nth 3 attr)
607 attrvalue (if (re-search-forward regexp nil t)
608 (match-string-no-properties regnum)))
609 (and attrvalue
610 (setq attrvalue (diary-attrtype-convert attrvalue type))
611 (setq ret-attr (append ret-attr
612 (list attrname attrvalue))))))
613 (setq ret-attr fileglobattrs)
614 (dolist (attr diary-face-attrs)
615 (setq regexp (car attr)
616 regnum (cadr attr)
617 attrname (nth 2 attr)
618 type (nth 3 attr)
619 attrvalue nil)
620 ;; If multiple matches, replace all, use the last (which may
621 ;; be the first instance in the line, if the regexp is
622 ;; anchored with $).
623 (while (string-match regexp entry)
624 (setq attrvalue (match-string-no-properties regnum entry)
625 entry (replace-match "" t t entry)))
626 (and attrvalue
627 (setq attrvalue (diary-attrtype-convert attrvalue type))
628 (setq ret-attr (append ret-attr (list attrname attrvalue))))))
629 (list entry ret-attr)))
633 (defvar diary-modify-entry-list-string-function nil
634 "Function applied to entry string before putting it into the entries list.
635 Can be used by programs integrating a diary list into other buffers (e.g.
636 org.el and planner.el) to modify the string or add properties to it.
637 The function takes a string argument and must return a string.")
639 (defvar diary-entries-list) ; bound in diary-list-entries
641 (defun diary-add-to-list (date string specifier &optional marker
642 globcolor literal)
643 "Add an entry to `diary-entries-list'.
644 Do nothing if DATE or STRING are nil. DATE is the (MONTH DAY
645 YEAR) for which the entry applies; STRING is the text of the
646 entry as it will appear in the diary (i.e. with any format
647 strings such as \"%d\" expanded); SPECIFIER is the date part of
648 the entry as it appears in the diary-file; LITERAL is the entry
649 as it appears in the diary-file (i.e. before expansion).
650 If LITERAL is nil, it is taken to be the same as STRING.
652 The entry is added to the list as (DATE STRING SPECIFIER LOCATOR
653 GLOBCOLOR), where LOCATOR has the form (MARKER FILENAME LITERAL),
654 FILENAME being the file containing the diary entry.
656 Modifies STRING using `diary-modify-entry-list-string-function', if non-nil.
657 Also removes the region between `diary-comment-start' and
658 `diary-comment-end', if the former is non-nil."
659 (when (and date string)
660 ;; b-f-n is nil if we are visiting an include file in a temp-buffer.
661 (let ((dfile (or (buffer-file-name) diary-file))
662 cstart)
663 (if diary-file-name-prefix
664 (let ((prefix (funcall diary-file-name-prefix-function dfile)))
665 (or (string-equal prefix "")
666 (setq string (format "[%s] %s" prefix string)))))
667 (and diary-modify-entry-list-string-function
668 (setq string (funcall diary-modify-entry-list-string-function
669 string)))
670 (when (and diary-comment-start
671 (string-match (setq cstart (regexp-quote diary-comment-start))
672 string))
673 ;; Preserve the value with the comments.
674 (or literal (setq literal string))
675 ;; Handles multiple comments per entry, so long as each is on
676 ;; a single line, and each line has no more than one comment.
677 (setq string (replace-regexp-in-string
678 (format "%s.*%s" cstart (regexp-quote diary-comment-end))
679 "" string)))
680 (setq diary-entries-list
681 (append diary-entries-list
682 (list (list date string specifier
683 (list marker dfile literal)
684 globcolor)))))))
686 (define-obsolete-function-alias 'add-to-diary-list 'diary-add-to-list "23.1")
688 (defun diary-list-entries-2 (date mark globattr list-only
689 &optional months symbol gdate)
690 "Internal subroutine of `diary-list-entries'.
691 Find diary entries applying to DATE, by searching from point-min for
692 each element of `diary-date-forms'. MARK indicates an entry is non-marking.
693 GLOBATTR is the list of global file attributes. If LIST-ONLY is
694 non-nil, don't change the buffer, only return a list of entries.
695 Optional array MONTHS replaces `calendar-month-name-array', and
696 means months cannot be abbreviated. Optional string SYMBOL marks diary
697 entries of the desired type. If DATE is not Gregorian, then the
698 Gregorian equivalent should be provided via GDATE. Returns non-nil if
699 any entries were found."
700 (let* ((month (calendar-extract-month date))
701 (day (calendar-extract-day date))
702 (year (calendar-extract-year date))
703 (dayname (format "%s\\|%s\\.?" (calendar-day-name date)
704 (calendar-day-name date 'abbrev)))
705 (calendar-month-name-array (or months calendar-month-name-array))
706 (monthname (format "\\*\\|%s%s" (calendar-month-name month)
707 (if months ""
708 (format "\\|%s\\.?"
709 (calendar-month-name month 'abbrev)))))
710 (month (format "\\*\\|0*%d" month))
711 (day (format "\\*\\|0*%d" day))
712 (year (format "\\*\\|0*%d%s" year
713 (if diary-abbreviated-year-flag
714 (format "\\|%02d" (% year 100))
715 "")))
716 (case-fold-search t)
717 entry-found)
718 (dolist (date-form diary-date-forms)
719 (let ((backup (when (eq (car date-form) 'backup)
720 (setq date-form (cdr date-form))
722 ;; date-form uses day etc as set above.
723 (regexp (format "^%s?%s\\(%s\\)" (regexp-quote mark)
724 (if symbol (regexp-quote symbol) "")
725 (mapconcat 'eval date-form "\\)\\(?:")))
726 entry-start date-start temp)
727 (goto-char (point-min))
728 (while (re-search-forward regexp nil t)
729 (if backup (re-search-backward "\\<" nil t))
730 ;; regexp moves us past the end of date, onto the next line.
731 ;; Trailing whitespace after date not allowed (see diary-file).
732 (if (and (bolp) (not (looking-at "[ \t]")))
733 ;; Diary entry that consists only of date.
734 (backward-char 1)
735 ;; Found a nonempty diary entry--make it
736 ;; visible and add it to the list.
737 (setq date-start (line-end-position 0))
738 ;; Actual entry starts on the next-line?
739 (if (looking-at "[ \t]*\n[ \t]") (forward-line 1))
740 (setq entry-found t
741 entry-start (point))
742 (forward-line 1)
743 (while (looking-at "[ \t]") ; continued entry
744 (forward-line 1))
745 (unless (and (eobp) (not (bolp)))
746 (backward-char 1))
747 (unless list-only
748 (remove-overlays date-start (point) 'invisible 'diary))
749 (setq temp (diary-pull-attrs
750 (buffer-substring-no-properties
751 entry-start (point)) globattr))
752 (diary-add-to-list
753 (or gdate date) (car temp)
754 (buffer-substring-no-properties (1+ date-start) (1- entry-start))
755 (copy-marker entry-start) (cadr temp))))))
756 entry-found))
758 (defvar original-date) ; from diary-list-entries
759 (defvar file-glob-attrs)
760 (defvar list-only)
761 (defvar number)
763 (defun diary-list-entries-1 (months symbol absfunc)
764 "List diary entries of a certain type.
765 MONTHS is an array of month names. SYMBOL marks diary entries of the type
766 in question. ABSFUNC is a function that converts absolute dates to dates
767 of the appropriate type."
768 (let ((gdate original-date))
769 (dotimes (_idummy number)
770 (diary-list-entries-2
771 (funcall absfunc (calendar-absolute-from-gregorian gdate))
772 diary-nonmarking-symbol file-glob-attrs list-only months symbol gdate)
773 (setq gdate
774 (calendar-gregorian-from-absolute
775 (1+ (calendar-absolute-from-gregorian gdate))))))
776 (goto-char (point-min)))
778 (defvar diary-included-files nil
779 "List of any diary files included in the last call to `diary-list-entries'.
780 Or to `diary-mark-entries'.")
782 (defun diary-list-entries (date number &optional list-only)
783 "Create and display a buffer containing the relevant lines in `diary-file'.
784 Selects entries for NUMBER days starting with date DATE. Hides any
785 other entries using overlays. If NUMBER is less than 1, this function
786 does nothing.
788 Returns a list of all relevant diary entries found.
789 The list entries have the form ((MONTH DAY YEAR) STRING SPECIFIER) where
790 \(MONTH DAY YEAR) is the date of the entry, STRING is the entry text, and
791 SPECIFIER is the applicability. If the variable `diary-list-include-blanks'
792 is non-nil, this list includes a dummy diary entry consisting of the empty
793 string for a date with no diary entries.
795 If producing entries for multiple dates (i.e., NUMBER > 1), then
796 this function normally returns the entries from any given diary
797 file in date order. The entries for any given day are in the
798 order in which they were found in the file, not necessarily in
799 time-of-day order. Note that any functions present on the
800 hooks (see below) may add entries, or change the order. For
801 example, `diary-include-other-diary-files' adds entries from any
802 include files that it finds to the end of the original list. The
803 entries from each file will be in date order, but the overall
804 list will not be. If you want the entire list to be in time
805 order, add `diary-sort-entries' to the end of `diary-list-entries-hook'.
807 After preparing the initial list, hooks run in this order:
809 `diary-nongregorian-listing-hook' runs for the main diary file,
810 and each included file. For example, this is the appropriate hook
811 to process Islamic entries in all diary files.
813 `diary-list-entries-hook' runs once only, for the main diary file.
814 For example, this is appropriate for sorting all the entries.
815 If not using include files, there is no difference from the previous
816 hook.
818 `diary-hook' runs last, after the diary is displayed.
819 This is used e.g. by `appt-check'.
821 Functions called by these hooks may use the variables ORIGINAL-DATE
822 and NUMBER, which are the arguments with which this function was called.
823 Note that hook functions should _not_ use DATE, but ORIGINAL-DATE.
824 \(Sexp diary entries may use DATE - see `diary-list-sexp-entries'.)
826 This function displays the list using `diary-display-function', unless
827 LIST-ONLY is non-nil, in which case it just returns the list."
828 (unless number
829 (setq number (if (vectorp diary-number-of-entries)
830 (aref diary-number-of-entries (calendar-day-of-week date))
831 diary-number-of-entries)))
832 (when (> number 0)
833 (let* ((original-date date) ; save for possible use in the hooks
834 (date-string (calendar-date-string date))
835 (diary-buffer (find-buffer-visiting diary-file))
836 ;; Dynamically bound in diary-include-files.
837 (d-incp (and (boundp 'diary-including) diary-including))
838 diary-entries-list file-glob-attrs temp-buff)
839 (unless d-incp
840 (setq diary-included-files nil)
841 (message "Preparing diary..."))
842 (unwind-protect
843 (with-current-buffer (or diary-buffer
844 (if list-only
845 (setq temp-buff (generate-new-buffer
846 " *diary-temp*"))
847 (find-file-noselect diary-file t)))
848 (if diary-buffer
849 (or (verify-visited-file-modtime diary-buffer)
850 (revert-buffer t t)))
851 (if temp-buff
852 ;; If including, caller has already verified it is readable.
853 (insert-file-contents diary-file)
854 ;; Setup things like the header-line-format and invisibility-spec.
855 (if (eq major-mode (default-value 'major-mode))
856 (diary-mode)
857 ;; This kludge is to make customizations to
858 ;; diary-header-line-flag after diary has been displayed
859 ;; take effect. Unconditionally calling (diary-mode)
860 ;; clobbers file local variables.
861 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-03/msg00363.html
862 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-04/msg00404.html
863 (if (eq major-mode 'diary-mode)
864 (setq header-line-format (and diary-header-line-flag
865 diary-header-line-format)))))
866 ;; d-s-p is passed to the diary display function.
867 (let ((diary-saved-point (point)))
868 (save-excursion
869 (save-restriction
870 (widen) ; bug#5093
871 (setq file-glob-attrs (cadr (diary-pull-attrs nil "")))
872 (with-syntax-table diary-syntax-table
873 (goto-char (point-min))
874 (unless list-only
875 (let ((ol (make-overlay (point-min) (point-max) nil t nil)))
876 (set (make-local-variable 'diary-selective-display) t)
877 (overlay-put ol 'invisible 'diary)
878 (overlay-put ol 'evaporate t)))
879 (dotimes (_idummy number)
880 (let ((sexp-found (diary-list-sexp-entries date))
881 (entry-found (diary-list-entries-2
882 date diary-nonmarking-symbol
883 file-glob-attrs list-only)))
884 (if diary-list-include-blanks
885 (or sexp-found entry-found
886 (diary-add-to-list date "" "" "" "")))
887 (setq date
888 (calendar-gregorian-from-absolute
889 (1+ (calendar-absolute-from-gregorian date)))))))
890 (goto-char (point-min))
891 ;; Although it looks like list-entries-hook runs
892 ;; every time, diary-include-other-diary-files
893 ;; binds it to nil (essentially) when it runs
894 ;; in included files.
895 (run-hooks 'diary-nongregorian-listing-hook
896 'diary-list-entries-hook)
897 ;; We could make this explicit:
898 ;;; (run-hooks 'diary-nongregorian-listing-hook)
899 ;;; (if d-incp
900 ;;; (diary-include-other-diary-files) ; recurse
901 ;;; (run-hooks 'diary-list-entries-hook))
902 (unless list-only
903 (if (and diary-display-function
904 (listp diary-display-function))
905 ;; Backwards compatibility.
906 (run-hooks 'diary-display-function)
907 (funcall (or diary-display-function
908 'diary-simple-display))))
909 (run-hooks 'diary-hook)))))
910 (and temp-buff (buffer-name temp-buff) (kill-buffer temp-buff)))
911 (or d-incp (message "Preparing diary...done"))
912 diary-entries-list)))
914 (defun diary-unhide-everything ()
915 "Show all invisible text in the diary."
916 (kill-local-variable 'diary-selective-display)
917 (save-restriction ; bug#5477
918 (widen)
919 (remove-overlays (point-min) (point-max) 'invisible 'diary))
920 (kill-local-variable 'mode-line-format))
922 (defvar original-date) ; bound in diary-list-entries
923 ;(defvar number) ; already declared above
925 (defun diary-include-files (&optional mark)
926 "Process diary entries from included diary files.
927 By default, lists included entries, but if optional argument MARK is non-nil
928 marks entries instead.
929 For example, this enables you to share common diary files.
930 Specify include files using lines matching `diary-include-string', e.g.
931 #include \"filename\"
932 This is recursive; that is, included files may include other files."
933 (goto-char (point-min))
934 (while (re-search-forward
935 (format "^%s \"\\([^\"]*\\)\"" (regexp-quote diary-include-string))
936 nil t)
937 (let ((diary-file (match-string-no-properties 1))
938 (diary-mark-entries-hook 'diary-mark-included-diary-files)
939 (diary-list-entries-hook 'diary-include-other-diary-files)
940 (diary-including t)
941 diary-hook diary-list-include-blanks efile)
942 (if (file-exists-p diary-file)
943 (if (file-readable-p diary-file)
944 (if (member (setq efile (expand-file-name diary-file))
945 diary-included-files)
946 (error "Recursive diary include for %s" diary-file)
947 (setq diary-included-files
948 (append diary-included-files (list efile)))
949 (if mark
950 (diary-mark-entries)
951 (setq diary-entries-list
952 (append diary-entries-list
953 (diary-list-entries original-date number t)))))
954 (beep)
955 (message "Can't read included diary file %s" diary-file)
956 (sleep-for 2))
957 (beep)
958 (message "Can't find included diary file %s" diary-file)
959 (sleep-for 2))))
960 (goto-char (point-min)))
962 (defun diary-include-other-diary-files ()
963 "Add diary entries from included diary files to `diary-entries-list'.
964 To use, add this function to `diary-list-entries-hook'.
965 For details, see `diary-include-files'.
966 See also `diary-mark-included-diary-files'."
967 (diary-include-files))
969 (define-obsolete-function-alias 'include-other-diary-files
970 'diary-include-other-diary-files "23.1")
972 (defvar date-string) ; bound in diary-list-entries
974 (defun diary-display-no-entries ()
975 "Common subroutine of `diary-simple-display' and `diary-fancy-display'.
976 Handles the case where there are no diary entries.
977 Returns a cons (NOENTRIES . HOLIDAY-STRING)."
978 (let* ((holiday-list (if diary-show-holidays-flag
979 (calendar-check-holidays original-date)))
980 (hol-string (format "%s%s%s"
981 date-string
982 (if holiday-list ": " "")
983 (mapconcat 'identity holiday-list "; ")))
984 (msg (format "No diary entries for %s" hol-string))
985 ;; Empty list, or single item with no text.
986 ;; FIXME multiple items with no text?
987 (noentries (or (not diary-entries-list)
988 (and (not (cdr diary-entries-list))
989 (string-equal "" (cadr
990 (car diary-entries-list)))))))
991 ;; Inconsistency: whether or not the holidays are displayed in a
992 ;; separate buffer depends on if there are diary entries.
993 (when noentries
994 (if (or (< (length msg) (frame-width))
995 (not holiday-list))
996 (message "%s" msg)
997 ;; holiday-list which is too wide for a message gets a buffer.
998 (calendar-in-read-only-buffer holiday-buffer
999 (calendar-set-mode-line (format "Holidays for %s" date-string))
1000 (insert (mapconcat 'identity holiday-list "\n")))
1001 (message "No diary entries for %s" date-string)))
1002 (cons noentries hol-string)))
1005 (defvar diary-saved-point) ; bound in diary-list-entries
1007 (defun diary-simple-display ()
1008 "Display the diary buffer if there are any relevant entries or holidays.
1009 Entries that do not apply are made invisible. Holidays are shown
1010 in the mode line. This is an option for `diary-display-function'."
1011 ;; If selected window is dedicated (to the calendar), need a new one
1012 ;; to display the diary.
1013 (let* ((pop-up-frames (or pop-up-frames
1014 (window-dedicated-p (selected-window))))
1015 (dbuff (find-buffer-visiting diary-file))
1016 (empty (diary-display-no-entries)))
1017 ;; This may be too wide, but when simple diary is used there is
1018 ;; nowhere else for the holidays to go. Also, it is documented in
1019 ;; diary-show-holidays-flag that the holidays go in the mode-line.
1020 ;; FIXME however if there are no diary entries a separate buffer
1021 ;; is displayed - this is inconsistent.
1022 (with-current-buffer dbuff
1023 (calendar-set-mode-line (format "Diary for %s" (cdr empty))))
1024 (unless (car empty) ; no entries
1025 (with-current-buffer dbuff
1026 (let ((window (display-buffer (current-buffer))))
1027 ;; d-s-p is passed from diary-list-entries.
1028 (set-window-point window diary-saved-point)
1029 (set-window-start window (point-min)))))))
1031 (define-obsolete-function-alias 'simple-diary-display
1032 'diary-simple-display "23.1")
1034 (define-button-type 'diary-entry 'action #'diary-goto-entry
1035 'face 'diary-button 'help-echo "Find this diary entry"
1036 'follow-link t)
1038 (defun diary-goto-entry (button)
1039 "Jump to the diary entry for the BUTTON at point."
1040 (let* ((locator (button-get button 'locator))
1041 (marker (car locator))
1042 markbuf file)
1043 ;; If marker pointing to diary location is valid, use that.
1044 (if (and marker (setq markbuf (marker-buffer marker)))
1045 (progn
1046 (pop-to-buffer markbuf)
1047 (goto-char (marker-position marker)))
1048 ;; Marker is invalid (eg buffer has been killed).
1049 (or (and (setq file (cadr locator))
1050 (file-exists-p file)
1051 (find-file-other-window file)
1052 (progn
1053 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
1054 (goto-char (point-min))
1055 (if (re-search-forward (format "%s.*\\(%s\\)"
1056 (regexp-quote (nth 2 locator))
1057 (regexp-quote (nth 3 locator)))
1058 nil t)
1059 (goto-char (match-beginning 1)))))
1060 (message "Unable to locate this diary entry")))))
1062 (defun diary-fancy-display ()
1063 "Prepare a diary buffer with relevant entries in a fancy, noneditable form.
1064 Holidays are shown unless `diary-show-holidays-flag' is nil.
1065 Days with no diary entries are not shown (even if that day is a
1066 holiday), unless `diary-list-include-blanks' is non-nil.
1068 This is an option for `diary-display-function'."
1069 ;; Turn off selective-display in the diary file's buffer.
1070 (with-current-buffer (find-buffer-visiting diary-file)
1071 (diary-unhide-everything))
1072 (unless (car (diary-display-no-entries)) ; no entries
1073 ;; Prepare the fancy diary buffer.
1074 (calendar-in-read-only-buffer diary-fancy-buffer
1075 (calendar-set-mode-line "Diary Entries")
1076 (let ((holiday-list-last-month 1)
1077 (holiday-list-last-year 1)
1078 (date (list 0 0 0))
1079 holiday-list)
1080 (dolist (entry diary-entries-list)
1081 (unless (calendar-date-equal date (car entry))
1082 (setq date (car entry))
1083 (and diary-show-holidays-flag
1084 (calendar-date-compare
1085 (list (list holiday-list-last-month
1086 (calendar-last-day-of-month
1087 holiday-list-last-month
1088 holiday-list-last-year)
1089 holiday-list-last-year))
1090 (list date))
1091 ;; We need to get the holidays for the next 3 months.
1092 (setq holiday-list-last-month
1093 (calendar-extract-month date)
1094 holiday-list-last-year
1095 (calendar-extract-year date))
1096 (progn
1097 (calendar-increment-month
1098 holiday-list-last-month holiday-list-last-year 1)
1100 (setq holiday-list
1101 (let ((displayed-month holiday-list-last-month)
1102 (displayed-year holiday-list-last-year))
1103 (calendar-holiday-list)))
1104 (calendar-increment-month
1105 holiday-list-last-month holiday-list-last-year 1))
1106 (let ((longest 0)
1107 date-holiday-list cc)
1108 ;; Make a list of all holidays for date.
1109 (dolist (h holiday-list)
1110 (if (calendar-date-equal date (car h))
1111 (setq date-holiday-list (append date-holiday-list
1112 (cdr h)))))
1113 (insert (if (bobp) "" ?\n) (calendar-date-string date))
1114 (if date-holiday-list (insert ": "))
1115 (setq cc (current-column))
1116 (insert (mapconcat (lambda (x)
1117 (setq longest (max longest (length x)))
1119 date-holiday-list
1120 (concat "\n" (make-string cc ?\s))))
1121 (insert ?\n (make-string (+ cc longest) ?=) ?\n)))
1122 (let ((this-entry (cadr entry))
1123 this-loc marks temp-face)
1124 (unless (zerop (length this-entry))
1125 (if (setq this-loc (nth 3 entry))
1126 (insert-button this-entry
1127 ;; (MARKER FILENAME SPECIFIER LITERAL)
1128 'locator (list (car this-loc)
1129 (cadr this-loc)
1130 (nth 2 entry)
1131 (or (nth 2 this-loc)
1132 (nth 1 entry)))
1133 :type 'diary-entry)
1134 (insert this-entry))
1135 (insert ?\n)
1136 ;; Doesn't make sense to check font-lock-mode - see
1137 ;; comments above diary-entry-marker in calendar.el.
1138 (and ; font-lock-mode
1139 (setq marks (nth 4 entry))
1140 (save-excursion
1141 (setq temp-face (calendar-make-temp-face marks))
1142 (search-backward this-entry)
1143 (overlay-put
1144 (make-overlay (match-beginning 0) (match-end 0))
1145 'face temp-face)))))))
1146 ;; FIXME can't remember what this check was for.
1147 ;; To prevent something looping, or a minor optimization?
1148 (if (eq major-mode 'diary-fancy-display-mode)
1149 (run-hooks 'diary-fancy-display-mode-hook)
1150 (diary-fancy-display-mode))
1151 (calendar-set-mode-line date-string))))
1153 (define-obsolete-function-alias 'fancy-diary-display
1154 'diary-fancy-display "23.1")
1156 ;; FIXME modernize?
1157 (defun diary-print-entries ()
1158 "Print a hard copy of the diary display.
1160 If the simple diary display is being used, prepare a temp buffer with the
1161 visible lines of the diary buffer, add a heading line composed from the mode
1162 line, print the temp buffer, and destroy it.
1164 If the fancy diary display is being used, just print the buffer.
1166 The hooks given by the variable `diary-print-entries-hook' are called to do
1167 the actual printing."
1168 (interactive)
1169 (let ((diary-buffer (get-buffer diary-fancy-buffer))
1170 temp-buffer heading start end)
1171 (if diary-buffer
1172 (with-current-buffer diary-buffer
1173 (run-hooks 'diary-print-entries-hook))
1174 (or (setq diary-buffer (find-buffer-visiting diary-file))
1175 (error "You don't have a diary buffer!"))
1176 ;; Name affects printing?
1177 (setq temp-buffer (get-buffer-create " *Printable Diary Entries*"))
1178 (with-current-buffer diary-buffer
1179 (setq heading
1180 (if (not (stringp mode-line-format))
1181 "All Diary Entries"
1182 (string-match "^-*\\([^-].*[^-]\\)-*$" mode-line-format)
1183 (match-string 1 mode-line-format))
1184 start (point-min))
1185 (while
1186 (progn
1187 (setq end (next-single-char-property-change start 'invisible))
1188 (unless (get-char-property start 'invisible)
1189 (with-current-buffer temp-buffer
1190 (insert-buffer-substring diary-buffer start end)))
1191 (setq start end)
1192 (and end (< end (point-max))))))
1193 (set-buffer temp-buffer)
1194 (goto-char (point-min))
1195 (insert heading "\n"
1196 (make-string (length heading) ?=) "\n")
1197 (run-hooks 'diary-print-entries-hook)
1198 (kill-buffer temp-buffer))))
1200 (define-obsolete-function-alias 'print-diary-entries
1201 'diary-print-entries "23.1")
1203 ;;;###cal-autoload
1204 (defun diary-show-all-entries ()
1205 "Show all of the diary entries in the diary file.
1206 This function gets rid of the selective display of the diary file so that
1207 all entries, not just some, are visible. If there is no diary buffer, one
1208 is created."
1209 (interactive)
1210 (let* ((d-file (diary-check-diary-file))
1211 (pop-up-frames (or pop-up-frames
1212 (window-dedicated-p (selected-window))))
1213 (win (selected-window))
1214 (height (window-height)))
1215 (with-current-buffer (or (find-buffer-visiting d-file)
1216 (find-file-noselect d-file t))
1217 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
1218 (diary-unhide-everything)
1219 (display-buffer (current-buffer))
1220 (when (and (/= height (window-height win))
1221 (with-current-buffer (window-buffer win)
1222 (derived-mode-p 'calendar-mode)))
1223 (fit-window-to-buffer win)))))
1225 ;;;###autoload
1226 (defun diary-mail-entries (&optional ndays)
1227 "Send a mail message showing diary entries for next NDAYS days.
1228 If no prefix argument is given, NDAYS is set to `diary-mail-days'.
1229 Mail is sent to the address specified by `diary-mail-addr'.
1231 Here is an example of a script to call `diary-mail-entries',
1232 suitable for regular scheduling using cron (or at). Note that
1233 since `emacs -script' does not load your `.emacs' file, you
1234 should ensure that all relevant variables are set.
1236 #!/usr/bin/emacs -script
1237 ;; diary-rem.el - run the Emacs diary-reminder
1239 \(setq diary-mail-days 3
1240 diary-file \"/path/to/diary.file\"
1241 calendar-date-style 'european
1242 diary-mail-addr \"user@host.name\")
1244 \(diary-mail-entries)
1246 # diary-rem.el ends here
1248 (interactive "P")
1249 (if (string-equal diary-mail-addr "")
1250 (error "You must set `diary-mail-addr' to use this command")
1251 (let ((diary-display-function 'diary-fancy-display))
1252 (diary-list-entries (calendar-current-date) (or ndays diary-mail-days)))
1253 (compose-mail diary-mail-addr
1254 (concat "Diary entries generated "
1255 (calendar-date-string (calendar-current-date))))
1256 (insert
1257 (if (get-buffer diary-fancy-buffer)
1258 (with-current-buffer diary-fancy-buffer (buffer-string))
1259 "No entries found"))
1260 (call-interactively (get mail-user-agent 'sendfunc))))
1262 (defun diary-name-pattern (string-array &optional abbrev-array paren)
1263 "Return a regexp matching the strings in the array STRING-ARRAY.
1264 If the optional argument ABBREV-ARRAY is present, the regexp
1265 also matches the supplied abbreviations, with or without final `.'
1266 characters. If the optional argument PAREN is non-nil, surrounds
1267 the regexp with parentheses."
1268 (regexp-opt (append string-array
1269 abbrev-array
1270 (if abbrev-array
1271 (mapcar (lambda (e) (format "%s." e))
1272 abbrev-array))
1273 nil)
1274 paren))
1276 (defvar diary-marking-entries-flag nil
1277 "True during the marking of diary entries, nil otherwise.")
1279 (defvar diary-marking-entry-flag nil
1280 "True during the marking of diary entries, if current entry is marking.")
1282 ;; file-glob-attrs bound in diary-mark-entries.
1283 (defun diary-mark-entries-1 (markfunc &optional months symbol absfunc)
1284 "Mark diary entries of a certain type.
1285 MARKFUNC is a function that marks entries of the appropriate type
1286 matching a given date pattern. MONTHS is an array of month names.
1287 SYMBOL marks diary entries of the type in question. ABSFUNC is a
1288 function that converts absolute dates to dates of the appropriate type. "
1289 (let ((dayname (diary-name-pattern calendar-day-name-array
1290 calendar-day-abbrev-array))
1291 (monthname (format "%s\\|\\*"
1292 (if months
1293 (diary-name-pattern months)
1294 (diary-name-pattern calendar-month-name-array
1295 calendar-month-abbrev-array))))
1296 (month "[0-9]+\\|\\*")
1297 (day "[0-9]+\\|\\*")
1298 (year "[0-9]+\\|\\*")
1299 (case-fold-search t)
1300 marks)
1301 (dolist (date-form diary-date-forms)
1302 (if (eq (car date-form) 'backup) ; ignore 'backup directive
1303 (setq date-form (cdr date-form)))
1304 (let* ((l (length date-form))
1305 (d-name-pos (- l (length (memq 'dayname date-form))))
1306 (d-name-pos (if (/= l d-name-pos) (1+ d-name-pos)))
1307 (m-name-pos (- l (length (memq 'monthname date-form))))
1308 (m-name-pos (if (/= l m-name-pos) (1+ m-name-pos)))
1309 (d-pos (- l (length (memq 'day date-form))))
1310 (d-pos (if (/= l d-pos) (1+ d-pos)))
1311 (m-pos (- l (length (memq 'month date-form))))
1312 (m-pos (if (/= l m-pos) (1+ m-pos)))
1313 (y-pos (- l (length (memq 'year date-form))))
1314 (y-pos (if (/= l y-pos) (1+ y-pos)))
1315 (regexp (format "^%s\\(%s\\)"
1316 (if symbol (regexp-quote symbol) "")
1317 (mapconcat 'eval date-form "\\)\\("))))
1318 (goto-char (point-min))
1319 (while (re-search-forward regexp nil t)
1320 (let* ((dd-name
1321 (if d-name-pos
1322 (match-string-no-properties d-name-pos)))
1323 (mm-name
1324 (if m-name-pos
1325 (match-string-no-properties m-name-pos)))
1326 (mm (string-to-number
1327 (if m-pos
1328 (match-string-no-properties m-pos)
1329 "")))
1330 (dd (string-to-number
1331 (if d-pos
1332 (match-string-no-properties d-pos)
1333 "")))
1334 (y-str (if y-pos
1335 (match-string-no-properties y-pos)))
1336 (yy (if (not y-str)
1338 (if (and (= (length y-str) 2)
1339 diary-abbreviated-year-flag)
1340 (let* ((current-y
1341 (calendar-extract-year
1342 (if absfunc
1343 (funcall
1344 absfunc
1345 (calendar-absolute-from-gregorian
1346 (calendar-current-date)))
1347 (calendar-current-date))))
1348 (y (+ (string-to-number y-str)
1349 ;; Current century, eg 2000.
1350 (* 100 (/ current-y 100))))
1351 (offset (- y current-y)))
1352 ;; Add 2-digit year to current century.
1353 ;; If more than 50 years in the future,
1354 ;; assume last century. If more than 50
1355 ;; years in the past, assume next century.
1356 (if (> offset 50)
1357 (- y 100)
1358 (if (< offset -50)
1359 (+ y 100)
1360 y)))
1361 (string-to-number y-str)))))
1362 (setq marks (cadr (diary-pull-attrs
1363 (buffer-substring-no-properties
1364 (point) (line-end-position))
1365 file-glob-attrs)))
1366 ;; Only mark all days of a given name if the pattern
1367 ;; contains no more specific elements.
1368 (if (and dd-name (not (or d-pos m-pos y-pos)))
1369 (calendar-mark-days-named
1370 (cdr (assoc-string dd-name
1371 (calendar-make-alist
1372 calendar-day-name-array
1373 0 nil calendar-day-abbrev-array
1374 (mapcar (lambda (e)
1375 (format "%s." e))
1376 calendar-day-abbrev-array))
1377 t)) marks)
1378 (if mm-name
1379 (setq mm
1380 (if (string-equal mm-name "*") 0
1381 (cdr (assoc-string
1382 mm-name
1383 (if months (calendar-make-alist months)
1384 (calendar-make-alist
1385 calendar-month-name-array
1386 1 nil calendar-month-abbrev-array
1387 (mapcar (lambda (e)
1388 (format "%s." e))
1389 calendar-month-abbrev-array)))
1390 t)))))
1391 (funcall markfunc mm dd yy marks))))))))
1393 ;;;###cal-autoload
1394 (defun diary-mark-entries (&optional redraw)
1395 "Mark days in the calendar window that have diary entries.
1396 Marks each entry in the diary that is visible in the calendar window.
1398 After marking the entries, runs `diary-nongregorian-marking-hook'
1399 for the main diary file, and each included file. For example,
1400 this is the appropriate hook to process Islamic entries in all
1401 diary files. Next `diary-mark-entries-hook' runs, for the main diary
1402 file only. If not using include files, there is no difference between
1403 these two hooks.
1405 If the optional argument REDRAW is non-nil (which is the case
1406 interactively, for example) then this first removes any existing diary
1407 marks. This is intended to deal with deleted diary entries."
1408 (interactive "p")
1409 ;; To remove any deleted diary entries. Do not redraw when:
1410 ;; i) processing #include diary files (else only get the marks from
1411 ;; the last #include file processed).
1412 ;; ii) called via calendar-redraw (since calendar has already been
1413 ;; erased).
1414 ;; Use of REDRAW handles both of these cases.
1415 (when (and redraw calendar-mark-diary-entries-flag)
1416 (setq calendar-mark-diary-entries-flag nil)
1417 (calendar-redraw))
1418 (let ((diary-marking-entries-flag t)
1419 (diary-buffer (find-buffer-visiting diary-file))
1420 ;; Dynamically bound in diary-include-files.
1421 (d-incp (and (boundp 'diary-including) diary-including))
1422 file-glob-attrs temp-buff)
1423 (unless d-incp
1424 (setq diary-included-files nil)
1425 (message "Marking diary entries..."))
1426 (unwind-protect
1427 (with-current-buffer (or diary-buffer
1428 (if d-incp
1429 (setq temp-buff (generate-new-buffer
1430 " *diary-temp*"))
1431 (find-file-noselect
1432 (diary-check-diary-file) t)))
1433 (if temp-buff
1434 ;; If including, caller has already verified it is readable.
1435 (insert-file-contents diary-file)
1436 (if (eq major-mode (default-value 'major-mode)) (diary-mode)))
1437 (setq calendar-mark-diary-entries-flag t)
1438 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1439 (with-syntax-table diary-syntax-table
1440 (save-excursion
1441 (diary-mark-entries-1 'calendar-mark-date-pattern)
1442 (diary-mark-sexp-entries)
1443 ;; Although it looks like mark-entries-hook runs every time,
1444 ;; diary-mark-included-diary-files binds it to nil
1445 ;; (essentially) when it runs in included files.
1446 (run-hooks 'diary-nongregorian-marking-hook
1447 'diary-mark-entries-hook))))
1448 (and temp-buff (buffer-name temp-buff) (kill-buffer temp-buff)))
1449 (or d-incp (message "Marking diary entries...done"))))
1451 ;;;###cal-autoload
1452 (define-obsolete-function-alias 'mark-diary-entries 'diary-mark-entries "23.1")
1454 (defun diary-sexp-entry (sexp entry date)
1455 "Process a SEXP diary ENTRY for DATE."
1456 (let ((result (if calendar-debug-sexp
1457 (let ((debug-on-error t))
1458 (eval (car (read-from-string sexp))))
1459 (condition-case nil
1460 (eval (car (read-from-string sexp)))
1461 (error
1462 (beep)
1463 (message "Bad sexp at line %d in %s: %s"
1464 (count-lines (point-min) (point))
1465 diary-file sexp)
1466 (sleep-for 2))))))
1467 (cond ((stringp result) result)
1468 ((and (consp result)
1469 (stringp (cdr result))) result)
1470 (result entry)
1471 (t nil))))
1473 (defvar displayed-year) ; bound in calendar-generate
1474 (defvar displayed-month)
1476 (defun diary-mark-sexp-entries ()
1477 "Mark days in the calendar window that have sexp diary entries.
1478 Each entry in the diary file (or included files) visible in the calendar window
1479 is marked. See the documentation for the function `diary-list-sexp-entries'."
1480 (let* ((sexp-mark (regexp-quote diary-sexp-entry-symbol))
1481 (s-entry (format "^\\(%s(\\)\\|\\(%s%s(diary-remind\\)" sexp-mark
1482 (regexp-quote diary-nonmarking-symbol)
1483 sexp-mark))
1484 (file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1485 m y first-date last-date date mark file-glob-attrs
1486 sexp-start sexp entry entry-start)
1487 (with-current-buffer calendar-buffer
1488 (setq m displayed-month
1489 y displayed-year))
1490 (calendar-increment-month m y -1)
1491 (setq first-date (calendar-absolute-from-gregorian (list m 1 y)))
1492 (calendar-increment-month m y 2)
1493 (setq last-date
1494 (calendar-absolute-from-gregorian
1495 (list m (calendar-last-day-of-month m y) y)))
1496 (goto-char (point-min))
1497 (while (re-search-forward s-entry nil t)
1498 (setq diary-marking-entry-flag (char-equal (preceding-char) ?\())
1499 (re-search-backward "(")
1500 (setq sexp-start (point))
1501 (forward-sexp)
1502 (setq sexp (buffer-substring-no-properties sexp-start (point)))
1503 (forward-char 1)
1504 (if (and (bolp) (not (looking-at "[ \t]")))
1505 ;; Diary entry consists only of the sexp.
1506 (progn
1507 (backward-char 1)
1508 (setq entry ""))
1509 (setq entry-start (point))
1510 ;; Find end of entry.
1511 (forward-line 1)
1512 (while (looking-at "[ \t]")
1513 (forward-line 1))
1514 (if (bolp) (backward-char 1))
1515 (setq entry (buffer-substring-no-properties entry-start (point))))
1516 (setq date (1- first-date))
1517 ;; FIXME this loops over all visible dates.
1518 ;; Could be optimized in many cases. Depends on whether t or * present.
1519 (while (<= (setq date (1+ date)) last-date)
1520 (when (setq mark (diary-sexp-entry
1521 sexp entry
1522 (calendar-gregorian-from-absolute date)))
1523 (calendar-mark-visible-date
1524 (calendar-gregorian-from-absolute date)
1525 (or (cadr (diary-pull-attrs entry file-glob-attrs))
1526 (if (consp mark) (car mark)))))))))
1528 (define-obsolete-function-alias 'mark-sexp-diary-entries
1529 'diary-mark-sexp-entries "23.1")
1531 (defun diary-mark-included-diary-files ()
1532 "Mark diary entries from included diary files.
1533 To use, add this function to `diary-mark-entries-hook'.
1534 For details, see `diary-include-files'.
1535 See also `diary-include-other-diary-files'."
1536 (diary-include-files t))
1538 (define-obsolete-function-alias 'mark-included-diary-files
1539 'diary-mark-included-diary-files "23.1")
1541 (defun calendar-mark-days-named (dayname &optional color)
1542 "Mark all dates in the calendar window that are day DAYNAME of the week.
1543 0 means all Sundays, 1 means all Mondays, and so on.
1544 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1545 (with-current-buffer calendar-buffer
1546 (let ((prev-month displayed-month)
1547 (prev-year displayed-year)
1548 (succ-month displayed-month)
1549 (succ-year displayed-year)
1550 (last-day)
1551 (day))
1552 (calendar-increment-month succ-month succ-year 1)
1553 (calendar-increment-month prev-month prev-year -1)
1554 (setq day (calendar-absolute-from-gregorian
1555 (calendar-nth-named-day 1 dayname prev-month prev-year))
1556 last-day (calendar-absolute-from-gregorian
1557 (calendar-nth-named-day -1 dayname succ-month succ-year)))
1558 (while (<= day last-day)
1559 (calendar-mark-visible-date (calendar-gregorian-from-absolute day)
1560 color)
1561 (setq day (+ day 7))))))
1563 (define-obsolete-function-alias 'mark-calendar-days-named
1564 'calendar-mark-days-named "23.1")
1566 (defun calendar-mark-month (month year p-month p-day p-year &optional color)
1567 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P-DAY/P-YEAR.
1568 A value of 0 in any position of the pattern is a wildcard.
1569 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1570 (if (or (and (= month p-month)
1571 (or (zerop p-year) (= year p-year)))
1572 (and (zerop p-month)
1573 (or (zerop p-year) (= year p-year))))
1574 (if (zerop p-day)
1575 (dotimes (i (calendar-last-day-of-month month year))
1576 (calendar-mark-visible-date (list month (1+ i) year) color))
1577 (calendar-mark-visible-date (list month p-day year) color))))
1579 (define-obsolete-function-alias 'mark-calendar-month
1580 'calendar-mark-month "23.1")
1582 (defun calendar-mark-date-pattern (month day year &optional color)
1583 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR.
1584 A value of 0 in any position is a wildcard. Optional argument COLOR is
1585 passed to `calendar-mark-visible-date' as MARK."
1586 (with-current-buffer calendar-buffer
1587 (let ((m displayed-month)
1588 (y displayed-year))
1589 (calendar-increment-month m y -1)
1590 (dotimes (_idummy 3)
1591 (calendar-mark-month m y month day year color)
1592 (calendar-increment-month m y 1)))))
1594 (define-obsolete-function-alias 'mark-calendar-date-pattern
1595 'calendar-mark-date-pattern "23.1")
1597 ;; Bahai, Hebrew, Islamic.
1598 (defun calendar-mark-complex (month day year fromabs &optional color)
1599 "Mark dates in the calendar conforming to MONTH DAY YEAR of some system.
1600 The function FROMABS converts absolute dates to the appropriate date system.
1601 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1602 ;; Not one of the simple cases--check all visible dates for match.
1603 ;; Actually, the following code takes care of ALL of the cases, but
1604 ;; it's much too slow to be used for the simple (common) cases.
1605 (let* ((m displayed-month)
1606 (y displayed-year)
1607 (first-date (progn
1608 (calendar-increment-month m y -1)
1609 (calendar-absolute-from-gregorian (list m 1 y))))
1610 (last-date (progn
1611 (calendar-increment-month m y 2)
1612 (calendar-absolute-from-gregorian
1613 (list m (calendar-last-day-of-month m y) y))))
1614 (date (1- first-date))
1615 local-date)
1616 (while (<= (setq date (1+ date)) last-date)
1617 (setq local-date (funcall fromabs date))
1618 (and (or (zerop month)
1619 (= month (calendar-extract-month local-date)))
1620 (or (zerop day)
1621 (= day (calendar-extract-day local-date)))
1622 (or (zerop year)
1623 (= year (calendar-extract-year local-date)))
1624 (calendar-mark-visible-date
1625 (calendar-gregorian-from-absolute date) color)))))
1627 ;; Bahai, Islamic.
1628 (defun calendar-mark-1 (month day year fromabs toabs &optional color)
1629 "Mark dates in the calendar conforming to MONTH DAY YEAR of some system.
1630 The function FROMABS converts absolute dates to the appropriate date system.
1631 The function TOABS carries out the inverse operation. Optional argument
1632 COLOR is passed to `calendar-mark-visible-date' as MARK."
1633 (with-current-buffer calendar-buffer
1634 (if (and (not (zerop month)) (not (zerop day)))
1635 (if (not (zerop year))
1636 ;; Fully specified date.
1637 (let ((date (calendar-gregorian-from-absolute
1638 (funcall toabs (list month day year)))))
1639 (if (calendar-date-is-visible-p date)
1640 (calendar-mark-visible-date date color)))
1641 ;; Month and day in any year--this taken from the holiday stuff.
1642 (let* ((i-date (funcall fromabs
1643 (calendar-absolute-from-gregorian
1644 (list displayed-month 15 displayed-year))))
1645 (m (calendar-extract-month i-date))
1646 (y (calendar-extract-year i-date))
1647 date)
1648 (unless (< m 1) ; calendar doesn't apply
1649 (calendar-increment-month m y (- 10 month))
1650 (and (> m 7) ; date might be visible
1651 (calendar-date-is-visible-p
1652 (setq date (calendar-gregorian-from-absolute
1653 (funcall toabs (list month day y)))))
1654 (calendar-mark-visible-date date color)))))
1655 (calendar-mark-complex month day year
1656 'calendar-bahai-from-absolute color))))
1659 (defun diary-entry-time (s)
1660 "Return time at the beginning of the string S as a military-style integer.
1661 For example, returns 1325 for 1:25pm.
1663 Returns `diary-unknown-time' (default value -9999) if no time is recognized.
1664 The recognized forms are XXXX, X:XX, or XX:XX (military time), and XXam,
1665 XXAM, XXpm, XXPM, XX:XXam, XX:XXAM, XX:XXpm, or XX:XXPM. A period (.) can
1666 be used instead of a colon (:) to separate the hour and minute parts."
1667 (let (case-fold-search)
1668 (cond ((string-match ; military time
1669 "\\`[ \t\n]*\\([0-9]?[0-9]\\)[:.]?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)"
1671 (+ (* 100 (string-to-number (match-string 1 s)))
1672 (string-to-number (match-string 2 s))))
1673 ((string-match ; hour only (XXam or XXpm)
1674 "\\`[ \t\n]*\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s)
1675 (+ (* 100 (% (string-to-number (match-string 1 s)) 12))
1676 (if (equal ?a (downcase (aref s (match-beginning 2))))
1677 0 1200)))
1678 ((string-match ; hour and minute (XX:XXam or XX:XXpm)
1679 "\\`[ \t\n]*\\([0-9]?[0-9]\\)[:.]\\([0-9][0-9]\\)\\([ap]\\)m\\>" s)
1680 (+ (* 100 (% (string-to-number (match-string 1 s)) 12))
1681 (string-to-number (match-string 2 s))
1682 (if (equal ?a (downcase (aref s (match-beginning 3))))
1683 0 1200)))
1684 (t diary-unknown-time)))) ; unrecognizable
1686 (defun diary-entry-compare (e1 e2)
1687 "Return t if E1 is earlier than E2."
1688 (or (calendar-date-compare e1 e2)
1689 (and (calendar-date-equal (car e1) (car e2))
1690 (let* ((ts1 (cadr e1)) (t1 (diary-entry-time ts1))
1691 (ts2 (cadr e2)) (t2 (diary-entry-time ts2)))
1692 (or (< t1 t2)
1693 (and (= t1 t2)
1694 (string-lessp ts1 ts2)))))))
1696 (defun diary-sort-entries ()
1697 "Sort the list of diary entries by time of day.
1698 If you add this function to `diary-list-entries-hook', it should
1699 be the last item in the hook, in case earlier items add diary
1700 entries, or change the order."
1701 (setq diary-entries-list (sort diary-entries-list 'diary-entry-compare)))
1703 (define-obsolete-function-alias 'sort-diary-entries 'diary-sort-entries "23.1")
1706 (defun diary-list-sexp-entries (date)
1707 "Add sexp entries for DATE from the diary file to `diary-entries-list'.
1708 Also, make them visible in the diary. Returns t if any entries are found.
1710 Sexp diary entries must be prefaced by a `diary-sexp-entry-symbol'
1711 \(normally `%%'). The form of a sexp diary entry is
1713 %%(SEXP) ENTRY
1715 Both ENTRY and DATE are available when the SEXP is evaluated. If
1716 the SEXP returns nil, the diary entry does not apply. If it
1717 returns a non-nil value, ENTRY will be taken to apply to DATE; if
1718 the value is a string, that string will be the diary entry in the
1719 fancy diary display.
1721 For example, the following diary entry will apply to the 21st of
1722 the month if it is a weekday and the Friday before if the 21st is
1723 on a weekend:
1725 &%%(let ((dayname (calendar-day-of-week date))
1726 (day (calendar-extract-day date)))
1728 (and (= day 21) (memq dayname '(1 2 3 4 5)))
1729 (and (memq day '(19 20)) (= dayname 5)))
1730 ) UIUC pay checks deposited
1732 A number of built-in functions are available for this type of
1733 diary entry. In the following, the optional parameter MARK
1734 specifies a face or single-character string to use when
1735 highlighting the day in the calendar. For those functions that
1736 take MONTH, DAY, and YEAR as arguments, the order of the input
1737 parameters changes according to `calendar-date-style' (e.g. to
1738 DAY MONTH YEAR in the European style).
1740 %%(diary-date MONTH DAY YEAR &optional MARK) text
1741 Entry applies if date is MONTH, DAY, YEAR. DAY, MONTH, and YEAR can
1742 be a list of integers, `t' (meaning all values), or an integer.
1744 %%(diary-float MONTH DAYNAME N &optional DAY MARK) text
1745 Entry will appear on the Nth DAYNAME after/before MONTH DAY.
1746 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
1747 If N>0, use the Nth DAYNAME after MONTH DAY.
1748 If N<0, use the Nth DAYNAME before MONTH DAY.
1749 DAY defaults to 1 if N>0, and MONTH's last day otherwise.
1750 MONTH can be a list of months, a single month, or `t' to
1751 specify all months.
1753 %%(diary-block M1 D1 Y1 M2 D2 Y2 &optional MARK) text
1754 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2,
1755 inclusive.
1757 %%(diary-anniversary MONTH DAY YEAR &optional MARK) text
1758 Entry will appear on anniversary dates of MONTH DAY, YEAR.
1759 Text can contain `%d' or `%d%s'; `%d' will be replaced by the
1760 number of years since the MONTH DAY, YEAR, and `%s' by the
1761 ordinal ending of that number (i.e. `st', `nd', `rd' or `th',
1762 as appropriate). The anniversary of February 29 is
1763 considered to be March 1 in a non-leap year.
1765 %%(diary-cyclic N MONTH DAY YEAR &optional MARK) text
1766 Entry will appear every N days, starting MONTH DAY, YEAR.
1767 Text can contain `%d' or `%d%s'; `%d' will be replaced by the
1768 number of repetitions since the MONTH DAY, YEAR and `%s' by
1769 the ordinal ending of that number (i.e. `st', `nd', `rd' or
1770 `th', as appropriate).
1772 %%(diary-remind SEXP DAYS &optional MARKING) text
1773 Entry is a reminder for diary sexp SEXP. DAYS is either a
1774 single number or a list of numbers indicating the number(s)
1775 of days before the event that the warning(s) should occur.
1776 A negative number -DAYS has the same meaning as a list (1 2 ... DAYS).
1777 If the current date is (one of) DAYS before the event indicated
1778 by EXPR, then a suitable message (as specified by
1779 `diary-remind-message') appears. In addition to the
1780 reminders beforehand, the diary entry also appears on the
1781 date itself. If optional MARKING is non-nil then the
1782 *reminders* are marked on the calendar. Marking of reminders
1783 is independent of whether the entry *itself* is a marking or
1784 non-marking one.
1786 %%(diary-hebrew-yahrzeit MONTH DAY YEAR) text
1787 Text is assumed to be the name of the person; the date is the
1788 date of death on the *civil* calendar. The diary entry will
1789 appear on the proper Hebrew-date anniversary and on the day
1790 before.
1792 All the remaining functions do not accept any text, and so only
1793 make sense with `diary-fancy-display'. Most produce output every day.
1795 `diary-day-of-year' - day of year and number of days remaining
1796 `diary-iso-date' - ISO commercial date
1797 `diary-astro-day-number' - astronomical (Julian) day number
1798 `diary-sunrise-sunset' - local times of sunrise and sunset
1800 These functions give the date in alternative calendrical systems:
1802 `diary-bahai-date', `diary-chinese-date', `diary-coptic-date',
1803 `diary-ethiopic-date', `diary-french-date', `diary-hebrew-date',
1804 `diary-islamic-date', `diary-julian-date', `diary-mayan-date',
1805 `diary-persian-date'
1807 Theses functions only produce output on certain dates:
1809 `diary-lunar-phases' - phases of moon (on the appropriate days)
1810 `diary-hebrew-omer' - Omer count, within 50 days after Passover
1811 `diary-hebrew-parasha' - weekly parasha, every Saturday
1812 `diary-hebrew-rosh-hodesh' - Rosh Hodesh, or the day or Saturday before
1813 `diary-hebrew-sabbath-candles' - local time of candle lighting, on Fridays
1816 Marking these entries is *extremely* time consuming, so it is
1817 best if they are non-marking."
1818 (let ((s-entry (format "^%s?%s(" (regexp-quote diary-nonmarking-symbol)
1819 (regexp-quote diary-sexp-entry-symbol)))
1820 entry-found file-glob-attrs marks
1821 sexp-start sexp entry specifier entry-start line-start
1822 diary-entry temp literal)
1823 (goto-char (point-min))
1824 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1825 (while (re-search-forward s-entry nil t)
1826 (backward-char 1)
1827 (setq sexp-start (point))
1828 (forward-sexp)
1829 (setq sexp (buffer-substring-no-properties sexp-start (point))
1830 line-start (line-end-position 0)
1831 specifier
1832 (buffer-substring-no-properties (1+ line-start) (point))
1833 entry-start (1+ line-start))
1834 (forward-char 1)
1835 (if (and (bolp) (not (looking-at "[ \t]")))
1836 ;; Diary entry consists only of the sexp.
1837 (progn
1838 (backward-char 1)
1839 (setq entry ""))
1840 (setq entry-start (point))
1841 (forward-line 1)
1842 (while (looking-at "[ \t]")
1843 (forward-line 1))
1844 (if (bolp) (backward-char 1))
1845 (setq entry (buffer-substring-no-properties entry-start (point))))
1846 (setq diary-entry (diary-sexp-entry sexp entry date)
1847 literal entry ; before evaluation
1848 entry (if (consp diary-entry)
1849 (cdr diary-entry)
1850 diary-entry))
1851 (when diary-entry
1852 (remove-overlays line-start (point) 'invisible 'diary)
1853 (if (< 0 (length entry))
1854 (setq temp (diary-pull-attrs entry file-glob-attrs)
1855 entry (nth 0 temp)
1856 marks (nth 1 temp))))
1857 (diary-add-to-list date entry specifier
1858 (if entry-start (copy-marker entry-start))
1859 marks literal)
1860 (setq entry-found (or entry-found diary-entry)))
1861 entry-found))
1863 (define-obsolete-function-alias 'list-sexp-diary-entries
1864 'diary-list-sexp-entries "23.1")
1866 (defun diary-make-date (a b c)
1867 "Convert A B C into the internal calendar date form.
1868 The expected order of the inputs depends on `calendar-date-style',
1869 e.g. in the European case, A = day, B = month, C = year. Returns
1870 a list (MONTH DAY YEAR), i.e. the American style, which is the
1871 form used internally by the calendar and diary."
1872 (cond ((eq calendar-date-style 'iso) ; YMD
1873 (list b c a))
1874 ((eq calendar-date-style 'european) ; DMY
1875 (list b a c))
1876 (t (list a b c))))
1879 ;;; Sexp diary functions.
1881 (defvar date)
1882 (defvar entry)
1884 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1885 (defun diary-date (month day year &optional mark)
1886 "Specific date(s) diary entry.
1887 Entry applies if date is MONTH, DAY, YEAR. Each parameter can be a
1888 list of integers, `t' (meaning all values), or an integer. The order
1889 of the input parameters changes according to `calendar-date-style'
1890 \(e.g. to DAY MONTH YEAR in the European style).
1892 An optional parameter MARK specifies a face or single-character string
1893 to use when highlighting the day in the calendar."
1894 (let* ((ddate (diary-make-date month day year))
1895 (dd (calendar-extract-day ddate))
1896 (mm (calendar-extract-month ddate))
1897 (yy (calendar-extract-year ddate))
1898 (m (calendar-extract-month date))
1899 (y (calendar-extract-year date))
1900 (d (calendar-extract-day date)))
1901 (and
1902 (or (and (listp dd) (memq d dd))
1903 (equal d dd)
1904 (eq dd t))
1905 (or (and (listp mm) (memq m mm))
1906 (equal m mm)
1907 (eq mm t))
1908 (or (and (listp yy) (memq y yy))
1909 (equal y yy)
1910 (eq yy t))
1911 (cons mark entry))))
1913 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1914 (defun diary-block (m1 d1 y1 m2 d2 y2 &optional mark)
1915 "Block diary entry.
1916 Entry applies if date is between, or on one of, two dates. The order
1917 of the input parameters changes according to `calendar-date-style'
1918 \(e.g. to D1, M1, Y1, D2, M2, Y2 in the European style).
1920 An optional parameter MARK specifies a face or single-character string
1921 to use when highlighting the day in the calendar."
1922 (let ((date1 (calendar-absolute-from-gregorian
1923 (diary-make-date m1 d1 y1)))
1924 (date2 (calendar-absolute-from-gregorian
1925 (diary-make-date m2 d2 y2)))
1926 (d (calendar-absolute-from-gregorian date)))
1927 (and (<= date1 d) (<= d date2)
1928 (cons mark entry))))
1930 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1931 (defun diary-float (month dayname n &optional day mark)
1932 "Diary entry for the Nth DAYNAME after/before MONTH DAY.
1933 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
1934 If N>0, use the Nth DAYNAME after MONTH DAY.
1935 If N<0, use the Nth DAYNAME before MONTH DAY.
1936 DAY defaults to 1 if N>0, and MONTH's last day otherwise.
1937 MONTH can be a list of months, an integer, or `t' (meaning all months).
1938 Optional MARK specifies a face or single-character string to use when
1939 highlighting the day in the calendar."
1940 ;; This is messy because the diary entry may apply, but the date on which it
1941 ;; is based can be in a different month/year. For example, asking for the
1942 ;; first Monday after December 30. For large values of |n| the problem is
1943 ;; more grotesque.
1944 (and (= dayname (calendar-day-of-week date))
1945 (let* ((m (calendar-extract-month date))
1946 (d (calendar-extract-day date))
1947 (y (calendar-extract-year date))
1948 ;; Last (n>0) or first (n<0) possible base date for entry.
1949 (limit
1950 (calendar-nth-named-absday (- n) dayname m y d))
1951 (last-abs (if (> n 0) limit (+ limit 6)))
1952 (first-abs (if (> n 0) (- limit 6) limit))
1953 (last (calendar-gregorian-from-absolute last-abs))
1954 (first (calendar-gregorian-from-absolute first-abs))
1955 ;; m1, d1 is first possible base date.
1956 (m1 (calendar-extract-month first))
1957 (d1 (calendar-extract-day first))
1958 (y1 (calendar-extract-year first))
1959 ;; m2, d2 is last possible base date.
1960 (m2 (calendar-extract-month last))
1961 (d2 (calendar-extract-day last))
1962 (y2 (calendar-extract-year last)))
1963 (if (or (and (= m1 m2) ; only possible base dates in one month
1964 (or (eq month t)
1965 (if (listp month)
1966 (memq m1 month)
1967 (= m1 month)))
1968 (let ((d (or day (if (> n 0)
1970 (calendar-last-day-of-month m1 y1)))))
1971 (and (<= d1 d) (<= d d2))))
1972 ;; Only possible base dates straddle two months.
1973 (and (or (< y1 y2)
1974 (and (= y1 y2) (< m1 m2)))
1976 ;; m1, d1 works as a base date.
1977 (and
1978 (or (eq month t)
1979 (if (listp month)
1980 (memq m1 month)
1981 (= m1 month)))
1982 (<= d1 (or day (if (> n 0)
1984 (calendar-last-day-of-month m1 y1)))))
1985 ;; m2, d2 works as a base date.
1986 (and (or (eq month t)
1987 (if (listp month)
1988 (memq m2 month)
1989 (= m2 month)))
1990 (<= (or day (if (> n 0)
1992 (calendar-last-day-of-month m2 y2)))
1993 d2)))))
1994 (cons mark entry)))))
1996 (defun diary-ordinal-suffix (n)
1997 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)"
1998 (if (or (memq (% n 100) '(11 12 13))
1999 (< 3 (% n 10)))
2000 "th"
2001 (aref ["th" "st" "nd" "rd"] (% n 10))))
2003 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
2004 (defun diary-anniversary (month day &optional year mark)
2005 "Anniversary diary entry.
2006 Entry applies if date is the anniversary of MONTH, DAY, YEAR.
2007 The order of the input parameters changes according to
2008 `calendar-date-style' (e.g. to DAY MONTH YEAR in the European style).
2010 The diary entry can contain `%d' or `%d%s'; the %d will be replaced
2011 by the number of years since the MONTH, DAY, YEAR, and the %s will
2012 be replaced by the ordinal ending of that number (that is, `st',
2013 `nd', `rd' or `th', as appropriate). The anniversary of February 29
2014 is considered to be March 1 in non-leap years.
2016 An optional parameter MARK specifies a face or single-character
2017 string to use when highlighting the day in the calendar."
2018 (let* ((ddate (diary-make-date month day year))
2019 (dd (calendar-extract-day ddate))
2020 (mm (calendar-extract-month ddate))
2021 (yy (calendar-extract-year ddate))
2022 (y (calendar-extract-year date))
2023 (diff (if yy (- y yy) 100)))
2024 (and (= mm 2) (= dd 29) (not (calendar-leap-year-p y))
2025 (setq mm 3
2026 dd 1))
2027 (and (> diff 0) (calendar-date-equal (list mm dd y) date)
2028 (cons mark (format entry diff (diary-ordinal-suffix diff))))))
2030 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
2031 (defun diary-cyclic (n month day year &optional mark)
2032 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR.
2033 The order of the input parameters changes according to
2034 `calendar-date-style' (e.g. to N DAY MONTH YEAR in the European
2035 style). The entry can contain `%d' or `%d%s'; the %d will be
2036 replaced by the number of repetitions since the MONTH DAY YEAR,
2037 and %s by the ordinal ending of that number (that is, `st', `nd',
2038 `rd' or `th', as appropriate).
2040 An optional parameter MARK specifies a face or single-character
2041 string to use when highlighting the day in the calendar."
2042 (or (> n 0)
2043 (error "Day count must be positive"))
2044 (let* ((diff (- (calendar-absolute-from-gregorian date)
2045 (calendar-absolute-from-gregorian
2046 (diary-make-date month day year))))
2047 (cycle (/ diff n)))
2048 (and (>= diff 0) (zerop (% diff n))
2049 (cons mark (format entry cycle (diary-ordinal-suffix cycle))))))
2051 (defun diary-day-of-year ()
2052 "Day of year and number of days remaining in the year of date diary entry."
2053 (calendar-day-of-year-string date))
2055 (defun diary-remind (sexp days &optional marking)
2056 "Provide a reminder of a diary entry.
2057 SEXP is a diary-sexp. DAYS is either a single number or a list
2058 of numbers indicating the number(s) of days before the event that
2059 the warning(s) should occur on. A negative number -DAYS has the
2060 same meaning as a list (1 2 ... DAYS). If the current date
2061 is (one of) DAYS before the event indicated by SEXP, then this function
2062 returns a suitable message (as specified by `diary-remind-message').
2064 In addition to the reminders beforehand, the diary entry also
2065 appears on the date itself.
2067 A `diary-nonmarking-symbol' at the beginning of the line of the
2068 `diary-remind' entry specifies that the diary entry (not the
2069 reminder) is non-marking. Marking of reminders is independent of
2070 whether the entry itself is a marking or nonmarking; if optional
2071 parameter MARKING is non-nil then the reminders are marked on the
2072 calendar."
2073 ;; `date' has a value at this point, from diary-sexp-entry.
2074 ;; Convert a negative number to a list of days.
2075 (and (integerp days)
2076 (< days 0)
2077 (setq days (number-sequence 1 (- days))))
2078 (let ((diary-entry (eval sexp)))
2079 (cond
2080 ;; Diary entry applies on date.
2081 ((and diary-entry
2082 (or (not diary-marking-entries-flag) diary-marking-entry-flag))
2083 diary-entry)
2084 ;; Diary entry may apply to `days' before date.
2085 ((and (integerp days)
2086 (not diary-entry) ; diary entry does not apply to date
2087 (or (not diary-marking-entries-flag) marking))
2088 ;; Adjust date, and re-evaluate.
2089 (let ((date (calendar-gregorian-from-absolute
2090 (+ (calendar-absolute-from-gregorian date) days))))
2091 (when (setq diary-entry (eval sexp))
2092 ;; Discard any mark portion from diary-anniversary, etc.
2093 (if (consp diary-entry) (setq diary-entry (cdr diary-entry)))
2094 (mapconcat 'eval diary-remind-message ""))))
2095 ;; Diary entry may apply to one of a list of days before date.
2096 ((and (listp days) days)
2097 (or (diary-remind sexp (car days) marking)
2098 (diary-remind sexp (cdr days) marking))))))
2101 ;;; Diary insertion functions.
2103 ;;;###cal-autoload
2104 (defun diary-make-entry (string &optional nonmarking file)
2105 "Insert a diary entry STRING which may be NONMARKING in FILE.
2106 If omitted, NONMARKING defaults to nil and FILE defaults to
2107 `diary-file'."
2108 (let ((pop-up-frames (or pop-up-frames
2109 (window-dedicated-p (selected-window)))))
2110 (find-file-other-window (or file diary-file)))
2111 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
2112 (widen)
2113 (diary-unhide-everything)
2114 (goto-char (point-max))
2115 (when (let ((case-fold-search t))
2116 (search-backward "Local Variables:"
2117 (max (- (point-max) 3000) (point-min))
2119 (beginning-of-line)
2120 (insert "\n")
2121 (forward-line -1))
2122 (insert
2123 (if (bolp) "" "\n")
2124 (if nonmarking diary-nonmarking-symbol "")
2125 string " "))
2127 ;;;###cal-autoload
2128 (define-obsolete-function-alias 'make-diary-entry 'diary-make-entry "23.1")
2130 ;;;###cal-autoload
2131 (defun diary-insert-entry (arg &optional event)
2132 "Insert a diary entry for the date indicated by point.
2133 Prefix argument ARG makes the entry nonmarking."
2134 (interactive
2135 (list current-prefix-arg last-nonmenu-event))
2136 (diary-make-entry (calendar-date-string (calendar-cursor-to-date t event) t t)
2137 arg))
2139 ;;;###cal-autoload
2140 (define-obsolete-function-alias 'insert-diary-entry 'diary-insert-entry "23.1")
2142 ;;;###cal-autoload
2143 (defun diary-insert-weekly-entry (arg)
2144 "Insert a weekly diary entry for the day of the week indicated by point.
2145 Prefix argument ARG makes the entry nonmarking."
2146 (interactive "P")
2147 (diary-make-entry (calendar-day-name (calendar-cursor-to-date t))
2148 arg))
2150 ;;;###cal-autoload
2151 (define-obsolete-function-alias 'insert-weekly-diary-entry
2152 'diary-insert-weekly-entry "23.1")
2154 (defun diary-date-display-form (&optional type)
2155 "Return value for `calendar-date-display-form' using `calendar-date-style'.
2156 Optional symbol TYPE is either `monthly' or `yearly'."
2157 (cond ((eq type 'monthly) (cond ((eq calendar-date-style 'iso)
2158 '((format "*-*-%.2d"
2159 (string-to-number day))))
2160 ((eq calendar-date-style 'european)
2161 '(day " * "))
2162 (t '("* " day ))))
2163 ((eq type 'yearly) (cond ((eq calendar-date-style 'iso)
2164 '((format "*-%.2d-%.2d"
2165 (string-to-number month)
2166 (string-to-number day))))
2167 ((eq calendar-date-style 'european)
2168 '(day " " monthname))
2169 (t '(monthname " " day))))
2170 ;; Iso cannot contain "-", because this form used eg by
2171 ;; diary-insert-anniversary-entry.
2172 (t (cond ((eq calendar-date-style 'iso)
2173 '((format "%s %.2d %.2d" year
2174 (string-to-number month) (string-to-number day))))
2175 ((eq calendar-date-style 'european)
2176 '(day " " month " " year))
2177 (t '(month " " day " " year))))))
2179 (defun diary-insert-entry-1 (&optional type nomark months symbol absfunc)
2180 "Subroutine to insert a diary entry related to the date at point.
2181 TYPE is the type of entry (`monthly' or `yearly'). NOMARK non-nil
2182 means make the entry non-marking. Array MONTHS is used in place
2183 of `calendar-month-name-array'. String SYMBOL marks the type of
2184 diary entry. Function ABSFUNC converts absolute dates to dates of
2185 the appropriate type."
2186 (let ((calendar-date-display-form (if type
2187 (diary-date-display-form type)
2188 calendar-date-display-form))
2189 (calendar-month-name-array (or months calendar-month-name-array))
2190 (date (calendar-cursor-to-date t)))
2191 (diary-make-entry
2192 (format "%s%s" (or symbol "")
2193 (calendar-date-string
2194 (if absfunc
2195 (funcall absfunc (calendar-absolute-from-gregorian date))
2196 date)
2197 (not absfunc)
2198 (not type)))
2199 nomark)))
2201 ;;;###cal-autoload
2202 (defun diary-insert-monthly-entry (arg)
2203 "Insert a monthly diary entry for the day of the month indicated by point.
2204 Prefix argument ARG makes the entry nonmarking."
2205 (interactive "P")
2206 (diary-insert-entry-1 'monthly arg))
2208 ;;;###cal-autoload
2209 (define-obsolete-function-alias 'insert-monthly-diary-entry
2210 'diary-insert-monthly-entry "23.1")
2212 ;;;###cal-autoload
2213 (defun diary-insert-yearly-entry (arg)
2214 "Insert an annual diary entry for the day of the year indicated by point.
2215 Prefix argument ARG makes the entry nonmarking."
2216 (interactive "P")
2217 (diary-insert-entry-1 'yearly arg))
2219 ;;;###cal-autoload
2220 (define-obsolete-function-alias 'insert-yearly-diary-entry
2221 'diary-insert-yearly-entry "23.1")
2223 ;;;###cal-autoload
2224 (defun diary-insert-anniversary-entry (arg)
2225 "Insert an anniversary diary entry for the date given by point.
2226 Prefix argument ARG makes the entry nonmarking."
2227 (interactive "P")
2228 (let ((calendar-date-display-form (diary-date-display-form)))
2229 (diary-make-entry
2230 (format "%s(diary-anniversary %s)"
2231 diary-sexp-entry-symbol
2232 (calendar-date-string (calendar-cursor-to-date t) nil t))
2233 arg)))
2235 ;;;###cal-autoload
2236 (define-obsolete-function-alias 'insert-anniversary-diary-entry
2237 'diary-insert-anniversary-entry "23.1")
2239 ;;;###cal-autoload
2240 (defun diary-insert-block-entry (arg)
2241 "Insert a block diary entry for the days between the point and marked date.
2242 Prefix argument ARG makes the entry nonmarking."
2243 (interactive "P")
2244 (let ((calendar-date-display-form (diary-date-display-form))
2245 (cursor (calendar-cursor-to-date t))
2246 (mark (or (car calendar-mark-ring)
2247 (error "No mark set in this buffer")))
2248 start end)
2249 (if (< (calendar-absolute-from-gregorian mark)
2250 (calendar-absolute-from-gregorian cursor))
2251 (setq start mark
2252 end cursor)
2253 (setq start cursor
2254 end mark))
2255 (diary-make-entry
2256 (format "%s(diary-block %s %s)"
2257 diary-sexp-entry-symbol
2258 (calendar-date-string start nil t)
2259 (calendar-date-string end nil t))
2260 arg)))
2262 ;;;###cal-autoload
2263 (define-obsolete-function-alias 'insert-block-diary-entry
2264 'diary-insert-block-entry "23.1")
2266 ;;;###cal-autoload
2267 (defun diary-insert-cyclic-entry (arg)
2268 "Insert a cyclic diary entry starting at the date given by point.
2269 Prefix argument ARG makes the entry nonmarking."
2270 (interactive "P")
2271 (let ((calendar-date-display-form (diary-date-display-form)))
2272 (diary-make-entry
2273 (format "%s(diary-cyclic %d %s)"
2274 diary-sexp-entry-symbol
2275 (calendar-read "Repeat every how many days: "
2276 (lambda (x) (> x 0)))
2277 (calendar-date-string (calendar-cursor-to-date t) nil t))
2278 arg)))
2280 ;;;###cal-autoload
2281 (define-obsolete-function-alias 'insert-cyclic-diary-entry
2282 'diary-insert-cyclic-entry "23.1")
2284 ;;; Diary mode.
2286 (defun diary-redraw-calendar ()
2287 "If `calendar-buffer' is live and diary entries are marked, redraw it."
2288 (and calendar-mark-diary-entries-flag
2289 (save-excursion
2290 (calendar-redraw)))
2291 ;; Return value suitable for `write-contents-functions'.
2292 nil)
2294 (defvar diary-mode-map
2295 (let ((map (make-sparse-keymap)))
2296 (define-key map "\C-c\C-s" 'diary-show-all-entries)
2297 (define-key map "\C-c\C-q" 'quit-window)
2298 map)
2299 "Keymap for `diary-mode'.")
2301 (defun diary-font-lock-sexps (limit)
2302 "Recognize sexp diary entry up to LIMIT for font-locking."
2303 (if (re-search-forward
2304 (format "^%s?\\(%s\\)" (regexp-quote diary-nonmarking-symbol)
2305 (regexp-quote diary-sexp-entry-symbol))
2306 limit t)
2307 (condition-case nil
2308 (save-restriction
2309 (narrow-to-region (point-min) limit)
2310 (let ((start (point)))
2311 (forward-sexp 1)
2312 (store-match-data (list start (point)))
2314 (error t))))
2316 (defun diary-font-lock-date-forms (month-array &optional symbol abbrev-array)
2317 "Create font-lock patterns for `diary-date-forms' using MONTH-ARRAY.
2318 If given, optional SYMBOL must be a prefix to entries. If
2319 optional ABBREV-ARRAY is present, also matches the abbreviations
2320 from this array (with or without a final `.'), in addition to the
2321 full month names."
2322 (let ((dayname (diary-name-pattern calendar-day-name-array
2323 calendar-day-abbrev-array t))
2324 (monthname (format "\\(%s\\|\\*\\)"
2325 (diary-name-pattern month-array abbrev-array)))
2326 (month "\\([0-9]+\\|\\*\\)")
2327 (day "\\([0-9]+\\|\\*\\)")
2328 (year "-?\\([0-9]+\\|\\*\\)"))
2329 (mapcar (lambda (x)
2330 (cons
2331 (concat "^" (regexp-quote diary-nonmarking-symbol) "?"
2332 (if symbol (regexp-quote symbol) "") "\\("
2333 (mapconcat 'eval
2334 ;; If backup, omit first item (backup)
2335 ;; and last item (not part of date).
2336 (if (equal (car x) 'backup)
2337 (nreverse (cdr (reverse (cdr x))))
2340 ;; With backup, last item is not part of date.
2341 (if (equal (car x) 'backup)
2342 (concat "\\)" (eval (car (reverse x))))
2343 "\\)"))
2344 '(1 diary-face)))
2345 diary-date-forms)))
2347 (defmacro diary-font-lock-keywords-1 (markfunc listfunc feature months symbol)
2348 "Subroutine of the function `diary-font-lock-keywords'.
2349 If MARKFUNC is a member of `diary-nongregorian-marking-hook', or
2350 LISTFUNC of `diary-nongregorian-listing-hook', then require FEATURE and
2351 return a font-lock pattern matching array of MONTHS and marking SYMBOL."
2352 `(when (or (memq ',markfunc diary-nongregorian-marking-hook)
2353 (memq ',listfunc diary-nongregorian-listing-hook))
2354 (require ',feature)
2355 (diary-font-lock-date-forms ,months ,symbol)))
2357 (defconst diary-time-regexp
2358 ;; Accepted formats: 10:00 10.00 10h00 10h 10am 10:00am 10.00am
2359 ;; Use of "." as a separator annoyingly matches numbers, eg "123.45".
2360 ;; Hence often prefix this with "\\(^\\|\\s-\\)."
2361 (concat "[0-9]?[0-9]\\([AaPp][mM]\\|\\("
2362 "[Hh]\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]"
2363 "\\)\\([AaPp][Mm]\\)?\\)")
2364 "Regular expression matching a time of day.")
2366 (defvar calendar-hebrew-month-name-array-leap-year)
2367 (defvar calendar-islamic-month-name-array)
2368 (defvar calendar-bahai-month-name-array)
2370 ;;;###cal-autoload
2371 (defun diary-font-lock-keywords ()
2372 "Return a value for the variable `diary-font-lock-keywords'."
2373 (append
2374 (diary-font-lock-date-forms calendar-month-name-array
2375 nil calendar-month-abbrev-array)
2376 (diary-font-lock-keywords-1 diary-hebrew-mark-entries
2377 diary-hebrew-list-entries
2378 cal-hebrew
2379 calendar-hebrew-month-name-array-leap-year
2380 diary-hebrew-entry-symbol)
2381 (diary-font-lock-keywords-1 diary-islamic-mark-entries
2382 diary-islamic-list-entries
2383 cal-islam
2384 calendar-islamic-month-name-array
2385 diary-islamic-entry-symbol)
2386 (diary-font-lock-keywords-1 diary-bahai-mark-entries
2387 diary-bahai-list-entries
2388 cal-bahai
2389 calendar-bahai-month-name-array
2390 diary-bahai-entry-symbol)
2391 (list
2392 (cons
2393 (format "^%s.*$" (regexp-quote diary-include-string))
2394 'font-lock-keyword-face)
2395 (cons
2396 (format "^%s?\\(%s\\)" (regexp-quote diary-nonmarking-symbol)
2397 (regexp-quote diary-sexp-entry-symbol))
2398 '(1 font-lock-reference-face))
2399 (cons
2400 (format "^%s" (regexp-quote diary-nonmarking-symbol))
2401 'font-lock-reference-face)
2402 (cons
2403 (format "^%s?%s" (regexp-quote diary-nonmarking-symbol)
2404 (regexp-opt (mapcar 'regexp-quote
2405 (list diary-hebrew-entry-symbol
2406 diary-islamic-entry-symbol
2407 diary-bahai-entry-symbol))
2409 '(1 font-lock-reference-face))
2410 '(diary-font-lock-sexps . font-lock-keyword-face)
2411 ;; Don't need to worry about space around "-" because the first
2412 ;; match takes care of that. It does mean the "-" itself may or
2413 ;; may not be fontified though.
2414 ;; diary-date-forms often include a final character that is not
2415 ;; part of the date (eg a non-digit to mark the end of the year).
2416 ;; This can use up the only space char between a date and time (b#7891).
2417 ;; Hence we use OVERRIDE, which can only override whitespace.
2418 ;; FIXME it's probably better to tighten up the diary-time-regexp
2419 ;; and drop the whitespace requirement below.
2420 `(,(format "\\(^\\|\\s-\\)%s\\(-%s\\)?" diary-time-regexp
2421 diary-time-regexp)
2422 . (0 'diary-time t)))))
2423 ; . 'diary-time))))
2425 (defvar diary-font-lock-keywords (diary-font-lock-keywords)
2426 "Forms to highlight in `diary-mode'.")
2428 ;;;###autoload
2429 (define-derived-mode diary-mode fundamental-mode "Diary"
2430 "Major mode for editing the diary file."
2431 (set (make-local-variable 'font-lock-defaults)
2432 '(diary-font-lock-keywords t))
2433 (set (make-local-variable 'comment-start) diary-comment-start)
2434 (set (make-local-variable 'comment-end) diary-comment-end)
2435 (add-to-invisibility-spec '(diary . nil))
2436 (add-hook 'after-save-hook 'diary-redraw-calendar nil t)
2437 ;; In case the file was modified externally, refresh the calendar
2438 ;; after refreshing the diary buffer.
2439 (add-hook 'after-revert-hook 'diary-redraw-calendar nil t)
2440 (if diary-header-line-flag
2441 (setq header-line-format diary-header-line-format)))
2444 ;;; Fancy Diary Mode.
2446 (defun diary-fancy-date-pattern ()
2447 "Return a regexp matching the first line of a fancy diary date header.
2448 This depends on the calendar date style."
2449 (concat
2450 (let ((dayname (diary-name-pattern calendar-day-name-array nil t))
2451 (monthname (diary-name-pattern calendar-month-name-array nil t))
2452 (day "1")
2453 (month "2")
2454 ;; FIXME? This used to be "-?[0-9]+" - what was the "-?" for?
2455 (year "3"))
2456 ;; This is ugly. c-d-d-form expects `day' etc to be "numbers in
2457 ;; string form"; eg the iso version calls string-to-number on some.
2458 ;; Therefore we cannot eg just let day = "[0-9]+". (Bug#8583).
2459 ;; Assumes no integers in c-day/month-name-array.
2460 (replace-regexp-in-string "[0-9]+" "[0-9]+"
2461 (mapconcat 'eval calendar-date-display-form "")
2462 nil t))
2463 ;; Optional ": holiday name" after the date.
2464 "\\(: .*\\)?"))
2466 (defun diary-fancy-date-matcher (limit)
2467 "Search for a fancy diary data header, up to LIMIT."
2468 ;; Any number of " other holiday name" lines, followed by "==" line.
2469 (when (re-search-forward
2470 (format "%s\\(\n +.*\\)*\n=+$" (diary-fancy-date-pattern)) limit t)
2471 (put-text-property (match-beginning 0) (match-end 0) 'font-lock-multiline t)
2474 (define-obsolete-variable-alias 'fancy-diary-font-lock-keywords
2475 'diary-fancy-font-lock-keywords "23.1")
2477 (defvar diary-fancy-font-lock-keywords
2478 `((diary-fancy-date-matcher . diary-face)
2479 ("^.*\\([aA]nniversary\\|[bB]irthday\\).*$" . 'diary-anniversary)
2480 ("^.*Yahrzeit.*$" . font-lock-reference-face)
2481 ("^\\(Erev \\)?Rosh Hodesh.*" . font-lock-function-name-face)
2482 ("^Day.*omer.*$" . font-lock-builtin-face)
2483 ("^Parashat.*$" . font-lock-comment-face)
2484 (,(format "\\(^\\|\\s-\\)%s\\(-%s\\)?" diary-time-regexp
2485 diary-time-regexp) . 'diary-time))
2486 "Keywords to highlight in fancy diary display.")
2488 ;; If region looks like it might start or end in the middle of a
2489 ;; multiline pattern, extend the region to encompass the whole pattern.
2490 (defun diary-fancy-font-lock-fontify-region-function (beg end &optional verbose)
2491 "Function to use for `font-lock-fontify-region-function' in Fancy Diary.
2492 Needed to handle multiline keyword in `diary-fancy-font-lock-keywords'.
2493 Fontify the region between BEG and END, quietly unless VERBOSE is non-nil."
2494 (goto-char beg)
2495 (forward-line 0)
2496 (if (looking-at "=+$") (forward-line -1))
2497 (while (and (looking-at " +[^ ]")
2498 (zerop (forward-line -1))))
2499 ;; This check not essential.
2500 (if (looking-at (diary-fancy-date-pattern))
2501 (setq beg (line-beginning-position)))
2502 (goto-char end)
2503 (forward-line 0)
2504 (while (and (looking-at " +[^ ]")
2505 (zerop (forward-line 1))))
2506 (if (looking-at "=+$")
2507 (setq end (line-beginning-position 2)))
2508 (font-lock-default-fontify-region beg end verbose))
2510 (defvar diary-fancy-overriding-map (make-sparse-keymap)
2511 "Keymap overriding minor-mode maps in `diary-fancy-display-mode'.")
2513 (define-derived-mode diary-fancy-display-mode special-mode
2514 "Diary"
2515 "Major mode used while displaying diary entries using Fancy Display."
2516 (set (make-local-variable 'font-lock-defaults)
2517 '(diary-fancy-font-lock-keywords
2518 t nil nil nil
2519 (font-lock-fontify-region-function
2520 . diary-fancy-font-lock-fontify-region-function)))
2521 (set (make-local-variable 'minor-mode-overriding-map-alist)
2522 (list (cons t diary-fancy-overriding-map)))
2523 (view-mode 1))
2525 (define-obsolete-function-alias 'fancy-diary-display-mode
2526 'diary-fancy-display-mode "23.1")
2528 ;; Following code from Dave Love <fx@gnu.org>.
2529 ;; Import Outlook-format appointments from mail messages in Gnus or
2530 ;; Rmail using command `diary-from-outlook'. This, or the specialized
2531 ;; functions `diary-from-outlook-gnus' and `diary-from-outlook-rmail',
2532 ;; could be run from hooks to notice appointments automatically (in
2533 ;; which case they will prompt about adding to the diary). The
2534 ;; message formats recognized are customizable through `diary-outlook-formats'.
2536 (defun diary-from-outlook-internal (subject body &optional test-only)
2537 "Snarf a diary entry from a message assumed to be from MS Outlook.
2538 SUBJECT and BODY are strings giving the message subject and body.
2539 Arg TEST-ONLY non-nil means return non-nil if and only if the
2540 message contains an appointment, don't make a diary entry."
2541 (catch 'finished
2542 (let (format-string)
2543 (dolist (fmt diary-outlook-formats)
2544 (when (eq 0 (string-match (car fmt) body))
2545 (unless test-only
2546 (setq format-string (cdr fmt))
2547 (save-excursion
2548 (save-window-excursion
2549 (diary-make-entry
2550 (format (replace-match (if (functionp format-string)
2551 (funcall format-string body)
2552 format-string)
2553 t nil (match-string 0 body))
2554 subject)))))
2555 (throw 'finished t))))
2556 nil))
2558 (defvar gnus-article-mime-handles)
2559 (defvar gnus-article-buffer)
2561 (autoload 'gnus-fetch-field "gnus-util")
2562 (autoload 'gnus-narrow-to-body "gnus")
2563 (autoload 'mm-get-part "mm-decode")
2565 (defun diary-from-outlook-gnus (&optional noconfirm)
2566 "Maybe snarf diary entry from Outlook-generated message in Gnus.
2567 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2568 this function is called interactively), then if an entry is found the
2569 user is asked to confirm its addition.
2570 Add this function to `gnus-article-prepare-hook' to notice appointments
2571 automatically."
2572 (interactive "p")
2573 (with-current-buffer gnus-article-buffer
2574 (let ((subject (gnus-fetch-field "subject"))
2575 (body (if gnus-article-mime-handles
2576 ;; We're multipart. Don't get confused by part
2577 ;; buttons &c. Assume info is in first part.
2578 (mm-get-part (nth 1 gnus-article-mime-handles))
2579 (save-restriction
2580 (gnus-narrow-to-body)
2581 (buffer-string)))))
2582 (when (diary-from-outlook-internal subject body t)
2583 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2584 (diary-from-outlook-internal subject body)
2585 (message "Diary entry added"))))))
2587 (custom-add-option 'gnus-article-prepare-hook 'diary-from-outlook-gnus)
2589 (defvar rmail-buffer)
2591 (defun diary-from-outlook-rmail (&optional noconfirm)
2592 "Maybe snarf diary entry from Outlook-generated message in Rmail.
2593 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2594 this function is called interactively), then if an entry is found the
2595 user is asked to confirm its addition."
2596 (interactive "p")
2597 ;; FIXME maybe the body needs rmail-mm decoding, in which case
2598 ;; there is no single buffer with both body and subject, sigh.
2599 (with-current-buffer rmail-buffer
2600 (let ((subject (mail-fetch-field "subject"))
2601 (body (buffer-substring (save-excursion
2602 (rfc822-goto-eoh)
2603 (point))
2604 (point-max))))
2605 (when (diary-from-outlook-internal subject body t)
2606 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2607 (diary-from-outlook-internal subject body)
2608 (message "Diary entry added"))))))
2610 (defun diary-from-outlook (&optional noconfirm)
2611 "Maybe snarf diary entry from current Outlook-generated message.
2612 Currently knows about Gnus and Rmail modes. Unless the optional
2613 argument NOCONFIRM is non-nil (which is the case when this
2614 function is called interactively), then if an entry is found the
2615 user is asked to confirm its addition."
2616 (interactive "p")
2617 (let ((func (cond
2618 ((eq major-mode 'rmail-mode)
2619 #'diary-from-outlook-rmail)
2620 ((memq major-mode '(gnus-summary-mode gnus-article-mode))
2621 #'diary-from-outlook-gnus)
2622 (t (error "Don't know how to snarf in `%s'" major-mode)))))
2623 (funcall func noconfirm)))
2625 (provide 'diary-lib)
2627 ;;; diary-lib.el ends here