Merge from emacs-23; up to 2010-06-10T12:56:11Z!michael.albinus@gmx.de.
[bpt/emacs.git] / lisp / calendar / diary-lib.el
1 ;;; diary-lib.el --- diary functions
2
3 ;; Copyright (C) 1989-1990, 1992-1995, 2001-2011
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; See calendar.el.
28
29 ;;; Code:
30
31 (require 'calendar)
32 (eval-and-compile (load "diary-loaddefs" nil t))
33
34 (defgroup diary nil
35 "Emacs diary."
36 :prefix "diary-"
37 :group 'calendar)
38
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)
44
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)
51
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")
58
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)
63
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)
68
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)
74
75 (define-obsolete-face-alias 'diary-button-face 'diary-button "22.1")
76
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)
100 )
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)
120
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)
125
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)
130
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)
135
136 (define-obsolete-variable-alias 'sexp-diary-entry-symbol
137 'diary-sexp-entry-symbol "23.1")
138
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)
144
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)
156
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)
164
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)
170
171 (define-obsolete-variable-alias 'diary-display-hook 'diary-display-function
172 "23.1")
173
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'.
177
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.
182
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)
198
199 (define-obsolete-variable-alias 'list-diary-entries-hook
200 'diary-list-entries-hook "23.1")
201
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
207
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)
211
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.
216
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)
227
228 (define-obsolete-variable-alias 'mark-diary-entries-hook
229 'diary-mark-entries-hook "23.1")
230
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'.
236
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)
244
245 (define-obsolete-variable-alias 'nongregorian-diary-listing-hook
246 'diary-nongregorian-listing-hook "23.1")
247
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.
255
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)
264
265 (define-obsolete-variable-alias 'nongregorian-diary-marking-hook
266 'diary-nongregorian-marking-hook "23.1")
267
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.
275
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)
284
285 (define-obsolete-variable-alias 'print-diary-entries-hook
286 'diary-print-entries-hook "23.1")
287
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)
297
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")
306
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")
313
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")
319
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.
328
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)
334
335 (define-obsolete-variable-alias 'abbreviated-calendar-year
336 'diary-abbreviated-year-flag "23.1")
337
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)
347
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.
382
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.
391
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'.
401
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)
412
413 (defvar diary-header-line-flag)
414 (defvar diary-header-line-format)
415
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)))))))
427
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")
438
439 (defvar diary-selective-display nil
440 "Internal diary variable; non-nil if some diary text is hidden.")
441
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
456
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))))
473
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))))
485
486 (define-obsolete-variable-alias 'number-of-diary-entries
487 'diary-number-of-entries "23.1")
488
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.
496
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.
501
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)
517
518 ;;; More user options in calendar.el, holidays.el.
519
520
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)))
529
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))))
540
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))
550
551
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)))
563
564 ;;;###cal-autoload
565 (define-obsolete-function-alias 'view-other-diary-entries
566 'diary-view-other-diary-entries "23.1")
567
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)
572 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.")
576
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))))
588
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)))
630
631
632
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.")
638
639 (defvar diary-entries-list) ; bound in diary-list-entries
640
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.
651
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.
655
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)))))))
685
686 (define-obsolete-function-alias 'add-to-diary-list 'diary-add-to-list "23.1")
687
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))
721 t))
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))
757
758 (defvar original-date) ; from diary-list-entries
759 (defvar file-glob-attrs)
760 (defvar list-only)
761 (defvar number)
762
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)))
777
778 (defvar diary-included-files nil
779 "List of any diary files included in the last call to `diary-list-entries'.")
780
781 (defun diary-list-entries (date number &optional list-only)
782 "Create and display a buffer containing the relevant lines in `diary-file'.
783 Selects entries for NUMBER days starting with date DATE. Hides any
784 other entries using overlays. If NUMBER is less than 1, this function
785 does nothing.
786
787 Returns a list of all relevant diary entries found.
788 The list entries have the form ((MONTH DAY YEAR) STRING SPECIFIER) where
789 \(MONTH DAY YEAR) is the date of the entry, STRING is the entry text, and
790 SPECIFIER is the applicability. If the variable `diary-list-include-blanks'
791 is non-nil, this list includes a dummy diary entry consisting of the empty
792 string for a date with no diary entries.
793
794 If producing entries for multiple dates (i.e., NUMBER > 1), then
795 this function normally returns the entries from any given diary
796 file in date order. The entries for any given day are in the
797 order in which they were found in the file, not necessarily in
798 time-of-day order. Note that any functions present on the
799 hooks (see below) may add entries, or change the order. For
800 example, `diary-include-other-diary-files' adds entries from any
801 include files that it finds to the end of the original list. The
802 entries from each file will be in date order, but the overall
803 list will not be. If you want the entire list to be in time
804 order, add `diary-sort-entries' to the end of `diary-list-entries-hook'.
805
806 After preparing the initial list, hooks run in this order:
807
808 `diary-nongregorian-listing-hook' runs for the main diary file,
809 and each included file. For example, this is the appropriate hook
810 to process Islamic entries in all diary files.
811
812 `diary-list-entries-hook' runs once only, for the main diary file.
813 For example, this is appropriate for sorting all the entries.
814 If not using include files, there is no difference from the previous
815 hook.
816
817 `diary-hook' runs last, after the diary is displayed.
818 This is used e.g. by `appt-check'.
819
820 Functions called by these hooks may use the variables ORIGINAL-DATE
821 and NUMBER, which are the arguments with which this function was called.
822 Note that hook functions should _not_ use DATE, but ORIGINAL-DATE.
823 \(Sexp diary entries may use DATE - see `diary-list-sexp-entries'.)
824
825 This function displays the list using `diary-display-function', unless
826 LIST-ONLY is non-nil, in which case it just returns the list."
827 (unless number
828 (setq number (if (vectorp diary-number-of-entries)
829 (aref diary-number-of-entries (calendar-day-of-week date))
830 diary-number-of-entries)))
831 (when (> number 0)
832 (let* ((original-date date) ; save for possible use in the hooks
833 (date-string (calendar-date-string date))
834 (diary-buffer (find-buffer-visiting diary-file))
835 ;; Dynamically bound in diary-include-other-diary-files.
836 (d-incp (and (boundp 'diary-including) diary-including))
837 diary-entries-list file-glob-attrs temp-buff)
838 (unless d-incp
839 (setq diary-included-files nil)
840 (message "Preparing diary..."))
841 (unwind-protect
842 (with-current-buffer (or diary-buffer
843 (if list-only
844 (setq temp-buff (generate-new-buffer
845 " *diary-temp*"))
846 (find-file-noselect diary-file t)))
847 (if diary-buffer
848 (or (verify-visited-file-modtime diary-buffer)
849 (revert-buffer t t)))
850 (if temp-buff
851 ;; If including, caller has already verified it is readable.
852 (insert-file-contents diary-file)
853 ;; Setup things like the header-line-format and invisibility-spec.
854 (if (eq major-mode (default-value 'major-mode))
855 (diary-mode)
856 ;; This kludge is to make customizations to
857 ;; diary-header-line-flag after diary has been displayed
858 ;; take effect. Unconditionally calling (diary-mode)
859 ;; clobbers file local variables.
860 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-03/msg00363.html
861 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-04/msg00404.html
862 (if (eq major-mode 'diary-mode)
863 (setq header-line-format (and diary-header-line-flag
864 diary-header-line-format)))))
865 ;; d-s-p is passed to the diary display function.
866 (let ((diary-saved-point (point)))
867 (save-excursion
868 (save-restriction
869 (widen) ; bug#5093
870 (setq file-glob-attrs (cadr (diary-pull-attrs nil "")))
871 (with-syntax-table diary-syntax-table
872 (goto-char (point-min))
873 (unless list-only
874 (let ((ol (make-overlay (point-min) (point-max) nil t nil)))
875 (set (make-local-variable 'diary-selective-display) t)
876 (overlay-put ol 'invisible 'diary)
877 (overlay-put ol 'evaporate t)))
878 (dotimes (_idummy number)
879 (let ((sexp-found (diary-list-sexp-entries date))
880 (entry-found (diary-list-entries-2
881 date diary-nonmarking-symbol
882 file-glob-attrs list-only)))
883 (if diary-list-include-blanks
884 (or sexp-found entry-found
885 (diary-add-to-list date "" "" "" "")))
886 (setq date
887 (calendar-gregorian-from-absolute
888 (1+ (calendar-absolute-from-gregorian date)))))))
889 (goto-char (point-min))
890 ;; Although it looks like list-entries-hook runs
891 ;; every time, diary-include-other-diary-files
892 ;; binds it to nil (essentially) when it runs
893 ;; in included files.
894 (run-hooks 'diary-nongregorian-listing-hook
895 'diary-list-entries-hook)
896 ;; We could make this explicit:
897 ;;; (run-hooks 'diary-nongregorian-listing-hook)
898 ;;; (if d-incp
899 ;;; (diary-include-other-diary-files) ; recurse
900 ;;; (run-hooks 'diary-list-entries-hook))
901 (unless list-only
902 (if (and diary-display-function
903 (listp diary-display-function))
904 ;; Backwards compatibility.
905 (run-hooks 'diary-display-function)
906 (funcall (or diary-display-function
907 'diary-simple-display))))
908 (run-hooks 'diary-hook)))))
909 (and temp-buff (buffer-name temp-buff) (kill-buffer temp-buff)))
910 (or d-incp (message "Preparing diary...done"))
911 diary-entries-list)))
912
913 (defun diary-unhide-everything ()
914 "Show all invisible text in the diary."
915 (kill-local-variable 'diary-selective-display)
916 (save-restriction ; bug#5477
917 (widen)
918 (remove-overlays (point-min) (point-max) 'invisible 'diary))
919 (kill-local-variable 'mode-line-format))
920
921 (defvar original-date) ; bound in diary-list-entries
922 ;(defvar number) ; already declared above
923
924 (defun diary-include-other-diary-files ()
925 "Add diary entries from included diary files to `diary-entries-list'.
926 For example, this enables you to share common diary files.
927 To use, add this function to `diary-list-entries-hook'.
928 Specify include files using lines matching `diary-include-string', e.g.
929 #include \"filename\"
930 This is recursive; that is, included files may include other files.
931 See also `diary-mark-included-diary-files'."
932 (goto-char (point-min))
933 (while (re-search-forward
934 (format "^%s \"\\([^\"]*\\)\"" (regexp-quote diary-include-string))
935 nil t)
936 (let ((diary-file (match-string-no-properties 1))
937 (diary-list-entries-hook 'diary-include-other-diary-files)
938 (diary-including t)
939 diary-hook diary-list-include-blanks efile)
940 (if (file-exists-p diary-file)
941 (if (file-readable-p diary-file)
942 (if (member (setq efile (expand-file-name diary-file))
943 diary-included-files)
944 (error "Recursive diary include for %s" diary-file)
945 (setq diary-included-files
946 (append diary-included-files (list efile))
947 diary-entries-list
948 (append diary-entries-list
949 (diary-list-entries original-date number t))))
950 (beep)
951 (message "Can't read included diary file %s" diary-file)
952 (sleep-for 2))
953 (beep)
954 (message "Can't find included diary file %s" diary-file)
955 (sleep-for 2))))
956 (goto-char (point-min)))
957
958 (define-obsolete-function-alias 'include-other-diary-files
959 'diary-include-other-diary-files "23.1")
960
961 (defvar date-string) ; bound in diary-list-entries
962
963 (defun diary-display-no-entries ()
964 "Common subroutine of `diary-simple-display' and `diary-fancy-display'.
965 Handles the case where there are no diary entries.
966 Returns a cons (NOENTRIES . HOLIDAY-STRING)."
967 (let* ((holiday-list (if diary-show-holidays-flag
968 (calendar-check-holidays original-date)))
969 (hol-string (format "%s%s%s"
970 date-string
971 (if holiday-list ": " "")
972 (mapconcat 'identity holiday-list "; ")))
973 (msg (format "No diary entries for %s" hol-string))
974 ;; Empty list, or single item with no text.
975 ;; FIXME multiple items with no text?
976 (noentries (or (not diary-entries-list)
977 (and (not (cdr diary-entries-list))
978 (string-equal "" (cadr
979 (car diary-entries-list)))))))
980 ;; Inconsistency: whether or not the holidays are displayed in a
981 ;; separate buffer depends on if there are diary entries.
982 (when noentries
983 (if (or (< (length msg) (frame-width))
984 (not holiday-list))
985 (message "%s" msg)
986 ;; holiday-list which is too wide for a message gets a buffer.
987 (calendar-in-read-only-buffer holiday-buffer
988 (calendar-set-mode-line (format "Holidays for %s" date-string))
989 (insert (mapconcat 'identity holiday-list "\n")))
990 (message "No diary entries for %s" date-string)))
991 (cons noentries hol-string)))
992
993
994 (defvar diary-saved-point) ; bound in diary-list-entries
995
996 (defun diary-simple-display ()
997 "Display the diary buffer if there are any relevant entries or holidays.
998 Entries that do not apply are made invisible. Holidays are shown
999 in the mode line. This is an option for `diary-display-function'."
1000 ;; If selected window is dedicated (to the calendar), need a new one
1001 ;; to display the diary.
1002 (let* ((pop-up-frames (or pop-up-frames
1003 (window-dedicated-p (selected-window))))
1004 (dbuff (find-buffer-visiting diary-file))
1005 (empty (diary-display-no-entries)))
1006 ;; This may be too wide, but when simple diary is used there is
1007 ;; nowhere else for the holidays to go. Also, it is documented in
1008 ;; diary-show-holidays-flag that the holidays go in the mode-line.
1009 ;; FIXME however if there are no diary entries a separate buffer
1010 ;; is displayed - this is inconsistent.
1011 (with-current-buffer dbuff
1012 (calendar-set-mode-line (format "Diary for %s" (cdr empty))))
1013 (unless (car empty) ; no entries
1014 (with-current-buffer dbuff
1015 (let ((window (display-buffer (current-buffer))))
1016 ;; d-s-p is passed from diary-list-entries.
1017 (set-window-point window diary-saved-point)
1018 (set-window-start window (point-min)))))))
1019
1020 (define-obsolete-function-alias 'simple-diary-display
1021 'diary-simple-display "23.1")
1022
1023 (define-button-type 'diary-entry 'action #'diary-goto-entry
1024 'face 'diary-button 'help-echo "Find this diary entry"
1025 'follow-link t)
1026
1027 (defun diary-goto-entry (button)
1028 "Jump to the diary entry for the BUTTON at point."
1029 (let* ((locator (button-get button 'locator))
1030 (marker (car locator))
1031 markbuf file)
1032 ;; If marker pointing to diary location is valid, use that.
1033 (if (and marker (setq markbuf (marker-buffer marker)))
1034 (progn
1035 (pop-to-buffer markbuf)
1036 (goto-char (marker-position marker)))
1037 ;; Marker is invalid (eg buffer has been killed).
1038 (or (and (setq file (cadr locator))
1039 (file-exists-p file)
1040 (find-file-other-window file)
1041 (progn
1042 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
1043 (goto-char (point-min))
1044 (if (re-search-forward (format "%s.*\\(%s\\)"
1045 (regexp-quote (nth 2 locator))
1046 (regexp-quote (nth 3 locator)))
1047 nil t)
1048 (goto-char (match-beginning 1)))))
1049 (message "Unable to locate this diary entry")))))
1050
1051 (defun diary-fancy-display ()
1052 "Prepare a diary buffer with relevant entries in a fancy, noneditable form.
1053 Holidays are shown unless `diary-show-holidays-flag' is nil.
1054 Days with no diary entries are not shown (even if that day is a
1055 holiday), unless `diary-list-include-blanks' is non-nil.
1056
1057 This is an option for `diary-display-function'."
1058 ;; Turn off selective-display in the diary file's buffer.
1059 (with-current-buffer (find-buffer-visiting diary-file)
1060 (diary-unhide-everything))
1061 (unless (car (diary-display-no-entries)) ; no entries
1062 ;; Prepare the fancy diary buffer.
1063 (calendar-in-read-only-buffer diary-fancy-buffer
1064 (calendar-set-mode-line "Diary Entries")
1065 (let ((holiday-list-last-month 1)
1066 (holiday-list-last-year 1)
1067 (date (list 0 0 0))
1068 holiday-list)
1069 (dolist (entry diary-entries-list)
1070 (unless (calendar-date-equal date (car entry))
1071 (setq date (car entry))
1072 (and diary-show-holidays-flag
1073 (calendar-date-compare
1074 (list (list holiday-list-last-month
1075 (calendar-last-day-of-month
1076 holiday-list-last-month
1077 holiday-list-last-year)
1078 holiday-list-last-year))
1079 (list date))
1080 ;; We need to get the holidays for the next 3 months.
1081 (setq holiday-list-last-month
1082 (calendar-extract-month date)
1083 holiday-list-last-year
1084 (calendar-extract-year date))
1085 (progn
1086 (calendar-increment-month
1087 holiday-list-last-month holiday-list-last-year 1)
1088 t)
1089 (setq holiday-list
1090 (let ((displayed-month holiday-list-last-month)
1091 (displayed-year holiday-list-last-year))
1092 (calendar-holiday-list)))
1093 (calendar-increment-month
1094 holiday-list-last-month holiday-list-last-year 1))
1095 (let ((longest 0)
1096 date-holiday-list cc)
1097 ;; Make a list of all holidays for date.
1098 (dolist (h holiday-list)
1099 (if (calendar-date-equal date (car h))
1100 (setq date-holiday-list (append date-holiday-list
1101 (cdr h)))))
1102 (insert (if (bobp) "" ?\n) (calendar-date-string date))
1103 (if date-holiday-list (insert ": "))
1104 (setq cc (current-column))
1105 (insert (mapconcat (lambda (x)
1106 (setq longest (max longest (length x)))
1107 x)
1108 date-holiday-list
1109 (concat "\n" (make-string cc ?\s))))
1110 (insert ?\n (make-string (+ cc longest) ?=) ?\n)))
1111 (let ((this-entry (cadr entry))
1112 this-loc marks temp-face)
1113 (unless (zerop (length this-entry))
1114 (if (setq this-loc (nth 3 entry))
1115 (insert-button this-entry
1116 ;; (MARKER FILENAME SPECIFIER LITERAL)
1117 'locator (list (car this-loc)
1118 (cadr this-loc)
1119 (nth 2 entry)
1120 (or (nth 2 this-loc)
1121 (nth 1 entry)))
1122 :type 'diary-entry)
1123 (insert this-entry))
1124 (insert ?\n)
1125 ;; Doesn't make sense to check font-lock-mode - see
1126 ;; comments above diary-entry-marker in calendar.el.
1127 (and ; font-lock-mode
1128 (setq marks (nth 4 entry))
1129 (save-excursion
1130 (setq temp-face (calendar-make-temp-face marks))
1131 (search-backward this-entry)
1132 (overlay-put
1133 (make-overlay (match-beginning 0) (match-end 0))
1134 'face temp-face)))))))
1135 ;; FIXME can't remember what this check was for.
1136 ;; To prevent something looping, or a minor optimization?
1137 (if (eq major-mode 'diary-fancy-display-mode)
1138 (run-hooks 'diary-fancy-display-mode-hook)
1139 (diary-fancy-display-mode))
1140 (calendar-set-mode-line date-string))))
1141
1142 (define-obsolete-function-alias 'fancy-diary-display
1143 'diary-fancy-display "23.1")
1144
1145 ;; FIXME modernize?
1146 (defun diary-print-entries ()
1147 "Print a hard copy of the diary display.
1148
1149 If the simple diary display is being used, prepare a temp buffer with the
1150 visible lines of the diary buffer, add a heading line composed from the mode
1151 line, print the temp buffer, and destroy it.
1152
1153 If the fancy diary display is being used, just print the buffer.
1154
1155 The hooks given by the variable `diary-print-entries-hook' are called to do
1156 the actual printing."
1157 (interactive)
1158 (let ((diary-buffer (get-buffer diary-fancy-buffer))
1159 temp-buffer heading start end)
1160 (if diary-buffer
1161 (with-current-buffer diary-buffer
1162 (run-hooks 'diary-print-entries-hook))
1163 (or (setq diary-buffer (find-buffer-visiting diary-file))
1164 (error "You don't have a diary buffer!"))
1165 ;; Name affects printing?
1166 (setq temp-buffer (get-buffer-create " *Printable Diary Entries*"))
1167 (with-current-buffer diary-buffer
1168 (setq heading
1169 (if (not (stringp mode-line-format))
1170 "All Diary Entries"
1171 (string-match "^-*\\([^-].*[^-]\\)-*$" mode-line-format)
1172 (match-string 1 mode-line-format))
1173 start (point-min))
1174 (while
1175 (progn
1176 (setq end (next-single-char-property-change start 'invisible))
1177 (unless (get-char-property start 'invisible)
1178 (with-current-buffer temp-buffer
1179 (insert-buffer-substring diary-buffer start end)))
1180 (setq start end)
1181 (and end (< end (point-max))))))
1182 (set-buffer temp-buffer)
1183 (goto-char (point-min))
1184 (insert heading "\n"
1185 (make-string (length heading) ?=) "\n")
1186 (run-hooks 'diary-print-entries-hook)
1187 (kill-buffer temp-buffer))))
1188
1189 (define-obsolete-function-alias 'print-diary-entries
1190 'diary-print-entries "23.1")
1191
1192 ;;;###cal-autoload
1193 (defun diary-show-all-entries ()
1194 "Show all of the diary entries in the diary file.
1195 This function gets rid of the selective display of the diary file so that
1196 all entries, not just some, are visible. If there is no diary buffer, one
1197 is created."
1198 (interactive)
1199 (let* ((d-file (diary-check-diary-file))
1200 (pop-up-frames (or pop-up-frames
1201 (window-dedicated-p (selected-window))))
1202 (win (selected-window))
1203 (height (window-height)))
1204 (with-current-buffer (or (find-buffer-visiting d-file)
1205 (find-file-noselect d-file t))
1206 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
1207 (diary-unhide-everything)
1208 (display-buffer (current-buffer))
1209 (when (and (/= height (window-height win))
1210 (with-current-buffer (window-buffer win)
1211 (derived-mode-p 'calendar-mode)))
1212 (fit-window-to-buffer win)))))
1213
1214 ;;;###autoload
1215 (defun diary-mail-entries (&optional ndays)
1216 "Send a mail message showing diary entries for next NDAYS days.
1217 If no prefix argument is given, NDAYS is set to `diary-mail-days'.
1218 Mail is sent to the address specified by `diary-mail-addr'.
1219
1220 Here is an example of a script to call `diary-mail-entries',
1221 suitable for regular scheduling using cron (or at). Note that
1222 since `emacs -script' does not load your `.emacs' file, you
1223 should ensure that all relevant variables are set.
1224
1225 #!/usr/bin/emacs -script
1226 ;; diary-rem.el - run the Emacs diary-reminder
1227
1228 \(setq diary-mail-days 3
1229 diary-file \"/path/to/diary.file\"
1230 calendar-date-style 'european
1231 diary-mail-addr \"user@host.name\")
1232
1233 \(diary-mail-entries)
1234
1235 # diary-rem.el ends here
1236 "
1237 (interactive "P")
1238 (if (string-equal diary-mail-addr "")
1239 (error "You must set `diary-mail-addr' to use this command")
1240 (let ((diary-display-function 'diary-fancy-display))
1241 (diary-list-entries (calendar-current-date) (or ndays diary-mail-days)))
1242 (compose-mail diary-mail-addr
1243 (concat "Diary entries generated "
1244 (calendar-date-string (calendar-current-date))))
1245 (insert
1246 (if (get-buffer diary-fancy-buffer)
1247 (with-current-buffer diary-fancy-buffer (buffer-string))
1248 "No entries found"))
1249 (call-interactively (get mail-user-agent 'sendfunc))))
1250
1251 (defun diary-name-pattern (string-array &optional abbrev-array paren)
1252 "Return a regexp matching the strings in the array STRING-ARRAY.
1253 If the optional argument ABBREV-ARRAY is present, then the function
1254 `calendar-abbrev-construct' is used to construct abbreviations from the
1255 two supplied arrays. The returned regexp will then also match these
1256 abbreviations, with or without final `.' characters. If the optional
1257 argument PAREN is non-nil, the regexp is surrounded by parentheses."
1258 (regexp-opt (append string-array
1259 (if abbrev-array
1260 (calendar-abbrev-construct abbrev-array
1261 string-array))
1262 (if abbrev-array
1263 (calendar-abbrev-construct abbrev-array
1264 string-array
1265 'period))
1266 nil)
1267 paren))
1268
1269 (defvar diary-marking-entries-flag nil
1270 "True during the marking of diary entries, nil otherwise.")
1271
1272 (defvar diary-marking-entry-flag nil
1273 "True during the marking of diary entries, if current entry is marking.")
1274
1275 ;; file-glob-attrs bound in diary-mark-entries.
1276 (defun diary-mark-entries-1 (markfunc &optional months symbol absfunc)
1277 "Mark diary entries of a certain type.
1278 MARKFUNC is a function that marks entries of the appropriate type
1279 matching a given date pattern. MONTHS is an array of month names.
1280 SYMBOL marks diary entries of the type in question. ABSFUNC is a
1281 function that converts absolute dates to dates of the appropriate type. "
1282 (let ((dayname (diary-name-pattern calendar-day-name-array
1283 calendar-day-abbrev-array))
1284 (monthname (format "%s\\|\\*"
1285 (if months
1286 (diary-name-pattern months)
1287 (diary-name-pattern calendar-month-name-array
1288 calendar-month-abbrev-array))))
1289 (month "[0-9]+\\|\\*")
1290 (day "[0-9]+\\|\\*")
1291 (year "[0-9]+\\|\\*")
1292 (case-fold-search t)
1293 marks)
1294 (dolist (date-form diary-date-forms)
1295 (if (eq (car date-form) 'backup) ; ignore 'backup directive
1296 (setq date-form (cdr date-form)))
1297 (let* ((l (length date-form))
1298 (d-name-pos (- l (length (memq 'dayname date-form))))
1299 (d-name-pos (if (/= l d-name-pos) (1+ d-name-pos)))
1300 (m-name-pos (- l (length (memq 'monthname date-form))))
1301 (m-name-pos (if (/= l m-name-pos) (1+ m-name-pos)))
1302 (d-pos (- l (length (memq 'day date-form))))
1303 (d-pos (if (/= l d-pos) (1+ d-pos)))
1304 (m-pos (- l (length (memq 'month date-form))))
1305 (m-pos (if (/= l m-pos) (1+ m-pos)))
1306 (y-pos (- l (length (memq 'year date-form))))
1307 (y-pos (if (/= l y-pos) (1+ y-pos)))
1308 (regexp (format "^%s\\(%s\\)"
1309 (if symbol (regexp-quote symbol) "")
1310 (mapconcat 'eval date-form "\\)\\("))))
1311 (goto-char (point-min))
1312 (while (re-search-forward regexp nil t)
1313 (let* ((dd-name
1314 (if d-name-pos
1315 (match-string-no-properties d-name-pos)))
1316 (mm-name
1317 (if m-name-pos
1318 (match-string-no-properties m-name-pos)))
1319 (mm (string-to-number
1320 (if m-pos
1321 (match-string-no-properties m-pos)
1322 "")))
1323 (dd (string-to-number
1324 (if d-pos
1325 (match-string-no-properties d-pos)
1326 "")))
1327 (y-str (if y-pos
1328 (match-string-no-properties y-pos)))
1329 (yy (if (not y-str)
1330 0
1331 (if (and (= (length y-str) 2)
1332 diary-abbreviated-year-flag)
1333 (let* ((current-y
1334 (calendar-extract-year
1335 (if absfunc
1336 (funcall
1337 absfunc
1338 (calendar-absolute-from-gregorian
1339 (calendar-current-date)))
1340 (calendar-current-date))))
1341 (y (+ (string-to-number y-str)
1342 ;; Current century, eg 2000.
1343 (* 100 (/ current-y 100))))
1344 (offset (- y current-y)))
1345 ;; Add 2-digit year to current century.
1346 ;; If more than 50 years in the future,
1347 ;; assume last century. If more than 50
1348 ;; years in the past, assume next century.
1349 (if (> offset 50)
1350 (- y 100)
1351 (if (< offset -50)
1352 (+ y 100)
1353 y)))
1354 (string-to-number y-str)))))
1355 (setq marks (cadr (diary-pull-attrs
1356 (buffer-substring-no-properties
1357 (point) (line-end-position))
1358 file-glob-attrs)))
1359 ;; Only mark all days of a given name if the pattern
1360 ;; contains no more specific elements.
1361 (if (and dd-name (not (or d-pos m-pos y-pos)))
1362 (calendar-mark-days-named
1363 (cdr (assoc-string dd-name
1364 (calendar-make-alist
1365 calendar-day-name-array
1366 0 nil calendar-day-abbrev-array) t)) marks)
1367 (if mm-name
1368 (setq mm
1369 (if (string-equal mm-name "*") 0
1370 (cdr (assoc-string
1371 mm-name
1372 (if months (calendar-make-alist months)
1373 (calendar-make-alist
1374 calendar-month-name-array
1375 1 nil calendar-month-abbrev-array)) t)))))
1376 (funcall markfunc mm dd yy marks))))))))
1377
1378 ;;;###cal-autoload
1379 (defun diary-mark-entries (&optional redraw)
1380 "Mark days in the calendar window that have diary entries.
1381 Marks each entry in the diary that is visible in the calendar window.
1382
1383 After marking the entries, runs `diary-nongregorian-marking-hook'
1384 for the main diary file, and each included file. For example,
1385 this is the appropriate hook to process Islamic entries in all
1386 diary files. Next `diary-mark-entries-hook' runs, for the main diary
1387 file only. If not using include files, there is no difference between
1388 these two hooks.
1389
1390 If the optional argument REDRAW is non-nil (which is the case
1391 interactively, for example) then this first removes any existing diary
1392 marks. This is intended to deal with deleted diary entries."
1393 (interactive "p")
1394 ;; To remove any deleted diary entries. Do not redraw when:
1395 ;; i) processing #include diary files (else only get the marks from
1396 ;; the last #include file processed).
1397 ;; ii) called via calendar-redraw (since calendar has already been
1398 ;; erased).
1399 ;; Use of REDRAW handles both of these cases.
1400 (when (and redraw calendar-mark-diary-entries-flag)
1401 (setq calendar-mark-diary-entries-flag nil)
1402 (calendar-redraw))
1403 (let ((diary-marking-entries-flag t)
1404 file-glob-attrs)
1405 (with-current-buffer (find-file-noselect (diary-check-diary-file) t)
1406 (save-excursion
1407 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
1408 (setq calendar-mark-diary-entries-flag t)
1409 (message "Marking diary entries...")
1410 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1411 (with-syntax-table diary-syntax-table
1412 (diary-mark-entries-1 'calendar-mark-date-pattern)
1413 (diary-mark-sexp-entries)
1414 ;; Although it looks like mark-entries-hook runs every time,
1415 ;; diary-mark-included-diary-files binds it to nil
1416 ;; (essentially) when it runs in included files.
1417 (run-hooks 'diary-nongregorian-marking-hook
1418 'diary-mark-entries-hook))
1419 (message "Marking diary entries...done")))))
1420
1421 ;;;###cal-autoload
1422 (define-obsolete-function-alias 'mark-diary-entries 'diary-mark-entries "23.1")
1423
1424 (defun diary-sexp-entry (sexp entry date)
1425 "Process a SEXP diary ENTRY for DATE."
1426 (let ((result (if calendar-debug-sexp
1427 (let ((debug-on-error t))
1428 (eval (car (read-from-string sexp))))
1429 (condition-case nil
1430 (eval (car (read-from-string sexp)))
1431 (error
1432 (beep)
1433 (message "Bad sexp at line %d in %s: %s"
1434 (count-lines (point-min) (point))
1435 diary-file sexp)
1436 (sleep-for 2))))))
1437 (cond ((stringp result) result)
1438 ((and (consp result)
1439 (stringp (cdr result))) result)
1440 (result entry)
1441 (t nil))))
1442
1443 (defvar displayed-year) ; bound in calendar-generate
1444 (defvar displayed-month)
1445
1446 (defun diary-mark-sexp-entries ()
1447 "Mark days in the calendar window that have sexp diary entries.
1448 Each entry in the diary file (or included files) visible in the calendar window
1449 is marked. See the documentation for the function `diary-list-sexp-entries'."
1450 (let* ((sexp-mark (regexp-quote diary-sexp-entry-symbol))
1451 (s-entry (format "^\\(%s(\\)\\|\\(%s%s(diary-remind\\)" sexp-mark
1452 (regexp-quote diary-nonmarking-symbol)
1453 sexp-mark))
1454 (file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1455 m y first-date last-date date mark file-glob-attrs
1456 sexp-start sexp entry entry-start)
1457 (with-current-buffer calendar-buffer
1458 (setq m displayed-month
1459 y displayed-year))
1460 (calendar-increment-month m y -1)
1461 (setq first-date (calendar-absolute-from-gregorian (list m 1 y)))
1462 (calendar-increment-month m y 2)
1463 (setq last-date
1464 (calendar-absolute-from-gregorian
1465 (list m (calendar-last-day-of-month m y) y)))
1466 (goto-char (point-min))
1467 (while (re-search-forward s-entry nil t)
1468 (setq diary-marking-entry-flag (char-equal (preceding-char) ?\())
1469 (re-search-backward "(")
1470 (setq sexp-start (point))
1471 (forward-sexp)
1472 (setq sexp (buffer-substring-no-properties sexp-start (point)))
1473 (forward-char 1)
1474 (if (and (bolp) (not (looking-at "[ \t]")))
1475 ;; Diary entry consists only of the sexp.
1476 (progn
1477 (backward-char 1)
1478 (setq entry ""))
1479 (setq entry-start (point))
1480 ;; Find end of entry.
1481 (forward-line 1)
1482 (while (looking-at "[ \t]")
1483 (forward-line 1))
1484 (if (bolp) (backward-char 1))
1485 (setq entry (buffer-substring-no-properties entry-start (point))))
1486 (setq date (1- first-date))
1487 ;; FIXME this loops over all visible dates.
1488 ;; Could be optimized in many cases. Depends on whether t or * present.
1489 (while (<= (setq date (1+ date)) last-date)
1490 (when (setq mark (diary-sexp-entry
1491 sexp entry
1492 (calendar-gregorian-from-absolute date)))
1493 (calendar-mark-visible-date
1494 (calendar-gregorian-from-absolute date)
1495 (or (cadr (diary-pull-attrs entry file-glob-attrs))
1496 (if (consp mark) (car mark)))))))))
1497
1498 (define-obsolete-function-alias 'mark-sexp-diary-entries
1499 'diary-mark-sexp-entries "23.1")
1500
1501 (defun diary-mark-included-diary-files ()
1502 "Mark diary entries from included diary files.
1503 For example, this enables you to share common diary files.
1504 To use, add this function to `diary-mark-entries-hook'.
1505 Specify include files using lines matching `diary-include-string', e.g.
1506 #include \"filename\"
1507 This is recursive; that is, included files may include other files.
1508 See also `diary-include-other-diary-files'."
1509 (goto-char (point-min))
1510 (while (re-search-forward
1511 (format "^%s \"\\([^\"]*\\)\"" (regexp-quote diary-include-string))
1512 nil t)
1513 (let* ((diary-file (match-string-no-properties 1))
1514 (diary-mark-entries-hook 'diary-mark-included-diary-files)
1515 (dbuff (find-buffer-visiting diary-file)))
1516 (if (file-exists-p diary-file)
1517 (if (file-readable-p diary-file)
1518 (progn
1519 (diary-mark-entries)
1520 (unless dbuff
1521 (kill-buffer (find-buffer-visiting diary-file))))
1522 (beep)
1523 (message "Can't read included diary file %s" diary-file)
1524 (sleep-for 2))
1525 (beep)
1526 (message "Can't find included diary file %s" diary-file)
1527 (sleep-for 2))))
1528 (goto-char (point-min)))
1529
1530 (define-obsolete-function-alias 'mark-included-diary-files
1531 'diary-mark-included-diary-files "23.1")
1532
1533 (defun calendar-mark-days-named (dayname &optional color)
1534 "Mark all dates in the calendar window that are day DAYNAME of the week.
1535 0 means all Sundays, 1 means all Mondays, and so on.
1536 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1537 (with-current-buffer calendar-buffer
1538 (let ((prev-month displayed-month)
1539 (prev-year displayed-year)
1540 (succ-month displayed-month)
1541 (succ-year displayed-year)
1542 (last-day)
1543 (day))
1544 (calendar-increment-month succ-month succ-year 1)
1545 (calendar-increment-month prev-month prev-year -1)
1546 (setq day (calendar-absolute-from-gregorian
1547 (calendar-nth-named-day 1 dayname prev-month prev-year))
1548 last-day (calendar-absolute-from-gregorian
1549 (calendar-nth-named-day -1 dayname succ-month succ-year)))
1550 (while (<= day last-day)
1551 (calendar-mark-visible-date (calendar-gregorian-from-absolute day)
1552 color)
1553 (setq day (+ day 7))))))
1554
1555 (define-obsolete-function-alias 'mark-calendar-days-named
1556 'calendar-mark-days-named "23.1")
1557
1558 (defun calendar-mark-month (month year p-month p-day p-year &optional color)
1559 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P-DAY/P-YEAR.
1560 A value of 0 in any position of the pattern is a wildcard.
1561 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1562 (if (or (and (= month p-month)
1563 (or (zerop p-year) (= year p-year)))
1564 (and (zerop p-month)
1565 (or (zerop p-year) (= year p-year))))
1566 (if (zerop p-day)
1567 (dotimes (i (calendar-last-day-of-month month year))
1568 (calendar-mark-visible-date (list month (1+ i) year) color))
1569 (calendar-mark-visible-date (list month p-day year) color))))
1570
1571 (define-obsolete-function-alias 'mark-calendar-month
1572 'calendar-mark-month "23.1")
1573
1574 (defun calendar-mark-date-pattern (month day year &optional color)
1575 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR.
1576 A value of 0 in any position is a wildcard. Optional argument COLOR is
1577 passed to `calendar-mark-visible-date' as MARK."
1578 (with-current-buffer calendar-buffer
1579 (let ((m displayed-month)
1580 (y displayed-year))
1581 (calendar-increment-month m y -1)
1582 (dotimes (_idummy 3)
1583 (calendar-mark-month m y month day year color)
1584 (calendar-increment-month m y 1)))))
1585
1586 (define-obsolete-function-alias 'mark-calendar-date-pattern
1587 'calendar-mark-date-pattern "23.1")
1588
1589 ;; Bahai, Hebrew, Islamic.
1590 (defun calendar-mark-complex (month day year fromabs &optional color)
1591 "Mark dates in the calendar conforming to MONTH DAY YEAR of some system.
1592 The function FROMABS converts absolute dates to the appropriate date system.
1593 Optional argument COLOR is passed to `calendar-mark-visible-date' as MARK."
1594 ;; Not one of the simple cases--check all visible dates for match.
1595 ;; Actually, the following code takes care of ALL of the cases, but
1596 ;; it's much too slow to be used for the simple (common) cases.
1597 (let* ((m displayed-month)
1598 (y displayed-year)
1599 (first-date (progn
1600 (calendar-increment-month m y -1)
1601 (calendar-absolute-from-gregorian (list m 1 y))))
1602 (last-date (progn
1603 (calendar-increment-month m y 2)
1604 (calendar-absolute-from-gregorian
1605 (list m (calendar-last-day-of-month m y) y))))
1606 (date (1- first-date))
1607 local-date)
1608 (while (<= (setq date (1+ date)) last-date)
1609 (setq local-date (funcall fromabs date))
1610 (and (or (zerop month)
1611 (= month (calendar-extract-month local-date)))
1612 (or (zerop day)
1613 (= day (calendar-extract-day local-date)))
1614 (or (zerop year)
1615 (= year (calendar-extract-year local-date)))
1616 (calendar-mark-visible-date
1617 (calendar-gregorian-from-absolute date) color)))))
1618
1619 ;; Bahai, Islamic.
1620 (defun calendar-mark-1 (month day year fromabs toabs &optional color)
1621 "Mark dates in the calendar conforming to MONTH DAY YEAR of some system.
1622 The function FROMABS converts absolute dates to the appropriate date system.
1623 The function TOABS carries out the inverse operation. Optional argument
1624 COLOR is passed to `calendar-mark-visible-date' as MARK."
1625 (with-current-buffer calendar-buffer
1626 (if (and (not (zerop month)) (not (zerop day)))
1627 (if (not (zerop year))
1628 ;; Fully specified date.
1629 (let ((date (calendar-gregorian-from-absolute
1630 (funcall toabs (list month day year)))))
1631 (if (calendar-date-is-visible-p date)
1632 (calendar-mark-visible-date date color)))
1633 ;; Month and day in any year--this taken from the holiday stuff.
1634 (let* ((i-date (funcall fromabs
1635 (calendar-absolute-from-gregorian
1636 (list displayed-month 15 displayed-year))))
1637 (m (calendar-extract-month i-date))
1638 (y (calendar-extract-year i-date))
1639 date)
1640 (unless (< m 1) ; calendar doesn't apply
1641 (calendar-increment-month m y (- 10 month))
1642 (and (> m 7) ; date might be visible
1643 (calendar-date-is-visible-p
1644 (setq date (calendar-gregorian-from-absolute
1645 (funcall toabs (list month day y)))))
1646 (calendar-mark-visible-date date color)))))
1647 (calendar-mark-complex month day year
1648 'calendar-bahai-from-absolute color))))
1649
1650
1651 (defun diary-entry-time (s)
1652 "Return time at the beginning of the string S as a military-style integer.
1653 For example, returns 1325 for 1:25pm.
1654
1655 Returns `diary-unknown-time' (default value -9999) if no time is recognized.
1656 The recognized forms are XXXX, X:XX, or XX:XX (military time), and XXam,
1657 XXAM, XXpm, XXPM, XX:XXam, XX:XXAM, XX:XXpm, or XX:XXPM. A period (.) can
1658 be used instead of a colon (:) to separate the hour and minute parts."
1659 (let (case-fold-search)
1660 (cond ((string-match ; military time
1661 "\\`[ \t\n]*\\([0-9]?[0-9]\\)[:.]?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)"
1662 s)
1663 (+ (* 100 (string-to-number (match-string 1 s)))
1664 (string-to-number (match-string 2 s))))
1665 ((string-match ; hour only (XXam or XXpm)
1666 "\\`[ \t\n]*\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s)
1667 (+ (* 100 (% (string-to-number (match-string 1 s)) 12))
1668 (if (equal ?a (downcase (aref s (match-beginning 2))))
1669 0 1200)))
1670 ((string-match ; hour and minute (XX:XXam or XX:XXpm)
1671 "\\`[ \t\n]*\\([0-9]?[0-9]\\)[:.]\\([0-9][0-9]\\)\\([ap]\\)m\\>" s)
1672 (+ (* 100 (% (string-to-number (match-string 1 s)) 12))
1673 (string-to-number (match-string 2 s))
1674 (if (equal ?a (downcase (aref s (match-beginning 3))))
1675 0 1200)))
1676 (t diary-unknown-time)))) ; unrecognizable
1677
1678 (defun diary-entry-compare (e1 e2)
1679 "Return t if E1 is earlier than E2."
1680 (or (calendar-date-compare e1 e2)
1681 (and (calendar-date-equal (car e1) (car e2))
1682 (let* ((ts1 (cadr e1)) (t1 (diary-entry-time ts1))
1683 (ts2 (cadr e2)) (t2 (diary-entry-time ts2)))
1684 (or (< t1 t2)
1685 (and (= t1 t2)
1686 (string-lessp ts1 ts2)))))))
1687
1688 (defun diary-sort-entries ()
1689 "Sort the list of diary entries by time of day.
1690 If you add this function to `diary-list-entries-hook', it should
1691 be the last item in the hook, in case earlier items add diary
1692 entries, or change the order."
1693 (setq diary-entries-list (sort diary-entries-list 'diary-entry-compare)))
1694
1695 (define-obsolete-function-alias 'sort-diary-entries 'diary-sort-entries "23.1")
1696
1697
1698 (defun diary-list-sexp-entries (date)
1699 "Add sexp entries for DATE from the diary file to `diary-entries-list'.
1700 Also, make them visible in the diary. Returns t if any entries are found.
1701
1702 Sexp diary entries must be prefaced by a `diary-sexp-entry-symbol'
1703 \(normally `%%'). The form of a sexp diary entry is
1704
1705 %%(SEXP) ENTRY
1706
1707 Both ENTRY and DATE are available when the SEXP is evaluated. If
1708 the SEXP returns nil, the diary entry does not apply. If it
1709 returns a non-nil value, ENTRY will be taken to apply to DATE; if
1710 the value is a string, that string will be the diary entry in the
1711 fancy diary display.
1712
1713 For example, the following diary entry will apply to the 21st of
1714 the month if it is a weekday and the Friday before if the 21st is
1715 on a weekend:
1716
1717 &%%(let ((dayname (calendar-day-of-week date))
1718 (day (calendar-extract-day date)))
1719 (or
1720 (and (= day 21) (memq dayname '(1 2 3 4 5)))
1721 (and (memq day '(19 20)) (= dayname 5)))
1722 ) UIUC pay checks deposited
1723
1724 A number of built-in functions are available for this type of
1725 diary entry. In the following, the optional parameter MARK
1726 specifies a face or single-character string to use when
1727 highlighting the day in the calendar. For those functions that
1728 take MONTH, DAY, and YEAR as arguments, the order of the input
1729 parameters changes according to `calendar-date-style' (e.g. to
1730 DAY MONTH YEAR in the European style).
1731
1732 %%(diary-date MONTH DAY YEAR &optional MARK) text
1733 Entry applies if date is MONTH, DAY, YEAR. DAY, MONTH, and YEAR can
1734 be a list of integers, `t' (meaning all values), or an integer.
1735
1736 %%(diary-float MONTH DAYNAME N &optional DAY MARK) text
1737 Entry will appear on the Nth DAYNAME after/before MONTH DAY.
1738 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
1739 If N>0, use the Nth DAYNAME after MONTH DAY.
1740 If N<0, use the Nth DAYNAME before MONTH DAY.
1741 DAY defaults to 1 if N>0, and MONTH's last day otherwise.
1742 MONTH can be a list of months, a single month, or `t' to
1743 specify all months.
1744
1745 %%(diary-block M1 D1 Y1 M2 D2 Y2 &optional MARK) text
1746 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2,
1747 inclusive.
1748
1749 %%(diary-anniversary MONTH DAY YEAR &optional MARK) text
1750 Entry will appear on anniversary dates of MONTH DAY, YEAR.
1751 Text can contain `%d' or `%d%s'; `%d' will be replaced by the
1752 number of years since the MONTH DAY, YEAR, and `%s' by the
1753 ordinal ending of that number (i.e. `st', `nd', `rd' or `th',
1754 as appropriate). The anniversary of February 29 is
1755 considered to be March 1 in a non-leap year.
1756
1757 %%(diary-cyclic N MONTH DAY YEAR &optional MARK) text
1758 Entry will appear every N days, starting MONTH DAY, YEAR.
1759 Text can contain `%d' or `%d%s'; `%d' will be replaced by the
1760 number of repetitions since the MONTH DAY, YEAR and `%s' by
1761 the ordinal ending of that number (i.e. `st', `nd', `rd' or
1762 `th', as appropriate).
1763
1764 %%(diary-remind SEXP DAYS &optional MARKING) text
1765 Entry is a reminder for diary sexp SEXP. DAYS is either a
1766 single number or a list of numbers indicating the number(s)
1767 of days before the event that the warning(s) should occur.
1768 A negative number -DAYS has the same meaning as a list (1 2 ... DAYS).
1769 If the current date is (one of) DAYS before the event indicated
1770 by EXPR, then a suitable message (as specified by
1771 `diary-remind-message') appears. In addition to the
1772 reminders beforehand, the diary entry also appears on the
1773 date itself. If optional MARKING is non-nil then the
1774 *reminders* are marked on the calendar. Marking of reminders
1775 is independent of whether the entry *itself* is a marking or
1776 non-marking one.
1777
1778 %%(diary-hebrew-yahrzeit MONTH DAY YEAR) text
1779 Text is assumed to be the name of the person; the date is the
1780 date of death on the *civil* calendar. The diary entry will
1781 appear on the proper Hebrew-date anniversary and on the day
1782 before.
1783
1784 All the remaining functions do not accept any text, and so only
1785 make sense with `diary-fancy-display'. Most produce output every day.
1786
1787 `diary-day-of-year' - day of year and number of days remaining
1788 `diary-iso-date' - ISO commercial date
1789 `diary-astro-day-number' - astronomical (Julian) day number
1790 `diary-sunrise-sunset' - local times of sunrise and sunset
1791
1792 These functions give the date in alternative calendrical systems:
1793
1794 `diary-bahai-date', `diary-chinese-date', `diary-coptic-date',
1795 `diary-ethiopic-date', `diary-french-date', `diary-hebrew-date',
1796 `diary-islamic-date', `diary-julian-date', `diary-mayan-date',
1797 `diary-persian-date'
1798
1799 Theses functions only produce output on certain dates:
1800
1801 `diary-lunar-phases' - phases of moon (on the appropriate days)
1802 `diary-hebrew-omer' - Omer count, within 50 days after Passover
1803 `diary-hebrew-parasha' - weekly parasha, every Saturday
1804 `diary-hebrew-rosh-hodesh' - Rosh Hodesh, or the day or Saturday before
1805 `diary-hebrew-sabbath-candles' - local time of candle lighting, on Fridays
1806
1807
1808 Marking these entries is *extremely* time consuming, so it is
1809 best if they are non-marking."
1810 (let ((s-entry (format "^%s?%s(" (regexp-quote diary-nonmarking-symbol)
1811 (regexp-quote diary-sexp-entry-symbol)))
1812 entry-found file-glob-attrs marks
1813 sexp-start sexp entry specifier entry-start line-start
1814 diary-entry temp literal)
1815 (goto-char (point-min))
1816 (setq file-glob-attrs (nth 1 (diary-pull-attrs nil '())))
1817 (while (re-search-forward s-entry nil t)
1818 (backward-char 1)
1819 (setq sexp-start (point))
1820 (forward-sexp)
1821 (setq sexp (buffer-substring-no-properties sexp-start (point))
1822 line-start (line-end-position 0)
1823 specifier
1824 (buffer-substring-no-properties (1+ line-start) (point))
1825 entry-start (1+ line-start))
1826 (forward-char 1)
1827 (if (and (bolp) (not (looking-at "[ \t]")))
1828 ;; Diary entry consists only of the sexp.
1829 (progn
1830 (backward-char 1)
1831 (setq entry ""))
1832 (setq entry-start (point))
1833 (forward-line 1)
1834 (while (looking-at "[ \t]")
1835 (forward-line 1))
1836 (if (bolp) (backward-char 1))
1837 (setq entry (buffer-substring-no-properties entry-start (point))))
1838 (setq diary-entry (diary-sexp-entry sexp entry date)
1839 literal entry ; before evaluation
1840 entry (if (consp diary-entry)
1841 (cdr diary-entry)
1842 diary-entry))
1843 (when diary-entry
1844 (remove-overlays line-start (point) 'invisible 'diary)
1845 (if (< 0 (length entry))
1846 (setq temp (diary-pull-attrs entry file-glob-attrs)
1847 entry (nth 0 temp)
1848 marks (nth 1 temp))))
1849 (diary-add-to-list date entry specifier
1850 (if entry-start (copy-marker entry-start))
1851 marks literal)
1852 (setq entry-found (or entry-found diary-entry)))
1853 entry-found))
1854
1855 (define-obsolete-function-alias 'list-sexp-diary-entries
1856 'diary-list-sexp-entries "23.1")
1857
1858 (defun diary-make-date (a b c)
1859 "Convert A B C into the internal calendar date form.
1860 The expected order of the inputs depends on `calendar-date-style',
1861 e.g. in the European case, A = day, B = month, C = year. Returns
1862 a list (MONTH DAY YEAR), i.e. the American style, which is the
1863 form used internally by the calendar and diary."
1864 (cond ((eq calendar-date-style 'iso) ; YMD
1865 (list b c a))
1866 ((eq calendar-date-style 'european) ; DMY
1867 (list b a c))
1868 (t (list a b c))))
1869
1870
1871 ;;; Sexp diary functions.
1872
1873 (defvar date)
1874 (defvar entry)
1875
1876 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1877 (defun diary-date (month day year &optional mark)
1878 "Specific date(s) diary entry.
1879 Entry applies if date is MONTH, DAY, YEAR. Each parameter can be a
1880 list of integers, `t' (meaning all values), or an integer. The order
1881 of the input parameters changes according to `calendar-date-style'
1882 \(e.g. to DAY MONTH YEAR in the European style).
1883
1884 An optional parameter MARK specifies a face or single-character string
1885 to use when highlighting the day in the calendar."
1886 (let* ((ddate (diary-make-date month day year))
1887 (dd (calendar-extract-day ddate))
1888 (mm (calendar-extract-month ddate))
1889 (yy (calendar-extract-year ddate))
1890 (m (calendar-extract-month date))
1891 (y (calendar-extract-year date))
1892 (d (calendar-extract-day date)))
1893 (and
1894 (or (and (listp dd) (memq d dd))
1895 (equal d dd)
1896 (eq dd t))
1897 (or (and (listp mm) (memq m mm))
1898 (equal m mm)
1899 (eq mm t))
1900 (or (and (listp yy) (memq y yy))
1901 (equal y yy)
1902 (eq yy t))
1903 (cons mark entry))))
1904
1905 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1906 (defun diary-block (m1 d1 y1 m2 d2 y2 &optional mark)
1907 "Block diary entry.
1908 Entry applies if date is between, or on one of, two dates. The order
1909 of the input parameters changes according to `calendar-date-style'
1910 \(e.g. to D1, M1, Y1, D2, M2, Y2 in the European style).
1911
1912 An optional parameter MARK specifies a face or single-character string
1913 to use when highlighting the day in the calendar."
1914 (let ((date1 (calendar-absolute-from-gregorian
1915 (diary-make-date m1 d1 y1)))
1916 (date2 (calendar-absolute-from-gregorian
1917 (diary-make-date m2 d2 y2)))
1918 (d (calendar-absolute-from-gregorian date)))
1919 (and (<= date1 d) (<= d date2)
1920 (cons mark entry))))
1921
1922 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1923 (defun diary-float (month dayname n &optional day mark)
1924 "Diary entry for the Nth DAYNAME after/before MONTH DAY.
1925 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
1926 If N>0, use the Nth DAYNAME after MONTH DAY.
1927 If N<0, use the Nth DAYNAME before MONTH DAY.
1928 DAY defaults to 1 if N>0, and MONTH's last day otherwise.
1929 MONTH can be a list of months, an integer, or `t' (meaning all months).
1930 Optional MARK specifies a face or single-character string to use when
1931 highlighting the day in the calendar."
1932 ;; This is messy because the diary entry may apply, but the date on which it
1933 ;; is based can be in a different month/year. For example, asking for the
1934 ;; first Monday after December 30. For large values of |n| the problem is
1935 ;; more grotesque.
1936 (and (= dayname (calendar-day-of-week date))
1937 (let* ((m (calendar-extract-month date))
1938 (d (calendar-extract-day date))
1939 (y (calendar-extract-year date))
1940 ;; Last (n>0) or first (n<0) possible base date for entry.
1941 (limit
1942 (calendar-nth-named-absday (- n) dayname m y d))
1943 (last-abs (if (> n 0) limit (+ limit 6)))
1944 (first-abs (if (> n 0) (- limit 6) limit))
1945 (last (calendar-gregorian-from-absolute last-abs))
1946 (first (calendar-gregorian-from-absolute first-abs))
1947 ;; m1, d1 is first possible base date.
1948 (m1 (calendar-extract-month first))
1949 (d1 (calendar-extract-day first))
1950 (y1 (calendar-extract-year first))
1951 ;; m2, d2 is last possible base date.
1952 (m2 (calendar-extract-month last))
1953 (d2 (calendar-extract-day last))
1954 (y2 (calendar-extract-year last)))
1955 (if (or (and (= m1 m2) ; only possible base dates in one month
1956 (or (eq month t)
1957 (if (listp month)
1958 (memq m1 month)
1959 (= m1 month)))
1960 (let ((d (or day (if (> n 0)
1961 1
1962 (calendar-last-day-of-month m1 y1)))))
1963 (and (<= d1 d) (<= d d2))))
1964 ;; Only possible base dates straddle two months.
1965 (and (or (< y1 y2)
1966 (and (= y1 y2) (< m1 m2)))
1967 (or
1968 ;; m1, d1 works as a base date.
1969 (and
1970 (or (eq month t)
1971 (if (listp month)
1972 (memq m1 month)
1973 (= m1 month)))
1974 (<= d1 (or day (if (> n 0)
1975 1
1976 (calendar-last-day-of-month m1 y1)))))
1977 ;; m2, d2 works as a base date.
1978 (and (or (eq month t)
1979 (if (listp month)
1980 (memq m2 month)
1981 (= m2 month)))
1982 (<= (or day (if (> n 0)
1983 1
1984 (calendar-last-day-of-month m2 y2)))
1985 d2)))))
1986 (cons mark entry)))))
1987
1988 (defun diary-ordinal-suffix (n)
1989 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)"
1990 (if (or (memq (% n 100) '(11 12 13))
1991 (< 3 (% n 10)))
1992 "th"
1993 (aref ["th" "st" "nd" "rd"] (% n 10))))
1994
1995 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
1996 (defun diary-anniversary (month day &optional year mark)
1997 "Anniversary diary entry.
1998 Entry applies if date is the anniversary of MONTH, DAY, YEAR.
1999 The order of the input parameters changes according to
2000 `calendar-date-style' (e.g. to DAY MONTH YEAR in the European style).
2001
2002 The diary entry can contain `%d' or `%d%s'; the %d will be replaced
2003 by the number of years since the MONTH, DAY, YEAR, and the %s will
2004 be replaced by the ordinal ending of that number (that is, `st',
2005 `nd', `rd' or `th', as appropriate). The anniversary of February 29
2006 is considered to be March 1 in non-leap years.
2007
2008 An optional parameter MARK specifies a face or single-character
2009 string to use when highlighting the day in the calendar."
2010 (let* ((ddate (diary-make-date month day year))
2011 (dd (calendar-extract-day ddate))
2012 (mm (calendar-extract-month ddate))
2013 (yy (calendar-extract-year ddate))
2014 (y (calendar-extract-year date))
2015 (diff (if yy (- y yy) 100)))
2016 (and (= mm 2) (= dd 29) (not (calendar-leap-year-p y))
2017 (setq mm 3
2018 dd 1))
2019 (and (> diff 0) (calendar-date-equal (list mm dd y) date)
2020 (cons mark (format entry diff (diary-ordinal-suffix diff))))))
2021
2022 ;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
2023 (defun diary-cyclic (n month day year &optional mark)
2024 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR.
2025 The order of the input parameters changes according to
2026 `calendar-date-style' (e.g. to N DAY MONTH YEAR in the European
2027 style). The entry can contain `%d' or `%d%s'; the %d will be
2028 replaced by the number of repetitions since the MONTH DAY YEAR,
2029 and %s by the ordinal ending of that number (that is, `st', `nd',
2030 `rd' or `th', as appropriate).
2031
2032 An optional parameter MARK specifies a face or single-character
2033 string to use when highlighting the day in the calendar."
2034 (or (> n 0)
2035 (error "Day count must be positive"))
2036 (let* ((diff (- (calendar-absolute-from-gregorian date)
2037 (calendar-absolute-from-gregorian
2038 (diary-make-date month day year))))
2039 (cycle (/ diff n)))
2040 (and (>= diff 0) (zerop (% diff n))
2041 (cons mark (format entry cycle (diary-ordinal-suffix cycle))))))
2042
2043 (defun diary-day-of-year ()
2044 "Day of year and number of days remaining in the year of date diary entry."
2045 (calendar-day-of-year-string date))
2046
2047 (defun diary-remind (sexp days &optional marking)
2048 "Provide a reminder of a diary entry.
2049 SEXP is a diary-sexp. DAYS is either a single number or a list
2050 of numbers indicating the number(s) of days before the event that
2051 the warning(s) should occur on. A negative number -DAYS has the
2052 same meaning as a list (1 2 ... DAYS). If the current date
2053 is (one of) DAYS before the event indicated by SEXP, then this function
2054 returns a suitable message (as specified by `diary-remind-message').
2055
2056 In addition to the reminders beforehand, the diary entry also
2057 appears on the date itself.
2058
2059 A `diary-nonmarking-symbol' at the beginning of the line of the
2060 `diary-remind' entry specifies that the diary entry (not the
2061 reminder) is non-marking. Marking of reminders is independent of
2062 whether the entry itself is a marking or nonmarking; if optional
2063 parameter MARKING is non-nil then the reminders are marked on the
2064 calendar."
2065 ;; `date' has a value at this point, from diary-sexp-entry.
2066 ;; Convert a negative number to a list of days.
2067 (and (integerp days)
2068 (< days 0)
2069 (setq days (number-sequence 1 (- days))))
2070 (let ((diary-entry (eval sexp)))
2071 (cond
2072 ;; Diary entry applies on date.
2073 ((and diary-entry
2074 (or (not diary-marking-entries-flag) diary-marking-entry-flag))
2075 diary-entry)
2076 ;; Diary entry may apply to `days' before date.
2077 ((and (integerp days)
2078 (not diary-entry) ; diary entry does not apply to date
2079 (or (not diary-marking-entries-flag) marking))
2080 ;; Adjust date, and re-evaluate.
2081 (let ((date (calendar-gregorian-from-absolute
2082 (+ (calendar-absolute-from-gregorian date) days))))
2083 (when (setq diary-entry (eval sexp))
2084 ;; Discard any mark portion from diary-anniversary, etc.
2085 (if (consp diary-entry) (setq diary-entry (cdr diary-entry)))
2086 (mapconcat 'eval diary-remind-message ""))))
2087 ;; Diary entry may apply to one of a list of days before date.
2088 ((and (listp days) days)
2089 (or (diary-remind sexp (car days) marking)
2090 (diary-remind sexp (cdr days) marking))))))
2091
2092
2093 ;;; Diary insertion functions.
2094
2095 ;;;###cal-autoload
2096 (defun diary-make-entry (string &optional nonmarking file)
2097 "Insert a diary entry STRING which may be NONMARKING in FILE.
2098 If omitted, NONMARKING defaults to nil and FILE defaults to
2099 `diary-file'."
2100 (let ((pop-up-frames (or pop-up-frames
2101 (window-dedicated-p (selected-window)))))
2102 (find-file-other-window (or file diary-file)))
2103 (when (eq major-mode (default-value 'major-mode)) (diary-mode))
2104 (widen)
2105 (diary-unhide-everything)
2106 (goto-char (point-max))
2107 (when (let ((case-fold-search t))
2108 (search-backward "Local Variables:"
2109 (max (- (point-max) 3000) (point-min))
2110 t))
2111 (beginning-of-line)
2112 (insert "\n")
2113 (forward-line -1))
2114 (insert
2115 (if (bolp) "" "\n")
2116 (if nonmarking diary-nonmarking-symbol "")
2117 string " "))
2118
2119 ;;;###cal-autoload
2120 (define-obsolete-function-alias 'make-diary-entry 'diary-make-entry "23.1")
2121
2122 ;;;###cal-autoload
2123 (defun diary-insert-entry (arg &optional event)
2124 "Insert a diary entry for the date indicated by point.
2125 Prefix argument ARG makes the entry nonmarking."
2126 (interactive
2127 (list current-prefix-arg last-nonmenu-event))
2128 (diary-make-entry (calendar-date-string (calendar-cursor-to-date t event) t t)
2129 arg))
2130
2131 ;;;###cal-autoload
2132 (define-obsolete-function-alias 'insert-diary-entry 'diary-insert-entry "23.1")
2133
2134 ;;;###cal-autoload
2135 (defun diary-insert-weekly-entry (arg)
2136 "Insert a weekly diary entry for the day of the week indicated by point.
2137 Prefix argument ARG makes the entry nonmarking."
2138 (interactive "P")
2139 (diary-make-entry (calendar-day-name (calendar-cursor-to-date t))
2140 arg))
2141
2142 ;;;###cal-autoload
2143 (define-obsolete-function-alias 'insert-weekly-diary-entry
2144 'diary-insert-weekly-entry "23.1")
2145
2146 (defun diary-date-display-form (&optional type)
2147 "Return value for `calendar-date-display-form' using `calendar-date-style'.
2148 Optional symbol TYPE is either `monthly' or `yearly'."
2149 (cond ((eq type 'monthly) (cond ((eq calendar-date-style 'iso)
2150 '((format "*-*-%.2d"
2151 (string-to-number day))))
2152 ((eq calendar-date-style 'european)
2153 '(day " * "))
2154 (t '("* " day ))))
2155 ((eq type 'yearly) (cond ((eq calendar-date-style 'iso)
2156 '((format "*-%.2d-%.2d"
2157 (string-to-number month)
2158 (string-to-number day))))
2159 ((eq calendar-date-style 'european)
2160 '(day " " monthname))
2161 (t '(monthname " " day))))
2162 ;; Iso cannot contain "-", because this form used eg by
2163 ;; diary-insert-anniversary-entry.
2164 (t (cond ((eq calendar-date-style 'iso)
2165 '((format "%s %.2d %.2d" year
2166 (string-to-number month) (string-to-number day))))
2167 ((eq calendar-date-style 'european)
2168 '(day " " month " " year))
2169 (t '(month " " day " " year))))))
2170
2171 (defun diary-insert-entry-1 (&optional type nomark months symbol absfunc)
2172 "Subroutine to insert a diary entry related to the date at point.
2173 TYPE is the type of entry (`monthly' or `yearly'). NOMARK non-nil
2174 means make the entry non-marking. Array MONTHS is used in place
2175 of `calendar-month-name-array'. String SYMBOL marks the type of
2176 diary entry. Function ABSFUNC converts absolute dates to dates of
2177 the appropriate type."
2178 (let ((calendar-date-display-form (if type
2179 (diary-date-display-form type)
2180 calendar-date-display-form))
2181 (calendar-month-name-array (or months calendar-month-name-array))
2182 (date (calendar-cursor-to-date t)))
2183 (diary-make-entry
2184 (format "%s%s" (or symbol "")
2185 (calendar-date-string
2186 (if absfunc
2187 (funcall absfunc (calendar-absolute-from-gregorian date))
2188 date)
2189 (not absfunc)
2190 (not type)))
2191 nomark)))
2192
2193 ;;;###cal-autoload
2194 (defun diary-insert-monthly-entry (arg)
2195 "Insert a monthly diary entry for the day of the month indicated by point.
2196 Prefix argument ARG makes the entry nonmarking."
2197 (interactive "P")
2198 (diary-insert-entry-1 'monthly arg))
2199
2200 ;;;###cal-autoload
2201 (define-obsolete-function-alias 'insert-monthly-diary-entry
2202 'diary-insert-monthly-entry "23.1")
2203
2204 ;;;###cal-autoload
2205 (defun diary-insert-yearly-entry (arg)
2206 "Insert an annual diary entry for the day of the year indicated by point.
2207 Prefix argument ARG makes the entry nonmarking."
2208 (interactive "P")
2209 (diary-insert-entry-1 'yearly arg))
2210
2211 ;;;###cal-autoload
2212 (define-obsolete-function-alias 'insert-yearly-diary-entry
2213 'diary-insert-yearly-entry "23.1")
2214
2215 ;;;###cal-autoload
2216 (defun diary-insert-anniversary-entry (arg)
2217 "Insert an anniversary diary entry for the date given by point.
2218 Prefix argument ARG makes the entry nonmarking."
2219 (interactive "P")
2220 (let ((calendar-date-display-form (diary-date-display-form)))
2221 (diary-make-entry
2222 (format "%s(diary-anniversary %s)"
2223 diary-sexp-entry-symbol
2224 (calendar-date-string (calendar-cursor-to-date t) nil t))
2225 arg)))
2226
2227 ;;;###cal-autoload
2228 (define-obsolete-function-alias 'insert-anniversary-diary-entry
2229 'diary-insert-anniversary-entry "23.1")
2230
2231 ;;;###cal-autoload
2232 (defun diary-insert-block-entry (arg)
2233 "Insert a block diary entry for the days between the point and marked date.
2234 Prefix argument ARG makes the entry nonmarking."
2235 (interactive "P")
2236 (let ((calendar-date-display-form (diary-date-display-form))
2237 (cursor (calendar-cursor-to-date t))
2238 (mark (or (car calendar-mark-ring)
2239 (error "No mark set in this buffer")))
2240 start end)
2241 (if (< (calendar-absolute-from-gregorian mark)
2242 (calendar-absolute-from-gregorian cursor))
2243 (setq start mark
2244 end cursor)
2245 (setq start cursor
2246 end mark))
2247 (diary-make-entry
2248 (format "%s(diary-block %s %s)"
2249 diary-sexp-entry-symbol
2250 (calendar-date-string start nil t)
2251 (calendar-date-string end nil t))
2252 arg)))
2253
2254 ;;;###cal-autoload
2255 (define-obsolete-function-alias 'insert-block-diary-entry
2256 'diary-insert-block-entry "23.1")
2257
2258 ;;;###cal-autoload
2259 (defun diary-insert-cyclic-entry (arg)
2260 "Insert a cyclic diary entry starting at the date given by point.
2261 Prefix argument ARG makes the entry nonmarking."
2262 (interactive "P")
2263 (let ((calendar-date-display-form (diary-date-display-form)))
2264 (diary-make-entry
2265 (format "%s(diary-cyclic %d %s)"
2266 diary-sexp-entry-symbol
2267 (calendar-read "Repeat every how many days: "
2268 (lambda (x) (> x 0)))
2269 (calendar-date-string (calendar-cursor-to-date t) nil t))
2270 arg)))
2271
2272 ;;;###cal-autoload
2273 (define-obsolete-function-alias 'insert-cyclic-diary-entry
2274 'diary-insert-cyclic-entry "23.1")
2275
2276 ;;; Diary mode.
2277
2278 (defun diary-redraw-calendar ()
2279 "If `calendar-buffer' is live and diary entries are marked, redraw it."
2280 (and calendar-mark-diary-entries-flag
2281 (save-excursion
2282 (calendar-redraw)))
2283 ;; Return value suitable for `write-contents-functions'.
2284 nil)
2285
2286 (defvar diary-mode-map
2287 (let ((map (make-sparse-keymap)))
2288 (define-key map "\C-c\C-s" 'diary-show-all-entries)
2289 (define-key map "\C-c\C-q" 'quit-window)
2290 map)
2291 "Keymap for `diary-mode'.")
2292
2293 (defun diary-font-lock-sexps (limit)
2294 "Recognize sexp diary entry up to LIMIT for font-locking."
2295 (if (re-search-forward
2296 (format "^%s?\\(%s\\)" (regexp-quote diary-nonmarking-symbol)
2297 (regexp-quote diary-sexp-entry-symbol))
2298 limit t)
2299 (condition-case nil
2300 (save-restriction
2301 (narrow-to-region (point-min) limit)
2302 (let ((start (point)))
2303 (forward-sexp 1)
2304 (store-match-data (list start (point)))
2305 t))
2306 (error t))))
2307
2308 (defun diary-font-lock-date-forms (month-array &optional symbol abbrev-array)
2309 "Create font-lock patterns for `diary-date-forms' using MONTH-ARRAY.
2310 If given, optional SYMBOL must be a prefix to entries.
2311 If optional ABBREV-ARRAY is present, the abbreviations constructed
2312 from this array by the function `calendar-abbrev-construct' are
2313 matched (with or without a final `.'), in addition to the full month
2314 names."
2315 (let ((dayname (diary-name-pattern calendar-day-name-array
2316 calendar-day-abbrev-array t))
2317 (monthname (format "\\(%s\\|\\*\\)"
2318 (diary-name-pattern month-array abbrev-array)))
2319 (month "\\([0-9]+\\|\\*\\)")
2320 (day "\\([0-9]+\\|\\*\\)")
2321 (year "-?\\([0-9]+\\|\\*\\)"))
2322 (mapcar (lambda (x)
2323 (cons
2324 (concat "^" (regexp-quote diary-nonmarking-symbol) "?"
2325 (if symbol (regexp-quote symbol) "") "\\("
2326 (mapconcat 'eval
2327 ;; If backup, omit first item (backup)
2328 ;; and last item (not part of date).
2329 (if (equal (car x) 'backup)
2330 (nreverse (cdr (reverse (cdr x))))
2331 x)
2332 "")
2333 ;; With backup, last item is not part of date.
2334 (if (equal (car x) 'backup)
2335 (concat "\\)" (eval (car (reverse x))))
2336 "\\)"))
2337 '(1 diary-face)))
2338 diary-date-forms)))
2339
2340 (defmacro diary-font-lock-keywords-1 (markfunc listfunc feature months symbol)
2341 "Subroutine of the function `diary-font-lock-keywords'.
2342 If MARKFUNC is a member of `diary-nongregorian-marking-hook', or
2343 LISTFUNC of `diary-nongregorian-listing-hook', then require FEATURE and
2344 return a font-lock pattern matching array of MONTHS and marking SYMBOL."
2345 `(when (or (memq ',markfunc diary-nongregorian-marking-hook)
2346 (memq ',listfunc diary-nongregorian-listing-hook))
2347 (require ',feature)
2348 (diary-font-lock-date-forms ,months ,symbol)))
2349
2350 (defconst diary-time-regexp
2351 ;; Accepted formats: 10:00 10.00 10h00 10h 10am 10:00am 10.00am
2352 ;; Use of "." as a separator annoyingly matches numbers, eg "123.45".
2353 ;; Hence often prefix this with "\\(^\\|\\s-\\)."
2354 (concat "[0-9]?[0-9]\\([AaPp][mM]\\|\\("
2355 "[Hh]\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]"
2356 "\\)\\([AaPp][Mm]\\)?\\)")
2357 "Regular expression matching a time of day.")
2358
2359 (defvar calendar-hebrew-month-name-array-leap-year)
2360 (defvar calendar-islamic-month-name-array)
2361 (defvar calendar-bahai-month-name-array)
2362
2363 ;;;###cal-autoload
2364 (defun diary-font-lock-keywords ()
2365 "Return a value for the variable `diary-font-lock-keywords'."
2366 (append
2367 (diary-font-lock-date-forms calendar-month-name-array
2368 nil calendar-month-abbrev-array)
2369 (diary-font-lock-keywords-1 diary-hebrew-mark-entries
2370 diary-hebrew-list-entries
2371 cal-hebrew
2372 calendar-hebrew-month-name-array-leap-year
2373 diary-hebrew-entry-symbol)
2374 (diary-font-lock-keywords-1 diary-islamic-mark-entries
2375 diary-islamic-list-entries
2376 cal-islam
2377 calendar-islamic-month-name-array
2378 diary-islamic-entry-symbol)
2379 (diary-font-lock-keywords-1 diary-bahai-mark-entries
2380 diary-bahai-list-entries
2381 cal-bahai
2382 calendar-bahai-month-name-array
2383 diary-bahai-entry-symbol)
2384 (list
2385 (cons
2386 (format "^%s.*$" (regexp-quote diary-include-string))
2387 'font-lock-keyword-face)
2388 (cons
2389 (format "^%s?\\(%s\\)" (regexp-quote diary-nonmarking-symbol)
2390 (regexp-quote diary-sexp-entry-symbol))
2391 '(1 font-lock-reference-face))
2392 (cons
2393 (format "^%s" (regexp-quote diary-nonmarking-symbol))
2394 'font-lock-reference-face)
2395 (cons
2396 (format "^%s?%s" (regexp-quote diary-nonmarking-symbol)
2397 (regexp-opt (mapcar 'regexp-quote
2398 (list diary-hebrew-entry-symbol
2399 diary-islamic-entry-symbol
2400 diary-bahai-entry-symbol))
2401 t))
2402 '(1 font-lock-reference-face))
2403 '(diary-font-lock-sexps . font-lock-keyword-face)
2404 ;; Don't need to worry about space around "-" because the first
2405 ;; match takes care of that. It does mean the "-" itself may or
2406 ;; may not be fontified though.
2407 ;; diary-date-forms often include a final character that is not
2408 ;; part of the date (eg a non-digit to mark the end of the year).
2409 ;; This can use up the only space char between a date and time (b#7891).
2410 ;; Hence we use OVERRIDE, which can only override whitespace.
2411 ;; FIXME it's probably better to tighten up the diary-time-regexp
2412 ;; and drop the whitespace requirement below.
2413 `(,(format "\\(^\\|\\s-\\)%s\\(-%s\\)?" diary-time-regexp
2414 diary-time-regexp)
2415 . (0 'diary-time t)))))
2416 ; . 'diary-time))))
2417
2418 (defvar diary-font-lock-keywords (diary-font-lock-keywords)
2419 "Forms to highlight in `diary-mode'.")
2420
2421 ;;;###autoload
2422 (define-derived-mode diary-mode fundamental-mode "Diary"
2423 "Major mode for editing the diary file."
2424 (set (make-local-variable 'font-lock-defaults)
2425 '(diary-font-lock-keywords t))
2426 (set (make-local-variable 'comment-start) diary-comment-start)
2427 (set (make-local-variable 'comment-end) diary-comment-end)
2428 (add-to-invisibility-spec '(diary . nil))
2429 (add-hook 'after-save-hook 'diary-redraw-calendar nil t)
2430 ;; In case the file was modified externally, refresh the calendar
2431 ;; after refreshing the diary buffer.
2432 (add-hook 'after-revert-hook 'diary-redraw-calendar nil t)
2433 (if diary-header-line-flag
2434 (setq header-line-format diary-header-line-format)))
2435
2436
2437 ;;; Fancy Diary Mode.
2438
2439 (defun diary-fancy-date-pattern ()
2440 "Return a regexp matching the first line of a fancy diary date header.
2441 This depends on the calendar date style."
2442 (concat
2443 (let ((dayname (diary-name-pattern calendar-day-name-array nil t))
2444 (monthname (diary-name-pattern calendar-month-name-array nil t))
2445 (day "1")
2446 (month "2")
2447 ;; FIXME? This used to be "-?[0-9]+" - what was the "-?" for?
2448 (year "3"))
2449 ;; This is ugly. c-d-d-form expects `day' etc to be "numbers in
2450 ;; string form"; eg the iso version calls string-to-number on some.
2451 ;; Therefore we cannot eg just let day = "[0-9]+". (Bug#8583).
2452 ;; Assumes no integers in c-day/month-name-array.
2453 (replace-regexp-in-string "[0-9]+" "[0-9]+"
2454 (mapconcat 'eval calendar-date-display-form "")
2455 nil t))
2456 ;; Optional ": holiday name" after the date.
2457 "\\(: .*\\)?"))
2458
2459 (defun diary-fancy-date-matcher (limit)
2460 "Search for a fancy diary data header, up to LIMIT."
2461 ;; Any number of " other holiday name" lines, followed by "==" line.
2462 (when (re-search-forward
2463 (format "%s\\(\n +.*\\)*\n=+$" (diary-fancy-date-pattern)) limit t)
2464 (put-text-property (match-beginning 0) (match-end 0) 'font-lock-multiline t)
2465 t))
2466
2467 (define-obsolete-variable-alias 'fancy-diary-font-lock-keywords
2468 'diary-fancy-font-lock-keywords "23.1")
2469
2470 (defvar diary-fancy-font-lock-keywords
2471 `((diary-fancy-date-matcher . diary-face)
2472 ("^.*\\([aA]nniversary\\|[bB]irthday\\).*$" . 'diary-anniversary)
2473 ("^.*Yahrzeit.*$" . font-lock-reference-face)
2474 ("^\\(Erev \\)?Rosh Hodesh.*" . font-lock-function-name-face)
2475 ("^Day.*omer.*$" . font-lock-builtin-face)
2476 ("^Parashat.*$" . font-lock-comment-face)
2477 (,(format "\\(^\\|\\s-\\)%s\\(-%s\\)?" diary-time-regexp
2478 diary-time-regexp) . 'diary-time))
2479 "Keywords to highlight in fancy diary display.")
2480
2481 ;; If region looks like it might start or end in the middle of a
2482 ;; multiline pattern, extend the region to encompass the whole pattern.
2483 (defun diary-fancy-font-lock-fontify-region-function (beg end &optional verbose)
2484 "Function to use for `font-lock-fontify-region-function' in Fancy Diary.
2485 Needed to handle multiline keyword in `diary-fancy-font-lock-keywords'.
2486 Fontify the region between BEG and END, quietly unless VERBOSE is non-nil."
2487 (goto-char beg)
2488 (forward-line 0)
2489 (if (looking-at "=+$") (forward-line -1))
2490 (while (and (looking-at " +[^ ]")
2491 (zerop (forward-line -1))))
2492 ;; This check not essential.
2493 (if (looking-at (diary-fancy-date-pattern))
2494 (setq beg (line-beginning-position)))
2495 (goto-char end)
2496 (forward-line 0)
2497 (while (and (looking-at " +[^ ]")
2498 (zerop (forward-line 1))))
2499 (if (looking-at "=+$")
2500 (setq end (line-beginning-position 2)))
2501 (font-lock-default-fontify-region beg end verbose))
2502
2503 (defvar diary-fancy-overriding-map (make-sparse-keymap)
2504 "Keymap overriding minor-mode maps in `diary-fancy-display-mode'.")
2505
2506 (define-derived-mode diary-fancy-display-mode special-mode
2507 "Diary"
2508 "Major mode used while displaying diary entries using Fancy Display."
2509 (set (make-local-variable 'font-lock-defaults)
2510 '(diary-fancy-font-lock-keywords
2511 t nil nil nil
2512 (font-lock-fontify-region-function
2513 . diary-fancy-font-lock-fontify-region-function)))
2514 (set (make-local-variable 'minor-mode-overriding-map-alist)
2515 (list (cons t diary-fancy-overriding-map)))
2516 (view-mode 1))
2517
2518 (define-obsolete-function-alias 'fancy-diary-display-mode
2519 'diary-fancy-display-mode "23.1")
2520
2521 ;; Following code from Dave Love <fx@gnu.org>.
2522 ;; Import Outlook-format appointments from mail messages in Gnus or
2523 ;; Rmail using command `diary-from-outlook'. This, or the specialized
2524 ;; functions `diary-from-outlook-gnus' and `diary-from-outlook-rmail',
2525 ;; could be run from hooks to notice appointments automatically (in
2526 ;; which case they will prompt about adding to the diary). The
2527 ;; message formats recognized are customizable through `diary-outlook-formats'.
2528
2529 (defun diary-from-outlook-internal (subject body &optional test-only)
2530 "Snarf a diary entry from a message assumed to be from MS Outlook.
2531 SUBJECT and BODY are strings giving the message subject and body.
2532 Arg TEST-ONLY non-nil means return non-nil if and only if the
2533 message contains an appointment, don't make a diary entry."
2534 (catch 'finished
2535 (let (format-string)
2536 (dolist (fmt diary-outlook-formats)
2537 (when (eq 0 (string-match (car fmt) body))
2538 (unless test-only
2539 (setq format-string (cdr fmt))
2540 (save-excursion
2541 (save-window-excursion
2542 (diary-make-entry
2543 (format (replace-match (if (functionp format-string)
2544 (funcall format-string body)
2545 format-string)
2546 t nil (match-string 0 body))
2547 subject)))))
2548 (throw 'finished t))))
2549 nil))
2550
2551 (defvar gnus-article-mime-handles)
2552 (defvar gnus-article-buffer)
2553
2554 (autoload 'gnus-fetch-field "gnus-util")
2555 (autoload 'gnus-narrow-to-body "gnus")
2556 (autoload 'mm-get-part "mm-decode")
2557
2558 (defun diary-from-outlook-gnus (&optional noconfirm)
2559 "Maybe snarf diary entry from Outlook-generated message in Gnus.
2560 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2561 this function is called interactively), then if an entry is found the
2562 user is asked to confirm its addition.
2563 Add this function to `gnus-article-prepare-hook' to notice appointments
2564 automatically."
2565 (interactive "p")
2566 (with-current-buffer gnus-article-buffer
2567 (let ((subject (gnus-fetch-field "subject"))
2568 (body (if gnus-article-mime-handles
2569 ;; We're multipart. Don't get confused by part
2570 ;; buttons &c. Assume info is in first part.
2571 (mm-get-part (nth 1 gnus-article-mime-handles))
2572 (save-restriction
2573 (gnus-narrow-to-body)
2574 (buffer-string)))))
2575 (when (diary-from-outlook-internal subject body t)
2576 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2577 (diary-from-outlook-internal subject body)
2578 (message "Diary entry added"))))))
2579
2580 (custom-add-option 'gnus-article-prepare-hook 'diary-from-outlook-gnus)
2581
2582 (defvar rmail-buffer)
2583
2584 (defun diary-from-outlook-rmail (&optional noconfirm)
2585 "Maybe snarf diary entry from Outlook-generated message in Rmail.
2586 Unless the optional argument NOCONFIRM is non-nil (which is the case when
2587 this function is called interactively), then if an entry is found the
2588 user is asked to confirm its addition."
2589 (interactive "p")
2590 ;; FIXME maybe the body needs rmail-mm decoding, in which case
2591 ;; there is no single buffer with both body and subject, sigh.
2592 (with-current-buffer rmail-buffer
2593 (let ((subject (mail-fetch-field "subject"))
2594 (body (buffer-substring (save-excursion
2595 (rfc822-goto-eoh)
2596 (point))
2597 (point-max))))
2598 (when (diary-from-outlook-internal subject body t)
2599 (when (or noconfirm (y-or-n-p "Snarf diary entry? "))
2600 (diary-from-outlook-internal subject body)
2601 (message "Diary entry added"))))))
2602
2603 (defun diary-from-outlook (&optional noconfirm)
2604 "Maybe snarf diary entry from current Outlook-generated message.
2605 Currently knows about Gnus and Rmail modes. Unless the optional
2606 argument NOCONFIRM is non-nil (which is the case when this
2607 function is called interactively), then if an entry is found the
2608 user is asked to confirm its addition."
2609 (interactive "p")
2610 (let ((func (cond
2611 ((eq major-mode 'rmail-mode)
2612 #'diary-from-outlook-rmail)
2613 ((memq major-mode '(gnus-summary-mode gnus-article-mode))
2614 #'diary-from-outlook-gnus)
2615 (t (error "Don't know how to snarf in `%s'" major-mode)))))
2616 (funcall func noconfirm)))
2617
2618 (provide 'diary-lib)
2619
2620 ;;; diary-lib.el ends here