Merge from trunk
[bpt/emacs.git] / lisp / calendar / appt.el
1 ;;; appt.el --- appointment notification functions
2
3 ;; Copyright (C) 1989, 1990, 1994, 1998, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5
6 ;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Package: calendar
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;;
29 ;; appt.el - visible and/or audible notification of
30 ;; appointments from diary file.
31 ;;
32 ;;
33 ;; Thanks to Edward M. Reingold for much help and many suggestions,
34 ;; And to many others for bug fixes and suggestions.
35 ;;
36 ;;
37 ;; This functions in this file will alert the user of a
38 ;; pending appointment based on his/her diary file. This package
39 ;; is documented in the Emacs manual.
40 ;;
41 ;; To activate this package, simply use (appt-activate 1).
42 ;; A `diary-file' with appointments of the format described in the
43 ;; documentation of the function `appt-check' is required.
44 ;; Relevant customizable variables are also listed in the
45 ;; documentation of that function.
46 ;;
47 ;; Today's appointment list is initialized from the diary when this
48 ;; package is activated. Additionally, the appointments list is
49 ;; recreated automatically at 12:01am for those who do not logout
50 ;; every day or are programming late. It is also updated when the
51 ;; `diary-file' (or a file it includes) is saved. Calling
52 ;; `appt-check' with an argument (or re-enabling the package) forces a
53 ;; re-initialization at any time.
54 ;;
55 ;; In order to add or delete items from today's list, without
56 ;; changing the diary file, use `appt-add' and `appt-delete'.
57 ;;
58
59 ;; Brief internal description - Skip this if you are not interested!
60 ;;
61 ;; The function `appt-make-list' creates the appointments list which
62 ;; `appt-check' reads.
63 ;;
64 ;; You can change the way the appointment window is created/deleted by
65 ;; setting the variables
66 ;;
67 ;; appt-disp-window-function
68 ;; and
69 ;; appt-delete-window-function
70 ;;
71 ;; For instance, these variables could be set to functions that display
72 ;; appointments in pop-up frames, which are lowered or iconified after
73 ;; `appt-display-interval' minutes.
74 ;;
75
76 ;;; Code:
77
78 (require 'diary-lib)
79
80
81 (defgroup appt nil
82 "Appointment notification."
83 :prefix "appt-"
84 :group 'calendar)
85
86 (defcustom appt-issue-message t
87 "Non-nil means check for appointments in the diary buffer.
88 To be detected, the diary entry must have the format described in the
89 documentation of the function `appt-check'."
90 :type 'boolean
91 :group 'appt)
92
93 (make-obsolete-variable 'appt-issue-message
94 "use the function `appt-activate', and the \
95 variable `appt-display-format' instead." "22.1")
96
97 (defcustom appt-message-warning-time 12
98 "Time in minutes before an appointment that the warning begins."
99 :type 'integer
100 :group 'appt)
101
102 (defcustom appt-audible t
103 "Non-nil means beep to indicate appointment."
104 :type 'boolean
105 :group 'appt)
106
107 (defcustom appt-visible t
108 "Non-nil means display appointment message in echo area.
109 This variable is only relevant if `appt-msg-window' is nil."
110 :type 'boolean
111 :group 'appt)
112
113 (make-obsolete-variable 'appt-visible 'appt-display-format "22.1")
114
115 (defcustom appt-msg-window t
116 "Non-nil means display appointment message in another window.
117 If non-nil, this variable overrides `appt-visible'."
118 :type 'boolean
119 :group 'appt)
120
121 (make-obsolete-variable 'appt-msg-window 'appt-display-format "22.1")
122
123 ;; TODO - add popup.
124 (defcustom appt-display-format 'ignore
125 "How appointment reminders should be displayed.
126 The options are:
127 window - use a separate window
128 echo - use the echo area
129 nil - no visible reminder.
130 See also `appt-audible' and `appt-display-mode-line'.
131
132 The default value is 'ignore, which means to fall back on the value
133 of the (obsolete) variables `appt-msg-window' and `appt-visible'."
134 :type '(choice
135 (const :tag "Separate window" window)
136 (const :tag "Echo-area" echo)
137 (const :tag "No visible display" nil)
138 (const :tag "Backwards compatibility setting - choose another value"
139 ignore))
140 :group 'appt
141 :version "22.1")
142
143 (defcustom appt-display-mode-line t
144 "Non-nil means display minutes to appointment and time on the mode line.
145 This is in addition to any other display of appointment messages."
146 :type 'boolean
147 :group 'appt)
148
149 (defcustom appt-display-duration 10
150 "The number of seconds an appointment message is displayed.
151 Only relevant if reminders are to be displayed in their own window."
152 :type 'integer
153 :group 'appt)
154
155 (defcustom appt-display-diary t
156 "Non-nil displays the diary when the appointment list is first initialized.
157 This will occur at midnight when the appointment list is updated."
158 :type 'boolean
159 :group 'appt)
160
161 (defcustom appt-display-interval 3
162 "Number of minutes to wait between checking the appointment list."
163 :type 'integer
164 :group 'appt)
165
166 (defcustom appt-disp-window-function 'appt-disp-window
167 "Function called to display appointment window.
168 Only relevant if reminders are being displayed in a window.
169 It should take three string arguments: the number of minutes till
170 the appointment, the current time, and the text of the appointment."
171 :type '(choice (const appt-disp-window)
172 function)
173 :group 'appt)
174
175 (defcustom appt-delete-window-function 'appt-delete-window
176 "Function called to remove appointment window and buffer.
177 Only relevant if reminders are being displayed in a window."
178 :type '(choice (const appt-delete-window)
179 function)
180 :group 'appt)
181
182
183 ;;; Internal variables below this point.
184
185 (defconst appt-buffer-name "*appt-buf*"
186 "Name of the appointments buffer.")
187
188 ;; TODO Turn this into an alist? It would be easier to add more
189 ;; optional elements.
190 ;; TODO There should be a way to set WARNTIME (and other properties)
191 ;; from the diary-file. Implementing that would be a good reason
192 ;; to change this to an alist.
193 (defvar appt-time-msg-list nil
194 "The list of appointments for today.
195 Use `appt-add' and `appt-delete' to add and delete appointments.
196 The original list is generated from today's `diary-entries-list', and
197 can be regenerated using the function `appt-check'.
198 Each element of the generated list has the form
199 \(MINUTES STRING [FLAG] [WARNTIME])
200 where MINUTES is the time in minutes of the appointment after midnight,
201 and STRING is the description of the appointment.
202 FLAG and WARNTIME can only be present if the element was made
203 with `appt-add'. A non-nil FLAG indicates that the element was made
204 with `appt-add', so calling `appt-make-list' again should preserve it.
205 If WARNTIME is non-nil, it is an integer to use in place
206 of `appt-message-warning-time'.")
207
208 (defconst appt-max-time (1- (* 24 60))
209 "11:59pm in minutes - number of minutes in a day minus 1.")
210
211 (defvar appt-mode-string nil
212 "String being displayed in the mode line saying you have an appointment.
213 The actual string includes the amount of time till the appointment.
214 Only used if `appt-display-mode-line' is non-nil.")
215 (put 'appt-mode-string 'risky-local-variable t) ; for 'face property
216
217 (defvar appt-prev-comp-time nil
218 "Time of day (mins since midnight) at which we last checked appointments.
219 A nil value forces the diary file to be (re-)checked for appointments.")
220
221 (defvar appt-now-displayed nil
222 "Non-nil when we have started notifying about a appointment that is near.")
223
224 (defvar appt-display-count nil
225 "Internal variable used to count number of consecutive reminders.")
226
227 (defvar appt-timer nil
228 "Timer used for diary appointment notifications (`appt-check').
229 If this is non-nil, appointment checking is active.")
230
231
232 ;;; Functions.
233
234 (defun appt-display-message (string mins)
235 "Display a reminder about an appointment.
236 The string STRING describes the appointment, due in integer MINS minutes.
237 The format of the visible reminder is controlled by `appt-display-format'.
238 The variable `appt-audible' controls the audible reminder."
239 ;; Let-binding for backwards compatibility. Remove when obsolete
240 ;; vars appt-msg-window and appt-visible are dropped.
241 (let ((appt-display-format
242 (if (eq appt-display-format 'ignore)
243 (cond (appt-msg-window 'window)
244 (appt-visible 'echo))
245 appt-display-format)))
246 (if appt-audible (beep 1))
247 (cond ((eq appt-display-format 'window)
248 (funcall appt-disp-window-function
249 (number-to-string mins)
250 ;; TODO - use calendar-month-abbrev-array rather than %b?
251 (format-time-string "%a %b %e " (current-time))
252 string)
253 (run-at-time (format "%d sec" appt-display-duration)
254 nil
255 appt-delete-window-function))
256 ((eq appt-display-format 'echo)
257 (message "%s" string)))))
258
259
260 (defun appt-check (&optional force)
261 "Check for an appointment and update any reminder display.
262 If optional argument FORCE is non-nil, reparse the diary file for
263 appointments. Otherwise the diary file is only parsed once per day,
264 or when it (or a file it includes) is saved.
265
266 Note: the time must be the first thing in the line in the diary
267 for a warning to be issued. The format of the time can be either
268 24 hour or am/pm. For example:
269
270 02/23/89
271 18:00 Dinner
272
273 Thursday
274 11:45am Lunch meeting.
275
276 Appointments are checked every `appt-display-interval' minutes.
277 The following variables control appointment notification:
278
279 `appt-display-format'
280 Controls the format in which reminders are displayed.
281
282 `appt-audible'
283 Variable used to determine if reminder is audible.
284 Default is t.
285
286 `appt-message-warning-time'
287 Variable used to determine when appointment message
288 should first be displayed.
289
290 `appt-display-mode-line'
291 If non-nil, a generic message giving the time remaining
292 is shown in the mode-line when an appointment is due.
293
294 `appt-display-interval'
295 Interval in minutes at which to check for pending appointments.
296
297 `appt-display-diary'
298 Display the diary buffer when the appointment list is
299 initialized for the first time in a day.
300
301 The following variables are only relevant if reminders are being
302 displayed in a window:
303
304 `appt-display-duration'
305 The number of seconds an appointment message is displayed.
306
307 `appt-disp-window-function'
308 Function called to display appointment window.
309
310 `appt-delete-window-function'
311 Function called to remove appointment window and buffer."
312 (interactive "P") ; so people can force updates
313 (let* ((min-to-app -1)
314 (prev-appt-mode-string appt-mode-string)
315 (prev-appt-display-count (or appt-display-count 0))
316 ;; Non-nil means do a full check for pending appointments and
317 ;; display in whatever ways the user has selected. When no
318 ;; appointment is being displayed, we always do a full check.
319 (full-check
320 (or (not appt-now-displayed)
321 ;; This is true every appt-display-interval minutes.
322 (zerop (mod prev-appt-display-count appt-display-interval))))
323 ;; Non-nil means only update the interval displayed in the mode line.
324 (mode-line-only (unless full-check appt-now-displayed))
325 now cur-comp-time appt-comp-time appt-warn-time)
326 (when (or full-check mode-line-only)
327 (save-excursion ; FIXME ?
328 ;; Convert current time to minutes after midnight (12.01am = 1).
329 (setq now (decode-time)
330 cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
331 ;; At first check in any day, update appointments to today's list.
332 (if (or force ; eg initialize, diary save
333 (null appt-prev-comp-time) ; first check
334 (< cur-comp-time appt-prev-comp-time)) ; new day
335 (ignore-errors
336 (let ((diary-hook (if (assoc 'appt-make-list diary-hook)
337 diary-hook
338 (cons 'appt-make-list diary-hook))))
339 (if appt-display-diary
340 (diary)
341 ;; Not displaying the diary, so we can ignore
342 ;; diary-number-of-entries. Since appt.el only
343 ;; works on a daily basis, no need for more entries.
344 (diary-list-entries (calendar-current-date) 1 t)))))
345 (setq appt-prev-comp-time cur-comp-time
346 appt-mode-string nil
347 appt-display-count nil)
348 ;; If there are entries in the list, and the user wants a
349 ;; message issued, get the first time off of the list and
350 ;; calculate the number of minutes until the appointment.
351 (when (and appt-issue-message appt-time-msg-list)
352 (setq appt-comp-time (caar (car appt-time-msg-list))
353 appt-warn-time (or (nth 3 (car appt-time-msg-list))
354 appt-message-warning-time)
355 min-to-app (- appt-comp-time cur-comp-time))
356 (while (and appt-time-msg-list
357 (< appt-comp-time cur-comp-time))
358 (setq appt-time-msg-list (cdr appt-time-msg-list))
359 (if appt-time-msg-list
360 (setq appt-comp-time (caar (car appt-time-msg-list)))))
361 ;; If we have an appointment between midnight and
362 ;; `appt-warn-time' minutes after midnight, we
363 ;; must begin to issue a message before midnight. Midnight
364 ;; is considered 0 minutes and 11:59pm is 1439
365 ;; minutes. Therefore we must recalculate the minutes to
366 ;; appointment variable. It is equal to the number of
367 ;; minutes before midnight plus the number of minutes after
368 ;; midnight our appointment is.
369 (if (and (< appt-comp-time appt-warn-time)
370 (> (+ cur-comp-time appt-warn-time)
371 appt-max-time))
372 (setq min-to-app (+ (- (1+ appt-max-time) cur-comp-time)
373 appt-comp-time)))
374 ;; Issue warning if the appointment time is within
375 ;; appt-message-warning time.
376 (when (and (<= min-to-app appt-warn-time)
377 (>= min-to-app 0))
378 (setq appt-now-displayed t
379 appt-display-count (1+ prev-appt-display-count))
380 (unless mode-line-only
381 (appt-display-message (cadr (car appt-time-msg-list))
382 min-to-app))
383 (when appt-display-mode-line
384 (setq appt-mode-string
385 (concat " " (propertize
386 (format "App't in %s min." min-to-app)
387 'face 'mode-line-emphasis))))
388 ;; When an appointment is reached, delete it from the
389 ;; list. Reset the count to 0 in case we display another
390 ;; appointment on the next cycle.
391 (if (zerop min-to-app)
392 (setq appt-time-msg-list (cdr appt-time-msg-list)
393 appt-display-count nil))))
394 ;; If we have changed the mode line string, redisplay all mode lines.
395 (and appt-display-mode-line
396 (not (string-equal appt-mode-string
397 prev-appt-mode-string))
398 (progn
399 (force-mode-line-update t)
400 ;; If the string now has a notification, redisplay right now.
401 (if appt-mode-string
402 (sit-for 0))))))))
403
404 (defun appt-disp-window (min-to-app new-time appt-msg)
405 "Display appointment due in MIN-TO-APP (a string) minutes.
406 NEW-TIME is a string giving the date. Displays the appointment
407 message APPT-MSG in a separate buffer."
408 (let ((this-window (selected-window))
409 (appt-disp-buf (get-buffer-create appt-buffer-name)))
410 ;; Make sure we're not in the minibuffer before splitting the window.
411 ;; FIXME this seems needlessly complicated?
412 (when (minibufferp)
413 (other-window 1)
414 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
415 (if (cdr (assq 'unsplittable (frame-parameters)))
416 ;; In an unsplittable frame, use something somewhere else.
417 (progn
418 (set-buffer appt-disp-buf)
419 (display-buffer appt-disp-buf))
420 (unless (or (special-display-p (buffer-name appt-disp-buf))
421 (same-window-p (buffer-name appt-disp-buf)))
422 ;; By default, split the bottom window and use the lower part.
423 (appt-select-lowest-window)
424 ;; Split the window, unless it's too small to do so.
425 (when (>= (window-height) (* 2 window-min-height))
426 (select-window (split-window))))
427 (switch-to-buffer appt-disp-buf))
428 ;; FIXME Link to diary entry?
429 (calendar-set-mode-line
430 (format " Appointment %s. %s "
431 (if (string-equal "0" min-to-app) "now"
432 (format "in %s minute%s" min-to-app
433 (if (string-equal "1" min-to-app) "" "s")))
434 new-time))
435 (setq buffer-read-only nil
436 buffer-undo-list t)
437 (erase-buffer)
438 (insert appt-msg)
439 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
440 (set-buffer-modified-p nil)
441 (setq buffer-read-only t)
442 (raise-frame (selected-frame))
443 (select-window this-window)))
444
445 (defun appt-delete-window ()
446 "Function called to undisplay appointment messages.
447 Usually just deletes the appointment buffer."
448 (let ((window (get-buffer-window appt-buffer-name t)))
449 (and window
450 (or (eq window (frame-root-window (window-frame window)))
451 (delete-window window))))
452 (kill-buffer appt-buffer-name)
453 (if appt-audible
454 (beep 1)))
455
456 (defun appt-select-lowest-window ()
457 "Select the lowest window on the frame."
458 (let ((lowest-window (selected-window))
459 (bottom-edge (nth 3 (window-edges)))
460 next-bottom-edge)
461 (walk-windows (lambda (w)
462 (when (< bottom-edge (setq next-bottom-edge
463 (nth 3 (window-edges w))))
464 (setq bottom-edge next-bottom-edge
465 lowest-window w))) 'nomini)
466 (select-window lowest-window)))
467
468 (defconst appt-time-regexp
469 "[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
470
471 ;;;###autoload
472 (defun appt-add (time msg &optional warntime)
473 "Add an appointment for today at TIME with message MSG.
474 The time should be in either 24 hour format or am/pm format.
475 Optional argument WARNTIME is an integer (or string) giving the number
476 of minutes before the appointment at which to start warning.
477 The default is `appt-message-warning-time'."
478 (interactive "sTime (hh:mm[am/pm]): \nsMessage:
479 sMinutes before the appointment to start warning: ")
480 (unless (string-match appt-time-regexp time)
481 (error "Unacceptable time-string"))
482 (and (stringp warntime)
483 (setq warntime (unless (string-equal warntime "")
484 (string-to-number warntime))))
485 (and warntime
486 (not (integerp warntime))
487 (error "Argument WARNTIME must be an integer, or nil"))
488 (let ((time-msg (list (list (appt-convert-time time))
489 (concat time " " msg) t)))
490 ;; It is presently non-sensical to have multiple warnings about
491 ;; the same appointment with just different delays, but it might
492 ;; not always be so. TODO
493 (if warntime (setq time-msg (append time-msg (list warntime))))
494 (unless (member time-msg appt-time-msg-list)
495 (setq appt-time-msg-list
496 (appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
497
498 ;;;###autoload
499 (defun appt-delete ()
500 "Delete an appointment from the list of appointments."
501 (interactive)
502 (let ((tmp-msg-list appt-time-msg-list))
503 (dolist (element tmp-msg-list)
504 (if (y-or-n-p (concat "Delete "
505 ;; We want to quote any doublequotes in the
506 ;; string, as well as put doublequotes around it.
507 (prin1-to-string
508 (substring-no-properties (cadr element) 0))
509 " from list? "))
510 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
511 (appt-check)
512 (message ""))
513
514
515 (defvar number)
516 (defvar original-date)
517 (defvar diary-entries-list)
518 ;; Autoload for the old way of using this package. Can be removed sometime.
519 ;;;###autoload
520 (defun appt-make-list ()
521 "Update the appointments list from today's diary buffer.
522 The time must be at the beginning of a line for it to be
523 put in the appointments list (see examples in documentation of
524 the function `appt-check'). We assume that the variables DATE and
525 NUMBER hold the arguments that `diary-list-entries' received.
526 They specify the range of dates that the diary is being processed for.
527
528 Any appointments made with `appt-add' are not affected by this function.
529
530 For backwards compatibility, this function activates the
531 appointment package (if it is not already active)."
532 ;; See comments above appt-activate defun.
533 (if (not appt-timer)
534 (appt-activate 1)
535 ;; We have something to do if the range of dates that the diary is
536 ;; considering includes the current date.
537 (if (and (not (calendar-date-compare
538 (list (calendar-current-date))
539 (list original-date)))
540 (calendar-date-compare
541 (list (calendar-current-date))
542 (list (calendar-gregorian-from-absolute
543 (+ (calendar-absolute-from-gregorian original-date)
544 number)))))
545 (save-excursion
546 ;; Clear the appointments list, then fill it in from the diary.
547 (dolist (elt appt-time-msg-list)
548 ;; Delete any entries that were not made with appt-add.
549 (unless (nth 2 elt)
550 (setq appt-time-msg-list
551 (delq elt appt-time-msg-list))))
552 (if diary-entries-list
553 ;; Cycle through the entry-list (diary-entries-list)
554 ;; looking for entries beginning with a time. If the
555 ;; entry begins with a time, add it to the
556 ;; appt-time-msg-list. Then sort the list.
557 (let ((entry-list diary-entries-list)
558 (new-time-string "")
559 time-string)
560 ;; Below, we assume diary-entries-list was in date
561 ;; order. It is, unless something on
562 ;; diary-list-entries-hook has changed it, eg
563 ;; diary-include-other-files (bug#7019). It must be
564 ;; in date order if number = 1.
565 (and diary-list-entries-hook
566 appt-display-diary
567 (not (eq diary-number-of-entries 1))
568 (not (memq (car (last diary-list-entries-hook))
569 '(diary-sort-entries sort-diary-entries)))
570 (setq entry-list (sort entry-list 'diary-entry-compare)))
571 ;; Skip diary entries for dates before today.
572 (while (and entry-list
573 (calendar-date-compare
574 (car entry-list) (list (calendar-current-date))))
575 (setq entry-list (cdr entry-list)))
576 ;; Parse the entries for today.
577 (while (and entry-list
578 (calendar-date-equal
579 (calendar-current-date) (caar entry-list)))
580 (setq time-string (cadr (car entry-list)))
581 (while (string-match appt-time-regexp time-string)
582 (let* ((beg (match-beginning 0))
583 ;; Get just the time for this appointment.
584 (only-time (match-string 0 time-string))
585 ;; Find the end of this appointment
586 ;; (the start of the next).
587 (end (string-match
588 (concat "\n[ \t]*" appt-time-regexp)
589 time-string
590 (match-end 0)))
591 ;; Get the whole string for this appointment.
592 (appt-time-string
593 (substring time-string beg end))
594 (appt-time (list (appt-convert-time only-time)))
595 (time-msg (list appt-time appt-time-string)))
596 ;; Add this appointment to appt-time-msg-list.
597 (setq appt-time-msg-list
598 (nconc appt-time-msg-list (list time-msg))
599 ;; Discard this appointment from the string.
600 time-string
601 (if end (substring time-string end) ""))))
602 (setq entry-list (cdr entry-list)))))
603 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
604 ;; Convert current time to minutes after midnight (12:01am = 1),
605 ;; so that elements in the list that are earlier than the
606 ;; present time can be removed.
607 (let* ((now (decode-time))
608 (cur-comp-time (+ (* 60 (nth 2 now)) (nth 1 now)))
609 (appt-comp-time (caar (car appt-time-msg-list))))
610 (while (and appt-time-msg-list (< appt-comp-time cur-comp-time))
611 (setq appt-time-msg-list (cdr appt-time-msg-list))
612 (if appt-time-msg-list
613 (setq appt-comp-time (caar (car appt-time-msg-list))))))))))
614
615
616 (defun appt-sort-list (appt-list)
617 "Sort an appointment list, putting earlier items at the front.
618 APPT-LIST is a list of the same format as `appt-time-msg-list'."
619 (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
620
621
622 (defun appt-convert-time (time2conv)
623 "Convert hour:min[am/pm] format TIME2CONV to minutes from midnight.
624 A period (.) can be used instead of a colon (:) to separate the
625 hour and minute parts."
626 ;; Formats that should be accepted:
627 ;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
628 (let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
629 (string-to-number (match-string 1 time2conv))
630 0))
631 (hr (if (string-match "[0-9]*[0-9]" time2conv)
632 (string-to-number (match-string 0 time2conv))
633 0)))
634 ;; Convert the time appointment time into 24 hour time.
635 (cond ((and (string-match "pm" time2conv) (< hr 12))
636 (setq hr (+ 12 hr)))
637 ((and (string-match "am" time2conv) (= hr 12))
638 (setq hr 0)))
639 ;; Convert the actual time into minutes.
640 (+ (* hr 60) min)))
641
642 (defun appt-update-list ()
643 "If the current buffer is visiting the diary, update appointments.
644 This function also acts on any file listed in `diary-included-files'.
645 It is intended for use with `write-file-functions'."
646 (and (member buffer-file-name (append diary-included-files
647 (list (expand-file-name diary-file))))
648 appt-timer
649 (let ((appt-display-diary nil))
650 (appt-check t)))
651 nil)
652
653 ;; In Emacs-21.3, the manual documented the following procedure to
654 ;; activate this package:
655 ;; (display-time)
656 ;; (add-hook 'diary-hook 'appt-make-list)
657 ;; (diary 0)
658 ;; The display-time call was not necessary, AFAICS.
659 ;; What was really needed was to add the hook and load this file.
660 ;; Calling (diary 0) once the hook had been added was in some sense a
661 ;; roundabout way of loading this file. This file used to have code at
662 ;; the top-level that set up the appt-timer and global-mode-string.
663 ;; One way to maintain backwards compatibility would be to call
664 ;; (appt-activate 1) at top-level. However, this goes against the
665 ;; convention that just loading an Emacs package should not activate
666 ;; it. Instead, we make appt-make-list activate the package (after a
667 ;; suggestion from rms). This means that one has to call diary in
668 ;; order to get it to work, but that is in line with the old (weird,
669 ;; IMO) documented behavior for activating the package.
670 ;; Actually, since (diary 0) does not run diary-hook, I don't think
671 ;; the documented behavior in Emacs-21.3 would ever have worked.
672 ;; Oh well, at least with the changes to appt-make-list it will now
673 ;; work as well as it ever did.
674 ;; The new method is just to use (appt-activate 1).
675 ;; -- gmorris
676
677 ;;;###autoload
678 (defun appt-activate (&optional arg)
679 "Toggle checking of appointments.
680 With optional numeric argument ARG, turn appointment checking on if
681 ARG is positive, otherwise off."
682 (interactive "P")
683 (let ((appt-active appt-timer))
684 (setq appt-active (if arg (> (prefix-numeric-value arg) 0)
685 (not appt-active)))
686 (remove-hook 'write-file-functions 'appt-update-list)
687 (or global-mode-string (setq global-mode-string '("")))
688 (delq 'appt-mode-string global-mode-string)
689 (when appt-timer
690 (cancel-timer appt-timer)
691 (setq appt-timer nil))
692 (when appt-active
693 (diary-check-diary-file)
694 (add-hook 'write-file-functions 'appt-update-list)
695 (setq appt-timer (run-at-time t 60 'appt-check)
696 global-mode-string
697 (append global-mode-string '(appt-mode-string)))
698 (appt-check t))))
699
700
701 (provide 'appt)
702
703 ;; arch-tag: bf5791c4-8921-499e-a26f-772b1788d347
704 ;;; appt.el ends here