]> code.delx.au - gnu-emacs/blob - lisp/diary-lib.el
*** empty log message ***
[gnu-emacs] / lisp / diary-lib.el
1 ;;; diary.el --- diary functions.
2
3 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
4 ;; Last-Modified: 30 Jun 1992
5 ;; Keyword: calendar
6
7 ;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY. No author or distributor
13 ;; accepts responsibility to anyone for the consequences of using it
14 ;; or for whether it serves any particular purpose or works at all,
15 ;; unless he says so in writing. Refer to the GNU Emacs General Public
16 ;; License for full details.
17
18 ;; Everyone is granted permission to copy, modify and redistribute
19 ;; GNU Emacs, but only under the conditions described in the
20 ;; GNU Emacs General Public License. A copy of this license is
21 ;; supposed to have been given to you along with GNU Emacs so you
22 ;; can know your rights and responsibilities. It should be in a
23 ;; file named COPYING. Among other things, the copyright notice
24 ;; and this notice must be preserved on all copies.
25
26 ;;; Commentary:
27
28 ;; This collection of functions implements the diary features as described
29 ;; in calendar.el.
30
31 ;; Comments, corrections, and improvements should be sent to
32 ;; Edward M. Reingold Department of Computer Science
33 ;; (217) 333-6733 University of Illinois at Urbana-Champaign
34 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
35 ;; Urbana, Illinois 61801
36
37 ;;; Code:
38
39 (require 'calendar)
40
41 ;;;###autoload
42 (defun diary (&optional arg)
43 "Generate the diary window for ARG days starting with the current date.
44 If no argument is provided, the number of days of diary entries is governed
45 by the variable `number-of-diary-entries'. This function is suitable for
46 execution in a .emacs file."
47 (interactive "P")
48 (let ((d-file (substitute-in-file-name diary-file))
49 (date (calendar-current-date)))
50 (if (and d-file (file-exists-p d-file))
51 (if (file-readable-p d-file)
52 (list-diary-entries
53 date
54 (cond
55 (arg (prefix-numeric-value arg))
56 ((vectorp number-of-diary-entries)
57 (aref number-of-diary-entries (calendar-day-of-week date)))
58 (t number-of-diary-entries)))
59 (error "Your diary file is not readable!"))
60 (error "You don't have a diary file!"))))
61
62 (defun view-diary-entries (arg)
63 "Prepare and display a buffer with diary entries.
64 Searches the file diary-file for entries that match ARG days starting with
65 the date indicated by the cursor position in the displayed three-month
66 calendar."
67 (interactive "p")
68 (let ((d-file (substitute-in-file-name diary-file)))
69 (if (and d-file (file-exists-p d-file))
70 (if (file-readable-p d-file)
71 (list-diary-entries (or (calendar-cursor-to-date)
72 (error "Cursor is not on a date!"))
73 arg)
74 (error "Your diary file is not readable!"))
75 (error "You don't have a diary file!"))))
76
77 (autoload 'check-calendar-holidays "holidays"
78 "Check the list of holidays for any that occur on DATE.
79 The value returned is a list of strings of relevant holiday descriptions.
80 The holidays are those in the list calendar-holidays.")
81
82 (autoload 'calendar-holiday-list "holidays"
83 "Form the list of holidays that occur on dates in the calendar window.
84 The holidays are those in the list calendar-holidays.")
85
86 (defvar diary-syntax-table
87 (standard-syntax-table)
88 "The syntax table used when parsing dates in the diary file.
89 It is the standard syntax table used in Fundamental mode, but with the
90 syntax of `*' changed to be a word constituent.")
91
92 (modify-syntax-entry ?* "w" diary-syntax-table)
93
94 (defun list-diary-entries (date number)
95 "Create and display a buffer containing the relevant lines in diary-file.
96 All lines that apply to DATE and the next NUMBER-1 days are included.
97
98 Makes all diary entries in the diary file invisible (using selective display),
99 *except* those that are relevant.
100
101 Returns a list of all relevant diary entries found, if any, in order by date.
102 The list entries have the form ((month day year) string). If the variable
103 `diary-list-include-blanks' is t, this list will include a dummy diary entry
104 \(consisting of the empty string\) for a date with no diary entries.
105
106 After the list is prepared, the hooks `nongregorian-diary-listing-hook',
107 `list-diary-entries-hook', and `diary-display-hook' are run. These hooks
108 have the following distinct roles:
109
110 `nongregorian-diary-listing-hook' can cull dates from the diary
111 and each included file. Usually used for Hebrew or Islamic
112 diary entries in files. Applied to *each* file.
113
114 `list-diary-entries-hook' adds or manipulates diary entries from
115 external sources. Used, for example, to include diary entries
116 from other files or to sort the diary entries. Invoked *once* only.
117
118 `diary-display-hook' does the actual display of information. Could be
119 used also for an appointment notification function."
120
121 (if (< 0 number)
122 (let* ((original-date date);; save for possible use in the hooks
123 (old-diary-syntax-table)
124 (diary-entries-list)
125 (date-string (calendar-date-string date))
126 (d-file (substitute-in-file-name diary-file)))
127 (message "Preparing diary...")
128 (save-excursion
129 (let ((diary-buffer (get-file-buffer d-file)))
130 (set-buffer (if diary-buffer
131 diary-buffer
132 (find-file-noselect d-file t))))
133 (setq selective-display t)
134 (setq selective-display-ellipses nil)
135 (setq old-diary-syntax-table (syntax-table))
136 (set-syntax-table diary-syntax-table)
137 (unwind-protect
138 (let ((buffer-read-only nil)
139 (diary-modified (buffer-modified-p))
140 (mark (regexp-quote diary-nonmarking-symbol)))
141 (goto-char (1- (point-max)))
142 (if (not (looking-at "\^M\\|\n"))
143 (progn
144 (forward-char 1)
145 (insert-string "\^M")))
146 (goto-char (point-min))
147 (if (not (looking-at "\^M\\|\n"))
148 (insert-string "\^M"))
149 (subst-char-in-region (point-min) (point-max) ?\n ?\^M t)
150 (calendar-for-loop i from 1 to number do
151 (let ((d diary-date-forms)
152 (month (extract-calendar-month date))
153 (day (extract-calendar-day date))
154 (year (extract-calendar-year date))
155 (entry-found (list-sexp-diary-entries date)))
156 (while d
157 (let*
158 ((date-form (if (equal (car (car d)) 'backup)
159 (cdr (car d))
160 (car d)))
161 (backup (equal (car (car d)) 'backup))
162 (dayname
163 (concat
164 (calendar-day-name date) "\\|"
165 (substring (calendar-day-name date) 0 3) ".?"))
166 (monthname
167 (concat
168 "\\*\\|"
169 (calendar-month-name month) "\\|"
170 (substring (calendar-month-name month) 0 3) ".?"))
171 (month (concat "\\*\\|0*" (int-to-string month)))
172 (day (concat "\\*\\|0*" (int-to-string day)))
173 (year
174 (concat
175 "\\*\\|0*" (int-to-string year)
176 (if abbreviated-calendar-year
177 (concat "\\|" (int-to-string (% year 100)))
178 "")))
179 (regexp
180 (concat
181 "\\(\\`\\|\^M\\|\n\\)" mark "?\\("
182 (mapconcat 'eval date-form "\\)\\(")
183 "\\)"))
184 (case-fold-search t))
185 (goto-char (point-min))
186 (while (re-search-forward regexp nil t)
187 (if backup (re-search-backward "\\<" nil t))
188 (if (and (or (char-equal (preceding-char) ?\^M)
189 (char-equal (preceding-char) ?\n))
190 (not (looking-at " \\|\^I")))
191 ;; Diary entry that consists only of date.
192 (backward-char 1)
193 ;; Found a nonempty diary entry--make it visible and
194 ;; add it to the list.
195 (setq entry-found t)
196 (let ((entry-start (point))
197 (date-start))
198 (re-search-backward "\^M\\|\n\\|\\`")
199 (setq date-start (point))
200 (re-search-forward "\^M\\|\n" nil t 2)
201 (while (looking-at " \\|\^I")
202 (re-search-forward "\^M\\|\n" nil t))
203 (backward-char 1)
204 (subst-char-in-region date-start
205 (point) ?\^M ?\n t)
206 (add-to-diary-list
207 date (buffer-substring entry-start (point)))))))
208 (setq d (cdr d)))
209 (or entry-found
210 (not diary-list-include-blanks)
211 (setq diary-entries-list
212 (append diary-entries-list
213 (list (list date "")))))
214 (setq date
215 (calendar-gregorian-from-absolute
216 (1+ (calendar-absolute-from-gregorian date))))
217 (setq entry-found nil)))
218 (set-buffer-modified-p diary-modified))
219 (set-syntax-table old-diary-syntax-table))
220 (goto-char (point-min))
221 (run-hooks 'nongregorian-diary-listing-hook
222 'list-diary-entries-hook
223 'diary-display-hook)
224 diary-entries-list))))
225
226 (defun include-other-diary-files ()
227 "Include the diary entries from other diary files with those of diary-file.
228 This function is suitable for use just before fancy-diary-display as the
229 list-diary-entries-hook; it enables you to use shared diary files together
230 with your own. The files included are specified in the diary-file by lines of
231 the form
232 #include \"filename\"
233 This is recursive; that is, #include directives in diary files thus included
234 are obeyed. You can change the \"#include\" to some other string by
235 changing the variable `diary-include-string'."
236 (goto-char (point-min))
237 (while (re-search-forward
238 (concat
239 "\\(\\`\\|\^M\\|\n\\)"
240 (regexp-quote diary-include-string)
241 " \"\\([^\"]*\\)\"")
242 nil t)
243 (let ((diary-file (substitute-in-file-name
244 (buffer-substring (match-beginning 2) (match-end 2))))
245 (diary-list-include-blanks nil)
246 (list-diary-entries-hook 'include-other-diary-files)
247 (diary-display-hook nil))
248 (if (file-exists-p diary-file)
249 (if (file-readable-p diary-file)
250 (unwind-protect
251 (setq diary-entries-list
252 (append diary-entries-list
253 (list-diary-entries original-date number)))
254 (kill-buffer (get-file-buffer diary-file)))
255 (beep)
256 (message "Can't read included diary file %s" diary-file)
257 (sleep-for 2))
258 (beep)
259 (message "Can't find included diary file %s" diary-file)
260 (sleep-for 2))))
261 (goto-char (point-min)))
262
263 (defun simple-diary-display ()
264 "Display the diary buffer if there are any relevant entries or holidays."
265 (let* ((holiday-list (if holidays-in-diary-buffer
266 (check-calendar-holidays original-date)))
267 (msg (format "No diary entries for %s %s"
268 (concat date-string (if holiday-list ":" ""))
269 (mapconcat 'identity holiday-list "; "))))
270 (if (or (not diary-entries-list)
271 (and (not (cdr diary-entries-list))
272 (string-equal (car (cdr (car diary-entries-list))) "")))
273 (if (<= (length msg) (frame-width))
274 (message msg)
275 (set-buffer (get-buffer-create holiday-buffer))
276 (setq buffer-read-only nil)
277 (setq mode-line-format
278 (format "--------------------------%s%%-" date-string))
279 (erase-buffer)
280 (insert (mapconcat 'identity holiday-list "\n"))
281 (goto-char (point-min))
282 (set-buffer-modified-p nil)
283 (setq buffer-read-only t)
284 (display-buffer holiday-buffer)
285 (message "No diary entries for %s" date-string))
286 (setq mode-line-format
287 (format "%%*--%sDiary %s %s%s%s%%-"
288 (if holiday-list "" "---------------")
289 (if holiday-list "for" "entries for")
290 date-string
291 (if holiday-list ": " "")
292 (mapconcat 'identity holiday-list "; ")))
293 (display-buffer (get-file-buffer d-file))
294 (message "Preparing diary...done"))))
295
296 (defun fancy-diary-display ()
297 "Prepare a diary buffer with relevant entries in a fancy, noneditable form.
298 This function is provided for optional use as the `list-diary-entries-hook'."
299 (if (or (not diary-entries-list)
300 (and (not (cdr diary-entries-list))
301 (string-equal (car (cdr (car diary-entries-list))) "")))
302 (let* ((holiday-list (if holidays-in-diary-buffer
303 (check-calendar-holidays original-date)))
304 (msg (format "No diary entries for %s %s"
305 (concat date-string (if holiday-list ":" ""))
306 (mapconcat 'identity holiday-list "; "))))
307 (if (<= (length msg) (frame-width))
308 (message msg)
309 (set-buffer (get-buffer-create holiday-buffer))
310 (setq buffer-read-only nil)
311 (setq mode-line-format
312 (format "--------------------------%s%%-" date-string))
313 (erase-buffer)
314 (insert (mapconcat 'identity holiday-list "\n"))
315 (goto-char (point-min))
316 (set-buffer-modified-p nil)
317 (setq buffer-read-only t)
318 (display-buffer holiday-buffer)
319 (message "No diary entries for %s" date-string)))
320 (save-excursion;; Turn off selective-display in the diary file's buffer.
321 (set-buffer (get-file-buffer (substitute-in-file-name diary-file)))
322 (let ((diary-modified (buffer-modified-p)))
323 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
324 (setq selective-display nil)
325 (kill-local-variable 'mode-line-format)
326 (set-buffer-modified-p diary-modified)))
327 (save-excursion;; Prepare the fancy diary buffer.
328 (set-buffer (get-buffer-create fancy-diary-buffer))
329 (setq buffer-read-only nil)
330 (make-local-variable 'mode-line-format)
331 (setq mode-line-format "---------------------------Diary Entries%-")
332 (erase-buffer)
333 (let ((entry-list diary-entries-list)
334 (holiday-list)
335 (holiday-list-last-month 1)
336 (holiday-list-last-year 1)
337 (date (list 0 0 0)))
338 (while entry-list
339 (if (not (calendar-date-equal date (car (car entry-list))))
340 (progn
341 (setq date (car (car entry-list)))
342 (and holidays-in-diary-buffer
343 (calendar-date-compare
344 (list (list holiday-list-last-month
345 (calendar-last-day-of-month
346 holiday-list-last-month
347 holiday-list-last-year)
348 holiday-list-last-year))
349 (list date))
350 ;; We need to get the holidays for the next 3 months.
351 (setq holiday-list-last-month
352 (extract-calendar-month date))
353 (setq holiday-list-last-year
354 (extract-calendar-year date))
355 (increment-calendar-month
356 holiday-list-last-month holiday-list-last-year 1)
357 (setq holiday-list
358 (let ((displayed-month holiday-list-last-month)
359 (displayed-year holiday-list-last-year))
360 (calendar-holiday-list)))
361 (increment-calendar-month
362 holiday-list-last-month holiday-list-last-year 1))
363 (let* ((date-string (calendar-date-string date))
364 (date-holiday-list
365 (let ((h holiday-list)
366 (d))
367 ;; Make a list of all holidays for date.
368 (while h
369 (if (calendar-date-equal date (car (car h)))
370 (setq d (append d (cdr (car h)))))
371 (setq h (cdr h)))
372 d)))
373 (insert (if (= (point) (point-min)) "" ?\n) date-string)
374 (if date-holiday-list (insert ": "))
375 (let ((l (current-column)))
376 (insert (mapconcat 'identity date-holiday-list
377 (concat "\n" (make-string l ? )))))
378 (let ((l (current-column)))
379 (insert ?\n (make-string l ?=) ?\n)))))
380 (if (< 0 (length (car (cdr (car entry-list)))))
381 (insert (car (cdr (car entry-list))) ?\n))
382 (setq entry-list (cdr entry-list))))
383 (set-buffer-modified-p nil)
384 (goto-char (point-min))
385 (setq buffer-read-only t)
386 (display-buffer fancy-diary-buffer)
387 (message "Preparing diary...done"))))
388
389 (defun print-diary-entries ()
390 "Print a hard copy of the entries visible in the diary window.
391 The hooks given by the variable `print-diary-entries-hook' are called after
392 the temporary buffer of visible diary entries is prepared; it is the hooks
393 that do the actual printing and kill the buffer."
394 (interactive)
395 (let ((diary-buffer (get-file-buffer (substitute-in-file-name diary-file))))
396 (if diary-buffer
397 (let ((temp-buffer (get-buffer-create "*Printable Diary Entries*")))
398 (save-excursion
399 (set-buffer diary-buffer)
400 (copy-to-buffer temp-buffer (point-min) (point-max))
401 (set-buffer temp-buffer)
402 (while (re-search-forward "\^M.*$" nil t)
403 (replace-match ""))
404 (run-hooks 'print-diary-entries-hook)))
405 (error "You don't have a diary buffer!"))))
406
407 (defun add-diary-heading ()
408 "Add a heading to the diary entries for printing.
409 The heading is formed from the mode line of the diary buffer. This function
410 is used in the default value of the variable `print-diary-entry-hooks'."
411 (save-excursion
412 (let ((heading))
413 (set-buffer diary-buffer)
414 (setq heading mode-line-format)
415 (string-match "%\\*-*\\([^-].*\\)%-$" heading)
416 (setq heading
417 (substring heading (match-beginning 1) (match-end 1)))
418 (set-buffer temp-buffer)
419 (goto-char (point-min))
420 (insert heading "\n"
421 (make-string (length heading) ?=) "\n"))))
422
423 (defun show-all-diary-entries ()
424 "Show all of the diary entries in the diary-file.
425 This function gets rid of the selective display of the diary-file so that
426 all entries, not just some, are visible. If there is no diary buffer, one
427 is created."
428 (interactive)
429 (let ((d-file (substitute-in-file-name diary-file)))
430 (if (and d-file (file-exists-p d-file))
431 (if (file-readable-p d-file)
432 (save-excursion
433 (let ((diary-buffer (get-file-buffer d-file)))
434 (set-buffer (if diary-buffer
435 diary-buffer
436 (find-file-noselect d-file t)))
437 (let ((buffer-read-only nil)
438 (diary-modified (buffer-modified-p)))
439 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t)
440 (setq selective-display nil)
441 (make-local-variable 'mode-line-format)
442 (setq mode-line-format
443 "%*---------------------------All Diary Entries%-")
444 (display-buffer (current-buffer))
445 (set-buffer-modified-p diary-modified))))
446 (error "Your diary file is not readable!"))
447 (error "You don't have a diary file!"))))
448
449 (defun diary-name-pattern (string-array &optional fullname)
450 "Convert an STRING-ARRAY, an array of strings to a pattern.
451 The pattern will match any of the strings, either entirely or abbreviated
452 to three characters. An abbreviated form will match with or without a period;
453 If the optional FULLNAME is t, abbreviations will not match, just the full
454 name."
455 (let ((pattern ""))
456 (calendar-for-loop i from 0 to (1- (length string-array)) do
457 (setq pattern
458 (concat
459 pattern
460 (if (string-equal pattern "") "" "\\|")
461 (aref string-array i)
462 (if fullname
463 ""
464 (concat
465 "\\|"
466 (substring (aref string-array i) 0 3) ".?")))))
467 pattern))
468
469 (defun mark-diary-entries ()
470 "Mark days in the calendar window that have diary entries.
471 Each entry in diary-file visible in the calendar window is marked. After the
472 entries are marked, the hooks `nongregorian-diary-marking-hook' and
473 `mark-diary-entries-hook' are run."
474 (interactive)
475 (setq mark-diary-entries-in-calendar t)
476 (let ((d-file (substitute-in-file-name diary-file)))
477 (if (and d-file (file-exists-p d-file))
478 (if (file-readable-p d-file)
479 (save-excursion
480 (message "Marking diary entries...")
481 (set-buffer (find-file-noselect d-file t))
482 (let ((d diary-date-forms)
483 (old-diary-syntax-table))
484 (setq old-diary-syntax-table (syntax-table))
485 (set-syntax-table diary-syntax-table)
486 (while d
487 (let*
488 ((date-form (if (equal (car (car d)) 'backup)
489 (cdr (car d))
490 (car d)));; ignore 'backup directive
491 (dayname (diary-name-pattern calendar-day-name-array))
492 (monthname
493 (concat
494 (diary-name-pattern calendar-month-name-array)
495 "\\|\\*"))
496 (month "[0-9]+\\|\\*")
497 (day "[0-9]+\\|\\*")
498 (year "[0-9]+\\|\\*")
499 (l (length date-form))
500 (d-name-pos (- l (length (memq 'dayname date-form))))
501 (d-name-pos (if (/= l d-name-pos) (+ 2 d-name-pos)))
502 (m-name-pos (- l (length (memq 'monthname date-form))))
503 (m-name-pos (if (/= l m-name-pos) (+ 2 m-name-pos)))
504 (d-pos (- l (length (memq 'day date-form))))
505 (d-pos (if (/= l d-pos) (+ 2 d-pos)))
506 (m-pos (- l (length (memq 'month date-form))))
507 (m-pos (if (/= l m-pos) (+ 2 m-pos)))
508 (y-pos (- l (length (memq 'year date-form))))
509 (y-pos (if (/= l y-pos) (+ 2 y-pos)))
510 (regexp
511 (concat
512 "\\(\\`\\|\^M\\|\n\\)\\("
513 (mapconcat 'eval date-form "\\)\\(")
514 "\\)"))
515 (case-fold-search t))
516 (goto-char (point-min))
517 (while (re-search-forward regexp nil t)
518 (let* ((dd-name
519 (if d-name-pos
520 (buffer-substring
521 (match-beginning d-name-pos)
522 (match-end d-name-pos))))
523 (mm-name
524 (if m-name-pos
525 (buffer-substring
526 (match-beginning m-name-pos)
527 (match-end m-name-pos))))
528 (mm (string-to-int
529 (if m-pos
530 (buffer-substring
531 (match-beginning m-pos)
532 (match-end m-pos))
533 "")))
534 (dd (string-to-int
535 (if d-pos
536 (buffer-substring
537 (match-beginning d-pos)
538 (match-end d-pos))
539 "")))
540 (y-str (if y-pos
541 (buffer-substring
542 (match-beginning y-pos)
543 (match-end y-pos))))
544 (yy (if (not y-str)
545 0
546 (if (and (= (length y-str) 2)
547 abbreviated-calendar-year)
548 (let* ((current-y
549 (extract-calendar-year
550 (calendar-current-date)))
551 (y (+ (string-to-int y-str)
552 (* 100
553 (/ current-y 100)))))
554 (if (> (- y current-y) 50)
555 (- y 100)
556 (if (> (- current-y y) 50)
557 (+ y 100)
558 y)))
559 (string-to-int y-str)))))
560 (if dd-name
561 (mark-calendar-days-named
562 (cdr (assoc (capitalize (substring dd-name 0 3))
563 (calendar-make-alist
564 calendar-day-name-array
565 0
566 '(lambda (x) (substring x 0 3))))))
567 (if mm-name
568 (if (string-equal mm-name "*")
569 (setq mm 0)
570 (setq mm
571 (cdr (assoc
572 (capitalize
573 (substring mm-name 0 3))
574 (calendar-make-alist
575 calendar-month-name-array
576 1
577 '(lambda (x) (substring x 0 3)))
578 )))))
579 (mark-calendar-date-pattern mm dd yy))))
580 (setq d (cdr d))))
581 (mark-sexp-diary-entries)
582 (run-hooks 'nongregorian-diary-marking-hook
583 'mark-diary-entries-hook)
584 (set-syntax-table old-diary-syntax-table)
585 (message "Marking diary entries...done")))
586 (error "Your diary file is not readable!"))
587 (error "You don't have a diary file!"))))
588
589 (defun mark-sexp-diary-entries ()
590 "Mark days in the calendar window that have sexp diary entries.
591 Each entry in diary-file (or included files) visible in the calendar window
592 is marked. See the documentation for the function `list-sexp-diary-entries'."
593 (let* ((sexp-mark (regexp-quote sexp-diary-entry-symbol))
594 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)" sexp-mark "("))
595 (m)
596 (y)
597 (first-date)
598 (last-date))
599 (save-excursion
600 (set-buffer calendar-buffer)
601 (setq m displayed-month)
602 (setq y displayed-year))
603 (increment-calendar-month m y -1)
604 (setq first-date
605 (calendar-absolute-from-gregorian (list m 1 y)))
606 (increment-calendar-month m y 2)
607 (setq last-date
608 (calendar-absolute-from-gregorian
609 (list m (calendar-last-day-of-month m y) y)))
610 (goto-char (point-min))
611 (while (re-search-forward s-entry nil t)
612 (backward-char 1)
613 (let ((sexp-start (point))
614 (sexp)
615 (entry)
616 (entry-start)
617 (line-start))
618 (forward-sexp)
619 (setq sexp (buffer-substring sexp-start (point)))
620 (save-excursion
621 (re-search-backward "\^M\\|\n\\|\\`")
622 (setq line-start (point)))
623 (forward-char 1)
624 (if (and (or (char-equal (preceding-char) ?\^M)
625 (char-equal (preceding-char) ?\n))
626 (not (looking-at " \\|\^I")))
627 (progn;; Diary entry consists only of the sexp
628 (backward-char 1)
629 (setq entry ""))
630 (setq entry-start (point))
631 (re-search-forward "\^M\\|\n" nil t)
632 (while (looking-at " \\|\^I")
633 (re-search-forward "\^M\\|\n" nil t))
634 (backward-char 1)
635 (setq entry (buffer-substring entry-start (point)))
636 (while (string-match "[\^M]" entry)
637 (aset entry (match-beginning 0) ?\n )))
638 (calendar-for-loop date from first-date to last-date do
639 (if (diary-sexp-entry sexp entry
640 (calendar-gregorian-from-absolute date))
641 (mark-visible-calendar-date
642 (calendar-gregorian-from-absolute date))))))))
643
644 (defun mark-included-diary-files ()
645 "Mark the diary entries from other diary files with those of diary-file.
646 This function is suitable for use as the mark-diary-entries-hook; it enables
647 you to use shared diary files together with your own. The files included are
648 specified in the diary-file by lines of the form
649 #include \"filename\"
650 This is recursive; that is, #include directives in diary files thus included
651 are obeyed. You can change the \"#include\" to some other string by
652 changing the variable `diary-include-string'."
653 (goto-char (point-min))
654 (while (re-search-forward
655 (concat
656 "\\(\\`\\|\^M\\|\n\\)"
657 (regexp-quote diary-include-string)
658 " \"\\([^\"]*\\)\"")
659 nil t)
660 (let ((diary-file (substitute-in-file-name
661 (buffer-substring (match-beginning 2) (match-end 2))))
662 (mark-diary-entries-hook 'mark-included-diary-files))
663 (if (file-exists-p diary-file)
664 (if (file-readable-p diary-file)
665 (progn
666 (mark-diary-entries)
667 (kill-buffer (get-file-buffer diary-file)))
668 (beep)
669 (message "Can't read included diary file %s" diary-file)
670 (sleep-for 2))
671 (beep)
672 (message "Can't find included diary file %s" diary-file)
673 (sleep-for 2))))
674 (goto-char (point-min)))
675
676 (defun mark-calendar-days-named (dayname)
677 "Mark all dates in the calendar window that are day DAYNAME of the week.
678 0 means all Sundays, 1 means all Mondays, and so on."
679 (save-excursion
680 (set-buffer calendar-buffer)
681 (let ((prev-month displayed-month)
682 (prev-year displayed-year)
683 (succ-month displayed-month)
684 (succ-year displayed-year)
685 (last-day)
686 (day))
687 (increment-calendar-month succ-month succ-year 1)
688 (increment-calendar-month prev-month prev-year -1)
689 (setq day (calendar-absolute-from-gregorian
690 (calendar-nth-named-day 1 dayname prev-month prev-year)))
691 (setq last-day (calendar-absolute-from-gregorian
692 (calendar-nth-named-day -1 dayname succ-month succ-year)))
693 (while (<= day last-day)
694 (mark-visible-calendar-date (calendar-gregorian-from-absolute day))
695 (setq day (+ day 7))))))
696
697 (defun mark-calendar-date-pattern (month day year)
698 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR.
699 A value of 0 in any position is a wild-card."
700 (save-excursion
701 (set-buffer calendar-buffer)
702 (let ((m displayed-month)
703 (y displayed-year))
704 (increment-calendar-month m y -1)
705 (calendar-for-loop i from 0 to 2 do
706 (mark-calendar-month m y month day year)
707 (increment-calendar-month m y 1)))))
708
709 (defun mark-calendar-month (month year p-month p-day p-year)
710 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P_DAY/P-YEAR.
711 A value of 0 in any position of the pattern is a wild-card."
712 (if (or (and (= month p-month)
713 (or (= p-year 0) (= year p-year)))
714 (and (= p-month 0)
715 (or (= p-year 0) (= year p-year))))
716 (if (= p-day 0)
717 (calendar-for-loop
718 i from 1 to (calendar-last-day-of-month month year) do
719 (mark-visible-calendar-date (list month i year)))
720 (mark-visible-calendar-date (list month p-day year)))))
721
722 (defun diary-entry-compare (e1 e2)
723 "Returns t if E1 is earlier than E2."
724 (or (calendar-date-compare e1 e2)
725 (and (calendar-date-equal (car e1) (car e2))
726 (< (diary-entry-time (car (cdr e1)))
727 (diary-entry-time (car (cdr e2)))))))
728
729 (defun diary-entry-time (s)
730 "Time at the beginning of the string S in a military-style integer.
731 For example, returns 1325 for 1:25pm. Returns -9999 if no time is recognized.
732 The recognized forms are XXXX or X:XX or XX:XX (military time), XXam or XXpm,
733 and XX:XXam or XX:XXpm."
734 (cond ((string-match;; Military time
735 "^ *\\([0-9]?[0-9]\\):?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)" s)
736 (+ (* 100 (string-to-int
737 (substring s (match-beginning 1) (match-end 1))))
738 (string-to-int (substring s (match-beginning 2) (match-end 2)))))
739 ((string-match;; Hour only XXam or XXpm
740 "^ *\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s)
741 (+ (* 100 (% (string-to-int
742 (substring s (match-beginning 1) (match-end 1)))
743 12))
744 (if (string-equal "a"
745 (substring s (match-beginning 2) (match-end 2)))
746 0 1200)))
747 ((string-match;; Hour and minute XX:XXam or XX:XXpm
748 "^ *\\([0-9]?[0-9]\\):\\([0-9][0-9]\\)\\([ap]\\)m\\>" s)
749 (+ (* 100 (% (string-to-int
750 (substring s (match-beginning 1) (match-end 1)))
751 12))
752 (string-to-int (substring s (match-beginning 2) (match-end 2)))
753 (if (string-equal "a"
754 (substring s (match-beginning 3) (match-end 3)))
755 0 1200)))
756 (t -9999)));; Unrecognizable
757
758 (defun list-hebrew-diary-entries ()
759 "Add any Hebrew date entries from the diary-file to diary-entries-list.
760 Hebrew date diary entries must be prefaced by a hebrew-diary-entry-symbol
761 \(normally an `H'\). The same diary-date-forms govern the style of the Hebrew
762 calendar entries, except that the Hebrew month names must be spelled in full.
763 The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being
764 Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a
765 common Hebrew year. If a Hebrew date diary entry begins with a
766 diary-nonmarking-symbol the entry will appear in the diary listing, but will
767 not be marked in the calendar. This function is provided for use with the
768 nongregorian-diary-listing-hook."
769 (if (< 0 number)
770 (let ((buffer-read-only nil)
771 (diary-modified (buffer-modified-p))
772 (gdate original-date)
773 (mark (regexp-quote diary-nonmarking-symbol)))
774 (calendar-for-loop i from 1 to number do
775 (let* ((d diary-date-forms)
776 (hdate (calendar-hebrew-from-absolute
777 (calendar-absolute-from-gregorian gdate)))
778 (month (extract-calendar-month hdate))
779 (day (extract-calendar-day hdate))
780 (year (extract-calendar-year hdate)))
781 (while d
782 (let*
783 ((date-form (if (equal (car (car d)) 'backup)
784 (cdr (car d))
785 (car d)))
786 (backup (equal (car (car d)) 'backup))
787 (dayname
788 (concat
789 (calendar-day-name gdate) "\\|"
790 (substring (calendar-day-name gdate) 0 3) ".?"))
791 (calendar-month-name-array
792 calendar-hebrew-month-name-array-leap-year)
793 (monthname
794 (concat
795 "\\*\\|"
796 (calendar-month-name month)))
797 (month (concat "\\*\\|0*" (int-to-string month)))
798 (day (concat "\\*\\|0*" (int-to-string day)))
799 (year
800 (concat
801 "\\*\\|0*" (int-to-string year)
802 (if abbreviated-calendar-year
803 (concat "\\|" (int-to-string (% year 100)))
804 "")))
805 (regexp
806 (concat
807 "\\(\\`\\|\^M\\|\n\\)" mark "?"
808 (regexp-quote hebrew-diary-entry-symbol)
809 "\\("
810 (mapconcat 'eval date-form "\\)\\(")
811 "\\)"))
812 (case-fold-search t))
813 (goto-char (point-min))
814 (while (re-search-forward regexp nil t)
815 (if backup (re-search-backward "\\<" nil t))
816 (if (and (or (char-equal (preceding-char) ?\^M)
817 (char-equal (preceding-char) ?\n))
818 (not (looking-at " \\|\^I")))
819 ;; Diary entry that consists only of date.
820 (backward-char 1)
821 ;; Found a nonempty diary entry--make it visible and
822 ;; add it to the list.
823 (let ((entry-start (point))
824 (date-start))
825 (re-search-backward "\^M\\|\n\\|\\`")
826 (setq date-start (point))
827 (re-search-forward "\^M\\|\n" nil t 2)
828 (while (looking-at " \\|\^I")
829 (re-search-forward "\^M\\|\n" nil t))
830 (backward-char 1)
831 (subst-char-in-region date-start (point) ?\^M ?\n t)
832 (add-to-diary-list
833 gdate (buffer-substring entry-start (point)))))))
834 (setq d (cdr d))))
835 (setq gdate
836 (calendar-gregorian-from-absolute
837 (1+ (calendar-absolute-from-gregorian gdate)))))
838 (set-buffer-modified-p diary-modified))
839 (goto-char (point-min))))
840
841 (defun mark-hebrew-diary-entries ()
842 "Mark days in the calendar window that have Hebrew date diary entries.
843 Each entry in diary-file (or included files) visible in the calendar window
844 is marked. Hebrew date entries are prefaced by a hebrew-diary-entry-symbol
845 \(normally an `H'\). The same diary-date-forms govern the style of the Hebrew
846 calendar entries, except that the Hebrew month names must be spelled in full.
847 The Hebrew months are numbered from 1 to 13 with Nisan being 1, 12 being
848 Adar I and 13 being Adar II; you must use `Adar I' if you want Adar of a
849 common Hebrew year. Hebrew date diary entries that begin with a
850 diary-nonmarking symbol will not be marked in the calendar. This function
851 is provided for use as part of the nongregorian-diary-marking-hook."
852 (let ((d diary-date-forms))
853 (while d
854 (let*
855 ((date-form (if (equal (car (car d)) 'backup)
856 (cdr (car d))
857 (car d)));; ignore 'backup directive
858 (dayname (diary-name-pattern calendar-day-name-array))
859 (monthname
860 (concat
861 (diary-name-pattern calendar-hebrew-month-name-array-leap-year t)
862 "\\|\\*"))
863 (month "[0-9]+\\|\\*")
864 (day "[0-9]+\\|\\*")
865 (year "[0-9]+\\|\\*")
866 (l (length date-form))
867 (d-name-pos (- l (length (memq 'dayname date-form))))
868 (d-name-pos (if (/= l d-name-pos) (+ 2 d-name-pos)))
869 (m-name-pos (- l (length (memq 'monthname date-form))))
870 (m-name-pos (if (/= l m-name-pos) (+ 2 m-name-pos)))
871 (d-pos (- l (length (memq 'day date-form))))
872 (d-pos (if (/= l d-pos) (+ 2 d-pos)))
873 (m-pos (- l (length (memq 'month date-form))))
874 (m-pos (if (/= l m-pos) (+ 2 m-pos)))
875 (y-pos (- l (length (memq 'year date-form))))
876 (y-pos (if (/= l y-pos) (+ 2 y-pos)))
877 (regexp
878 (concat
879 "\\(\\`\\|\^M\\|\n\\)"
880 (regexp-quote hebrew-diary-entry-symbol)
881 "\\("
882 (mapconcat 'eval date-form "\\)\\(")
883 "\\)"))
884 (case-fold-search t))
885 (goto-char (point-min))
886 (while (re-search-forward regexp nil t)
887 (let* ((dd-name
888 (if d-name-pos
889 (buffer-substring
890 (match-beginning d-name-pos)
891 (match-end d-name-pos))))
892 (mm-name
893 (if m-name-pos
894 (buffer-substring
895 (match-beginning m-name-pos)
896 (match-end m-name-pos))))
897 (mm (string-to-int
898 (if m-pos
899 (buffer-substring
900 (match-beginning m-pos)
901 (match-end m-pos))
902 "")))
903 (dd (string-to-int
904 (if d-pos
905 (buffer-substring
906 (match-beginning d-pos)
907 (match-end d-pos))
908 "")))
909 (y-str (if y-pos
910 (buffer-substring
911 (match-beginning y-pos)
912 (match-end y-pos))))
913 (yy (if (not y-str)
914 0
915 (if (and (= (length y-str) 2)
916 abbreviated-calendar-year)
917 (let* ((current-y
918 (extract-calendar-year
919 (calendar-hebrew-from-absolute
920 (calendar-absolute-from-gregorian
921 (calendar-current-date)))))
922 (y (+ (string-to-int y-str)
923 (* 100 (/ current-y 100)))))
924 (if (> (- y current-y) 50)
925 (- y 100)
926 (if (> (- current-y y) 50)
927 (+ y 100)
928 y)))
929 (string-to-int y-str)))))
930 (if dd-name
931 (mark-calendar-days-named
932 (cdr (assoc (capitalize (substring dd-name 0 3))
933 (calendar-make-alist
934 calendar-day-name-array
935 0
936 '(lambda (x) (substring x 0 3))))))
937 (if mm-name
938 (if (string-equal mm-name "*")
939 (setq mm 0)
940 (setq
941 mm
942 (cdr
943 (assoc
944 (capitalize mm-name)
945 (calendar-make-alist
946 calendar-hebrew-month-name-array-leap-year))))))
947 (mark-hebrew-calendar-date-pattern mm dd yy)))))
948 (setq d (cdr d)))))
949
950 (defun mark-hebrew-calendar-date-pattern (month day year)
951 "Mark all dates in the calendar window that conform to the Hebrew date
952 MONTH/DAY/YEAR. A value of 0 in any position is a wild-card."
953 (save-excursion
954 (set-buffer calendar-buffer)
955 (if (and (/= 0 month) (/= 0 day))
956 (if (/= 0 year)
957 ;; Fully specified Hebrew date.
958 (let ((date (calendar-gregorian-from-absolute
959 (calendar-absolute-from-hebrew
960 (list month day year)))))
961 (if (calendar-date-is-visible-p date)
962 (mark-visible-calendar-date date)))
963 ;; Month and day in any year--this taken from the holiday stuff.
964 (if (memq displayed-month;; This test is only to speed things up a
965 (list ;; bit; it works fine without the test too.
966 (if (< 11 month) (- month 11) (+ month 1))
967 (if (< 10 month) (- month 10) (+ month 2))
968 (if (< 9 month) (- month 9) (+ month 3))
969 (if (< 8 month) (- month 8) (+ month 4))
970 (if (< 7 month) (- month 7) (+ month 5))))
971 (let ((m1 displayed-month)
972 (y1 displayed-year)
973 (m2 displayed-month)
974 (y2 displayed-year)
975 (year))
976 (increment-calendar-month m1 y1 -1)
977 (increment-calendar-month m2 y2 1)
978 (let* ((start-date (calendar-absolute-from-gregorian
979 (list m1 1 y1)))
980 (end-date (calendar-absolute-from-gregorian
981 (list m2
982 (calendar-last-day-of-month m2 y2)
983 y2)))
984 (hebrew-start
985 (calendar-hebrew-from-absolute start-date))
986 (hebrew-end (calendar-hebrew-from-absolute end-date))
987 (hebrew-y1 (extract-calendar-year hebrew-start))
988 (hebrew-y2 (extract-calendar-year hebrew-end)))
989 (setq year (if (< 6 month) hebrew-y2 hebrew-y1))
990 (let ((date (calendar-gregorian-from-absolute
991 (calendar-absolute-from-hebrew
992 (list month day year)))))
993 (if (calendar-date-is-visible-p date)
994 (mark-visible-calendar-date date)))))))
995 ;; Not one of the simple cases--check all visible dates for match.
996 ;; Actually, the following code takes care of ALL of the cases, but
997 ;; it's much too slow to be used for the simple (common) cases.
998 (let ((m displayed-month)
999 (y displayed-year)
1000 (first-date)
1001 (last-date))
1002 (increment-calendar-month m y -1)
1003 (setq first-date
1004 (calendar-absolute-from-gregorian
1005 (list m 1 y)))
1006 (increment-calendar-month m y 2)
1007 (setq last-date
1008 (calendar-absolute-from-gregorian
1009 (list m (calendar-last-day-of-month m y) y)))
1010 (calendar-for-loop date from first-date to last-date do
1011 (let* ((h-date (calendar-hebrew-from-absolute date))
1012 (h-month (extract-calendar-month h-date))
1013 (h-day (extract-calendar-day h-date))
1014 (h-year (extract-calendar-year h-date)))
1015 (and (or (zerop month)
1016 (= month h-month))
1017 (or (zerop day)
1018 (= day h-day))
1019 (or (zerop year)
1020 (= year h-year))
1021 (mark-visible-calendar-date
1022 (calendar-gregorian-from-absolute date)))))))))
1023
1024 (defun list-sexp-diary-entries (date)
1025 "Add any sexp entries for DATE from the diary-file to diary-entries-list
1026 and make them visible in the diary file. Returns t if any entries were found.
1027
1028 Sexp diary entries must be prefaced by a sexp-diary-entry-symbol (normally
1029 `%%'). The form of a sexp diary entry is
1030
1031 %%(SEXP) ENTRY
1032
1033 Both ENTRY and DATE are globally available when the SEXP is evaluated. If the
1034 SEXP yields the value nil, the diary entry does not apply. If it yields a
1035 non-nil value, ENTRY will be taken to apply to DATE; if the non-nil value is a
1036 string, that string will be the diary entry in the fancy diary display.
1037
1038 For example, the following diary entry will apply to the 21st of the month
1039 if it is a weekday and the Friday before if the 21st is on a weekend:
1040
1041 &%%(let ((dayname (calendar-day-of-week date))
1042 (day (extract-calendar-day date)))
1043 (or
1044 (and (= day 21) (memq dayname '(1 2 3 4 5)))
1045 (and (memq day '(19 20)) (= dayname 5)))
1046 ) UIUC pay checks deposited
1047
1048 A number of built-in functions are available for this type of diary entry:
1049
1050 %%(diary-float MONTH DAYNAME N) text
1051 Entry will appear on the Nth DAYNAME of MONTH.
1052 (DAYNAME=0 means Sunday, 1 means Monday, and so on;
1053 if N is negative it counts backward from the end of
1054 the month. MONTH can be a list of months, a single
1055 month, or t to specify all months.
1056
1057 %%(diary-block M1 D1 Y1 M2 D2 Y2) text
1058 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2,
1059 inclusive. (If `european-calendar-style' is t, the
1060 order of the parameters should be changed to D1, M1, Y1,
1061 D2, M2, Y2.)
1062
1063 %%(diary-anniversary MONTH DAY YEAR) text
1064 Entry will appear on anniversary dates of MONTH DAY, YEAR.
1065 (If `european-calendar-style' is t, the order of the
1066 parameters should be changed to DAY, MONTH, YEAR.) Text
1067 can contain %d or %d%s; %d will be replaced by the number
1068 of years since the MONTH DAY, YEAR and %s will be replaced
1069 by the ordinal ending of that number (that is, `st', `nd',
1070 `rd' or `th', as appropriate. The anniversary of February
1071 29 is considered to be March 1 in a non-leap year.
1072
1073 %%(diary-cyclic N MONTH DAY YEAR) text
1074 Entry will appear every N days, starting MONTH DAY, YEAR.
1075 (If `european-calendar-style' is t, the order of the
1076 parameters should be changed to N, DAY, MONTH, YEAR.) Text
1077 can contain %d or %d%s; %d will be replaced by the number
1078 of repetitions since the MONTH DAY, YEAR and %s will
1079 be replaced by the ordinal ending of that number (that is,
1080 `st', `nd', `rd' or `th', as appropriate.
1081
1082 %%(diary-day-of-year)
1083 Diary entries giving the day of the year and the number of
1084 days remaining in the year will be made every day. Note
1085 that since there is no text, it makes sense only if the
1086 fancy diary display is used.
1087
1088 %%(diary-iso-date)
1089 Diary entries giving the corresponding ISO commercial date
1090 will be made every day. Note that since there is no text,
1091 it makes sense only if the fancy diary display is used.
1092
1093 %%(diary-french-date)
1094 Diary entries giving the corresponding French Revolutionary
1095 date will be made every day. Note that since there is no
1096 text, it makes sense only if the fancy diary display is used.
1097
1098 %%(diary-islamic-date)
1099 Diary entries giving the corresponding Islamic date will be
1100 made every day. Note that since there is no text, it
1101 makes sense only if the fancy diary display is used.
1102
1103 %%(diary-hebrew-date)
1104 Diary entries giving the corresponding Hebrew date will be
1105 made every day. Note that since there is no text, it
1106 makes sense only if the fancy diary display is used.
1107
1108 %%(diary-yahrzeit MONTH DAY YEAR) text
1109 Text is assumed to be the name of the person; the date is
1110 the date of death on the *civil* calendar. The diary entry
1111 will appear on the proper Hebrew-date anniversary and on the
1112 day before. (If `european-calendar-style' is t, the order
1113 of the parameters should be changed to DAY, MONTH, YEAR.)
1114
1115 %%(diary-rosh-hodesh)
1116 Diary entries will be made on the dates of Rosh Hodesh on
1117 the Hebrew calendar. Note that since there is no text, it
1118 makes sense only if the fancy diary display is used.
1119
1120 %%(diary-parasha)
1121 Diary entries giving the weekly parasha will be made on
1122 every Saturday. Note that since there is no text, it
1123 makes sense only if the fancy diary display is used.
1124
1125 %%(diary-omer)
1126 Diary entries giving the omer count will be made every day
1127 from Passover to Shavuoth. Note that since there is no text,
1128 it makes sense only if the fancy diary display is used.
1129
1130 Marking these entries is *extremely* time consuming, so these entries are
1131 best if they are nonmarking."
1132 (let* ((mark (regexp-quote diary-nonmarking-symbol))
1133 (sexp-mark (regexp-quote sexp-diary-entry-symbol))
1134 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)" mark "?" sexp-mark "("))
1135 (entry-found))
1136 (goto-char (point-min))
1137 (while (re-search-forward s-entry nil t)
1138 (backward-char 1)
1139 (let ((sexp-start (point))
1140 (sexp)
1141 (entry)
1142 (entry-start)
1143 (line-start))
1144 (forward-sexp)
1145 (setq sexp (buffer-substring sexp-start (point)))
1146 (save-excursion
1147 (re-search-backward "\^M\\|\n\\|\\`")
1148 (setq line-start (point)))
1149 (forward-char 1)
1150 (if (and (or (char-equal (preceding-char) ?\^M)
1151 (char-equal (preceding-char) ?\n))
1152 (not (looking-at " \\|\^I")))
1153 (progn;; Diary entry consists only of the sexp
1154 (backward-char 1)
1155 (setq entry ""))
1156 (setq entry-start (point))
1157 (re-search-forward "\^M\\|\n" nil t)
1158 (while (looking-at " \\|\^I")
1159 (re-search-forward "\^M\\|\n" nil t))
1160 (backward-char 1)
1161 (setq entry (buffer-substring entry-start (point)))
1162 (while (string-match "[\^M]" entry)
1163 (aset entry (match-beginning 0) ?\n )))
1164 (let ((diary-entry (diary-sexp-entry sexp entry date)))
1165 (if diary-entry
1166 (subst-char-in-region line-start (point) ?\^M ?\n t))
1167 (add-to-diary-list date diary-entry)
1168 (setq entry-found (or entry-found diary-entry)))))
1169 entry-found))
1170
1171 (defun diary-sexp-entry (sexp entry date)
1172 "Process a SEXP diary ENTRY for DATE."
1173 (let ((result (condition-case nil
1174 (eval (car (read-from-string sexp)))
1175 (error
1176 (beep)
1177 (message "Bad sexp at line %d in %s: %s"
1178 (save-excursion
1179 (save-restriction
1180 (narrow-to-region 1 (point))
1181 (goto-char (point-min))
1182 (let ((lines 1))
1183 (while (re-search-forward "\n\\|\^M" nil t)
1184 (setq lines (1+ lines)))
1185 lines)))
1186 diary-file sexp)
1187 (sleep-for 2)))))
1188 (if (stringp result)
1189 result
1190 (if result
1191 entry
1192 nil))))
1193
1194 (defun diary-block (m1 d1 y1 m2 d2 y2)
1195 "Block diary entry--entry applies if date is between two dates. Order of
1196 the parameters is M1, D1, Y1, M2, D2, Y2 `european-calendar-style' is nil, and
1197 D1, M1, Y1, D2, M2, Y2 if `european-calendar-style' is t."
1198 (let ((date1 (calendar-absolute-from-gregorian
1199 (if european-calendar-style
1200 (list d1 m1 y1)
1201 (list m1 d1 y1))))
1202 (date2 (calendar-absolute-from-gregorian
1203 (if european-calendar-style
1204 (list d2 m2 y2)
1205 (list m2 d2 y2))))
1206 (d (calendar-absolute-from-gregorian date)))
1207 (if (and (<= date1 d) (<= d date2))
1208 entry)))
1209
1210 (defun diary-float (month dayname n)
1211 "Floating diary entry--entry applies if date is the nth dayname of month.
1212 Parameters are MONTH, DAYNAME, N. MONTH can be a list of months, the constant
1213 t, or an integer. The constant t means all months. If N is negative, count
1214 backward from the end of the month."
1215 (let ((m (extract-calendar-month date))
1216 (y (extract-calendar-year date)))
1217 (if (and
1218 (or (and (listp month) (memq m month))
1219 (equal m month)
1220 (eq month t))
1221 (calendar-date-equal date (calendar-nth-named-day n dayname m y)))
1222 entry)))
1223
1224 (defun diary-anniversary (month day year)
1225 "Anniversary diary entry--entry applies if date is the anniversary of
1226 MONTH, DAY, YEAR if `european-calendar-style' is nil, and DAY, MONTH, YEAR
1227 if `european-calendar-style' is t. Diary entry can contain `%d' or `%d%s'; the
1228 %d will be replaced by the number of years since the MONTH DAY, YEAR and the
1229 %s will be replaced by the ordinal ending of that number (that is, `st', `nd',
1230 `rd' or `th', as appropriate. The anniversary of February 29 is considered
1231 to be March 1 in non-leap years."
1232 (let* ((d (if european-calendar-style
1233 month
1234 day))
1235 (m (if european-calendar-style
1236 day
1237 month))
1238 (y (extract-calendar-year date))
1239 (diff (- y year)))
1240 (if (and (= m 2) (= d 29) (not (calendar-leap-year-p y)))
1241 (setq m 3
1242 d 1))
1243 (if (and (> diff 0) (calendar-date-equal (list m d y) date))
1244 (format entry diff (diary-ordinal-suffix diff)))))
1245
1246 (defun diary-cyclic (n month day year)
1247 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR.
1248 If `european-calendar-style' is t, parameters are N, DAY, MONTH, YEAR.
1249 ENTRY can contain `%d' or `%d%s'; the %d will be replaced by the number of
1250 years since the MONTH DAY, YEAR and the %s will be replaced by the ordinal
1251 ending of that number (that is, `st', `nd', `rd' or `th', as appropriate."
1252 (let* ((d (if european-calendar-style
1253 month
1254 day))
1255 (m (if european-calendar-style
1256 day
1257 month))
1258 (diff (- (calendar-absolute-from-gregorian date)
1259 (calendar-absolute-from-gregorian
1260 (list m d year))))
1261 (cycle (/ diff n)))
1262 (if (and (>= diff 0) (zerop (% diff n)))
1263 (format entry cycle (diary-ordinal-suffix cycle)))))
1264
1265 (defun diary-ordinal-suffix (n)
1266 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)"
1267 (if (or (memq (% n 100) '(11 12 13))
1268 (< 3 (% n 10)))
1269 "th"
1270 (aref ["th" "st" "nd" "rd"] (% n 10))))
1271
1272 (defun diary-day-of-year ()
1273 "Day of year and number of days remaining in the year of date diary entry."
1274 (let* ((year (extract-calendar-year date))
1275 (day (calendar-day-number date))
1276 (days-remaining (- (calendar-day-number (list 12 31 year)) day)))
1277 (format "Day %d of %d; %d day%s remaining in the year"
1278 day year days-remaining (if (= days-remaining 1) "" "s"))))
1279
1280 (defun diary-iso-date ()
1281 "ISO calendar equivalent of date diary entry."
1282 (let ((day (% (calendar-absolute-from-gregorian date) 7))
1283 (iso-date (calendar-iso-from-absolute
1284 (calendar-absolute-from-gregorian date))))
1285 (format "ISO date: Day %s of week %d of %d."
1286 (if (zerop day) 7 day)
1287 (extract-calendar-month iso-date)
1288 (extract-calendar-year iso-date))))
1289
1290 (defun diary-islamic-date ()
1291 "Islamic calendar equivalent of date diary entry."
1292 (let* ((calendar-date-display-form
1293 (if european-calendar-style
1294 '(day " " monthname " " year)
1295 '(monthname " " day ", " year)))
1296 (i-date (calendar-islamic-from-absolute
1297 (calendar-absolute-from-gregorian date)))
1298 (calendar-month-name-array calendar-islamic-month-name-array))
1299 (if (>= (extract-calendar-year i-date) 1)
1300 (format "Islamic date: %s" (calendar-date-string i-date)))))
1301
1302 (defun diary-hebrew-date ()
1303 "Hebrew calendar equivalent of date diary entry."
1304 (let* ((calendar-date-display-form
1305 (if european-calendar-style
1306 '(day " " monthname " " year)
1307 '(monthname " " day ", " year)))
1308 (h-date (calendar-hebrew-from-absolute
1309 (calendar-absolute-from-gregorian date)))
1310 (calendar-month-name-array
1311 (if (hebrew-calendar-leap-year-p
1312 (extract-calendar-year h-date))
1313 calendar-hebrew-month-name-array-leap-year
1314 calendar-hebrew-month-name-array-common-year)))
1315 (format "Hebrew date: %s" (calendar-date-string h-date))))
1316
1317 (defun diary-french-date ()
1318 "French calendar equivalent of date diary entry."
1319 (let* ((french-date (calendar-french-from-absolute
1320 (calendar-absolute-from-gregorian date)))
1321 (y (extract-calendar-year french-date))
1322 (m (extract-calendar-month french-date))
1323 (d (extract-calendar-day french-date)))
1324 (if (> y 0)
1325 (if (= m 13)
1326 (format "Jour %s de l'Annee %d de la Revolution"
1327 (aref french-calendar-special-days-array (1- d))
1328 y)
1329 (format "Decade %s, %s de %s de l'Annee %d de la Revolution"
1330 (make-string (1+ (/ (1- d) 10)) ?I)
1331 (aref french-calendar-day-name-array (% (1- d) 10))
1332 (aref french-calendar-month-name-array (1- m))
1333 y)))))
1334
1335 (defun diary-omer ()
1336 "Omer count diary entry--entry applies if date is within 50 days after
1337 Passover."
1338 (let* ((passover
1339 (calendar-absolute-from-hebrew
1340 (list 1 15 (+ (extract-calendar-year date) 3760))))
1341 (omer (- (calendar-absolute-from-gregorian date) passover))
1342 (week (/ omer 7))
1343 (day (% omer 7)))
1344 (if (and (> omer 0) (< omer 50))
1345 (format "Day %d%s of the omer (until sunset)"
1346 omer
1347 (if (zerop week)
1348 ""
1349 (format ", that is, %d week%s%s"
1350 week
1351 (if (= week 1) "" "s")
1352 (if (zerop day)
1353 ""
1354 (format " and %d day%s"
1355 day (if (= day 1) "" "s")))))))))
1356
1357 (defun diary-yahrzeit (death-month death-day death-year)
1358 "Yahrzeit diary entry--entry applies if date is yahrzeit or the day before.
1359 Parameters are DEATH-MONTH, DEATH-DAY, DEATH-YEAR; the diary entry is assumed
1360 to be the name of the person. Date of death is on the *civil* calendar;
1361 although the date of death is specified by the civil calendar, the proper
1362 Hebrew calendar yahrzeit is determined. If european-calendar-style is t, the
1363 order of the parameters is changed to DEATH-DAY, DEATH-MONTH, DEATH-YEAR."
1364 (let* ((h-date (calendar-hebrew-from-absolute
1365 (calendar-absolute-from-gregorian
1366 (if european-calendar-style
1367 (list death-day death-month death-year)
1368 (list death-month death-day death-year)))))
1369 (h-month (extract-calendar-month h-date))
1370 (h-day (extract-calendar-day h-date))
1371 (h-year (extract-calendar-year h-date))
1372 (d (calendar-absolute-from-gregorian date))
1373 (yr (extract-calendar-year (calendar-hebrew-from-absolute d)))
1374 (diff (- yr h-year))
1375 (y (hebrew-calendar-yahrzeit h-date yr)))
1376 (if (and (> diff 0) (or (= y d) (= y (1+ d))))
1377 (format "Yahrzeit of %s%s: %d%s anniversary"
1378 entry
1379 (if (= y d) "" " (evening)")
1380 diff
1381 (cond ((= (% diff 10) 1) "st")
1382 ((= (% diff 10) 2) "nd")
1383 ((= (% diff 10) 3) "rd")
1384 (t "th"))))))
1385
1386 (defun diary-rosh-hodesh ()
1387 "Rosh Hodesh diary entry--entry applies if date is Rosh Hodesh, the day
1388 before, or the Saturday before."
1389 (let* ((d (calendar-absolute-from-gregorian date))
1390 (h-date (calendar-hebrew-from-absolute d))
1391 (h-month (extract-calendar-month h-date))
1392 (h-day (extract-calendar-day h-date))
1393 (h-year (extract-calendar-year h-date))
1394 (leap-year (hebrew-calendar-leap-year-p h-year))
1395 (last-day (hebrew-calendar-last-day-of-month h-month h-year))
1396 (h-month-names
1397 (if leap-year
1398 calendar-hebrew-month-name-array-leap-year
1399 calendar-hebrew-month-name-array-common-year))
1400 (this-month (aref h-month-names (1- h-month)))
1401 (h-yesterday (extract-calendar-day
1402 (calendar-hebrew-from-absolute (1- d)))))
1403 (if (or (= h-day 30) (and (= h-day 1) (/= h-month 7)))
1404 (format
1405 "Rosh Hodesh %s"
1406 (if (= h-day 30)
1407 (format
1408 "%s (first day)"
1409 ;; next month must be in the same year since this
1410 ;; month can't be the last month of the year since
1411 ;; it has 30 days
1412 (aref h-month-names h-month))
1413 (if (= h-yesterday 30)
1414 (format "%s (second day)" this-month)
1415 this-month)))
1416 (if (= (mod d 7) 6);; Saturday--check for Shabbat Mevarhim
1417 (cond ((and (> h-day 22) (/= h-month 6) (= 29 last-day))
1418 (format "Mevarhim Rosh Hodesh %s (%s)"
1419 (aref h-month-names
1420 (if (= h-month
1421 (hebrew-calendar-last-month-of-year
1422 h-year))
1423 0 h-month))
1424 (aref calendar-day-name-array (- 29 h-day))))
1425 ((and (< h-day 30) (> h-day 22) (= 30 last-day))
1426 (format "Mevarhim Rosh Hodesh %s (%s-%s)"
1427 (aref h-month-names h-month)
1428 (if (= h-day 29)
1429 "tomorrow"
1430 (aref calendar-day-name-array (- 29 h-day)))
1431 (aref calendar-day-name-array
1432 (mod (- 30 h-day) 7)))))
1433 (if (and (= h-day 29) (/= h-month 6))
1434 (format "Erev Rosh Hodesh %s"
1435 (aref h-month-names
1436 (if (= h-month
1437 (hebrew-calendar-last-month-of-year
1438 h-year))
1439 0 h-month))))))))
1440
1441 (defun diary-parasha ()
1442 "Parasha diary entry--entry applies if date is a Saturday."
1443 (let ((d (calendar-absolute-from-gregorian date)))
1444 (if (= (% d 7) 6);; Saturday
1445 (let*
1446 ((h-year (extract-calendar-year
1447 (calendar-hebrew-from-absolute d)))
1448 (rosh-hashannah
1449 (calendar-absolute-from-hebrew (list 7 1 h-year)))
1450 (passover
1451 (calendar-absolute-from-hebrew (list 1 15 h-year)))
1452 (rosh-hashannah-day
1453 (aref calendar-day-name-array (% rosh-hashannah 7)))
1454 (passover-day
1455 (aref calendar-day-name-array (% passover 7)))
1456 (long-h (hebrew-calendar-long-heshvan-p h-year))
1457 (short-k (hebrew-calendar-short-kislev-p h-year))
1458 (type (cond ((and long-h (not short-k)) "complete")
1459 ((and (not long-h) short-k) "incomplete")
1460 (t "regular")))
1461 (year-format
1462 (symbol-value
1463 (intern (format "hebrew-calendar-year-%s-%s-%s";; keviah
1464 rosh-hashannah-day type passover-day))))
1465 (first-saturday;; of Hebrew year
1466 (calendar-dayname-on-or-before 6 (+ 6 rosh-hashannah)))
1467 (saturday;; which Saturday of the Hebrew year
1468 (/ (- d first-saturday) 7))
1469 (parasha (aref year-format saturday)))
1470 (if parasha
1471 (format
1472 "Parashat %s"
1473 (if (listp parasha);; Israel differs from diaspora
1474 (if (car parasha)
1475 (format "%s (diaspora), %s (Israel)"
1476 (hebrew-calendar-parasha-name (car parasha))
1477 (hebrew-calendar-parasha-name (cdr parasha)))
1478 (format "%s (Israel)"
1479 (hebrew-calendar-parasha-name (cdr parasha))))
1480 (hebrew-calendar-parasha-name parasha))))))))
1481
1482 (defun add-to-diary-list (date string)
1483 "Add the entry (DATE STRING) to the diary-entries-list.
1484 Do nothing if DATE or STRING is nil."
1485 (and date string
1486 (setq diary-entries-list
1487 (append diary-entries-list (list (list date string))))))
1488
1489 (defconst hebrew-calendar-parashiot-names
1490 ["Bereshith" "Noah" "Lech L'cha" "Vayera" "Hayei Sarah" "Toledoth"
1491 "Vayetze" "Vayishlah" "Vayeshev" "Mikketz" "Vayiggash" "Vayhi"
1492 "Shemoth" "Vaera" "Bo" "Beshallah" "Yithro" "Mishpatim"
1493 "Terumah" "Tetzavveh" "Ki Tissa" "Vayakhel" "Pekudei" "Vayikra"
1494 "Tzav" "Shemini" "Tazria" "Metzora" "Aharei Moth" "Kedoshim"
1495 "Emor" "Behar" "Behukkotai" "Bemidbar" "Naso" "Behaalot'cha"
1496 "Shelah L'cha" "Korah" "Hukkath" "Balak" "Pinhas" "Mattoth"
1497 "Masei" "Devarim" "Vaethanan" "Ekev" "Reeh" "Shofetim"
1498 "Ki Tetze" "Ki Tavo" "Nitzavim" "Vayelech" "Haazinu"]
1499 "The names of the parashiot in the Torah.")
1500
1501 ;; The seven ordinary year types (keviot)
1502
1503 (defconst hebrew-calendar-year-Saturday-incomplete-Sunday
1504 [nil 52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1505 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 34 35 36 37 38 39 40 [41 42]
1506 43 44 45 46 47 48 49 50]
1507 "The structure of the parashiot in a Hebrew year that starts on Saturday,
1508 is `incomplete' (Heshvan and Kislev each have 29 days), and has Passover
1509 start on Sunday.")
1510
1511 (defconst hebrew-calendar-year-Saturday-complete-Tuesday
1512 [nil 52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1513 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 34 35 36 37 38 39 40 [41 42]
1514 43 44 45 46 47 48 49 [50 51]]
1515 "The structure of the parashiot in a Hebrew year that starts on Saturday,
1516 is `complete' (Heshvan and Kislev each have 30 days), and has Passover
1517 start on Tuesday.")
1518
1519 (defconst hebrew-calendar-year-Monday-incomplete-Tuesday
1520 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1521 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 34 35 36 37 38 39 40 [41 42]
1522 43 44 45 46 47 48 49 [50 51]]
1523 "The structure of the parashiot in a Hebrew year that starts on Monday,
1524 is `incomplete' (Heshvan and Kislev each have 29 days), and has Passover
1525 start on Tuesday.")
1526
1527 (defconst hebrew-calendar-year-Monday-complete-Thursday
1528 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1529 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 (nil . 34) (34.35) (35.36)
1530 (36.37) (37.38) ([38 39].39) 40 [41 42] 43 44 45 46 47 48 49 [50 51]]
1531 "The structure of the parashiot in a Hebrew year that starts on Monday,
1532 is `complete' (Heshvan and Kislev each have 30 days), and has Passover
1533 start on Thursday.")
1534
1535 (defconst hebrew-calendar-year-Tuesday-regular-Thursday
1536 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1537 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 (nil . 34) (34.35) (35.36)
1538 (36.37) (37.38) ([38 39].39) 40 [41 42] 43 44 45 46 47 48 49 [50 51]]
1539 "The structure of the parashiot in a Hebrew year that starts on Tuesday,
1540 is `regular' (Heshvan has 29 days and Kislev has 30 days), and has Passover
1541 start on Thursday.")
1542
1543 (defconst hebrew-calendar-year-Thursday-regular-Saturday
1544 [52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21 22]
1545 23 24 nil (nil . 25) (25.[26 27]) ([26 27].[28 29]) ([28 29].30) (30.31)
1546 ([31 32].32) 33 34 35 36 37 38 39 40 [41 42]
1547 43 44 45 46 47 48 49 50]
1548 "The structure of the parashiot in a Hebrew year that starts on Thursday,
1549 is `regular' (Heshvan has 29 days and Kislev has 30 days), and has Passover
1550 start on Saturday.")
1551
1552 (defconst hebrew-calendar-year-Thursday-complete-Sunday
1553 [52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1554 23 24 nil 25 [26 27] [28 29] 30 [31 32] 33 34 35 36 37 38 39 40 [41 42]
1555 43 44 45 46 47 48 49 50]
1556 "The structure of the parashiot in a Hebrew year that starts on Thursday,
1557 is `complete' (Heshvan and Kislev each have 30 days), and has Passover
1558 start on Sunday.")
1559
1560 ;; The seven leap year types (keviot)
1561
1562 (defconst hebrew-calendar-year-Saturday-incomplete-Tuesday
1563 [nil 52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1564 23 24 25 26 27 nil 28 29 30 31 32 33 34 35 36 37 38 39 40 [41 42]
1565 43 44 45 46 47 48 49 [50 51]]
1566 "The structure of the parashiot in a Hebrew year that starts on Saturday,
1567 is `incomplete' (Heshvan and Kislev each have 29 days), and has Passover
1568 start on Tuesday.")
1569
1570 (defconst hebrew-calendar-year-Saturday-complete-Thursday
1571 [nil 52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1572 23 24 25 26 27 nil 28 29 30 31 32 33 (nil . 34) (34.35) (35.36) (36.37)
1573 (37.38) ([38 39].39) 40 [41 42] 43 44 45 46 47 48 49 [50 51]]
1574 "The structure of the parashiot in a Hebrew year that starts on Saturday,
1575 is `complete' (Heshvan and Kislev each have 30 days), and has Passover
1576 start on Thursday.")
1577
1578 (defconst hebrew-calendar-year-Monday-incomplete-Thursday
1579 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1580 23 24 25 26 27 nil 28 29 30 31 32 33 (nil . 34) (34.35) (35.36) (36.37)
1581 (37.38) ([38 39].39) 40 [41 42] 43 44 45 46 47 48 49 [50 51]]
1582 "The structure of the parashiot in a Hebrew year that starts on Monday,
1583 is `incomplete' (Heshvan and Kislev each have 29 days), and has Passover
1584 start on Thursday.")
1585
1586 (defconst hebrew-calendar-year-Monday-complete-Saturday
1587 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1588 23 24 25 26 27 nil (nil . 28) (28.29) (29.30) (30.31) (31.32) (32.33)
1589 (33.34) (34.35) (35.36) (36.37) (37.38) (38.39) (39.40) (40.41) ([41 42].42)
1590 43 44 45 46 47 48 49 50]
1591 "The structure of the parashiot in a Hebrew year that starts on Monday,
1592 is `complete' (Heshvan and Kislev each have 30 days), and has Passover
1593 start on Saturday.")
1594
1595 (defconst hebrew-calendar-year-Tuesday-regular-Saturday
1596 [51 52 nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1597 23 24 25 26 27 nil (nil . 28) (28.29) (29.30) (30.31) (31.32) (32.33)
1598 (33.34) (34.35) (35.36) (36.37) (37.38) (38.39) (39.40) (40.41) ([41 42].42)
1599 43 44 45 46 47 48 49 50]
1600 "The structure of the parashiot in a Hebrew year that starts on Tuesday,
1601 is `regular' (Heshvan has 29 days and Kislev has 30 days), and has Passover
1602 start on Saturday.")
1603
1604 (defconst hebrew-calendar-year-Thursday-incomplete-Sunday
1605 [52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1606 23 24 25 26 27 28 nil 29 30 31 32 33 34 35 36 37 38 39 40 41 42
1607 43 44 45 46 47 48 49 50]
1608 "The structure of the parashiot in a Hebrew year that starts on Thursday,
1609 is `incomplete' (Heshvan and Kislev both have 29 days), and has Passover
1610 start on Sunday.")
1611
1612 (defconst hebrew-calendar-year-Thursday-complete-Tuesday
1613 [52 nil nil 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
1614 23 24 25 26 27 28 nil 29 30 31 32 33 34 35 36 37 38 39 40 41 42
1615 43 44 45 46 47 48 49 [50 51]]
1616 "The structure of the parashiot in a Hebrew year that starts on Thursday,
1617 is `complete' (Heshvan and Kislev both have 30 days), and has Passover
1618 start on Tuesday.")
1619
1620 (defun hebrew-calendar-parasha-name (p)
1621 "Name(s) corresponding to parasha P."
1622 (if (arrayp p);; combined parasha
1623 (format "%s/%s"
1624 (aref hebrew-calendar-parashiot-names (aref p 0))
1625 (aref hebrew-calendar-parashiot-names (aref p 1)))
1626 (aref hebrew-calendar-parashiot-names p)))
1627
1628 (defun list-islamic-diary-entries ()
1629 "Add any Islamic date entries from the diary-file to diary-entries-list.
1630 Islamic date diary entries must be prefaced by an islamic-diary-entry-symbol
1631 \(normally an `I'\). The same diary-date-forms govern the style of the Islamic
1632 calendar entries, except that the Islamic month names must be spelled in full.
1633 The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being
1634 Dhu al-Hijjah. If an Islamic date diary entry begins with a
1635 diary-nonmarking-symbol the entry will appear in the diary listing, but will
1636 not be marked in the calendar. This function is provided for use with the
1637 nongregorian-diary-listing-hook."
1638 (if (< 0 number)
1639 (let ((buffer-read-only nil)
1640 (diary-modified (buffer-modified-p))
1641 (gdate original-date)
1642 (mark (regexp-quote diary-nonmarking-symbol)))
1643 (calendar-for-loop i from 1 to number do
1644 (let* ((d diary-date-forms)
1645 (idate (calendar-islamic-from-absolute
1646 (calendar-absolute-from-gregorian gdate)))
1647 (month (extract-calendar-month idate))
1648 (day (extract-calendar-day idate))
1649 (year (extract-calendar-year idate)))
1650 (while d
1651 (let*
1652 ((date-form (if (equal (car (car d)) 'backup)
1653 (cdr (car d))
1654 (car d)))
1655 (backup (equal (car (car d)) 'backup))
1656 (dayname
1657 (concat
1658 (calendar-day-name gdate) "\\|"
1659 (substring (calendar-day-name gdate) 0 3) ".?"))
1660 (calendar-month-name-array
1661 calendar-islamic-month-name-array)
1662 (monthname
1663 (concat
1664 "\\*\\|"
1665 (calendar-month-name month)))
1666 (month (concat "\\*\\|0*" (int-to-string month)))
1667 (day (concat "\\*\\|0*" (int-to-string day)))
1668 (year
1669 (concat
1670 "\\*\\|0*" (int-to-string year)
1671 (if abbreviated-calendar-year
1672 (concat "\\|" (int-to-string (% year 100)))
1673 "")))
1674 (regexp
1675 (concat
1676 "\\(\\`\\|\^M\\|\n\\)" mark "?"
1677 (regexp-quote islamic-diary-entry-symbol)
1678 "\\("
1679 (mapconcat 'eval date-form "\\)\\(")
1680 "\\)"))
1681 (case-fold-search t))
1682 (goto-char (point-min))
1683 (while (re-search-forward regexp nil t)
1684 (if backup (re-search-backward "\\<" nil t))
1685 (if (and (or (char-equal (preceding-char) ?\^M)
1686 (char-equal (preceding-char) ?\n))
1687 (not (looking-at " \\|\^I")))
1688 ;; Diary entry that consists only of date.
1689 (backward-char 1)
1690 ;; Found a nonempty diary entry--make it visible and
1691 ;; add it to the list.
1692 (let ((entry-start (point))
1693 (date-start))
1694 (re-search-backward "\^M\\|\n\\|\\`")
1695 (setq date-start (point))
1696 (re-search-forward "\^M\\|\n" nil t 2)
1697 (while (looking-at " \\|\^I")
1698 (re-search-forward "\^M\\|\n" nil t))
1699 (backward-char 1)
1700 (subst-char-in-region date-start (point) ?\^M ?\n t)
1701 (add-to-diary-list
1702 gdate (buffer-substring entry-start (point)))))))
1703 (setq d (cdr d))))
1704 (setq gdate
1705 (calendar-gregorian-from-absolute
1706 (1+ (calendar-absolute-from-gregorian gdate)))))
1707 (set-buffer-modified-p diary-modified))
1708 (goto-char (point-min))))
1709
1710 (defun mark-islamic-diary-entries ()
1711 "Mark days in the calendar window that have Islamic date diary entries.
1712 Each entry in diary-file (or included files) visible in the calendar window
1713 is marked. Islamic date entries are prefaced by a islamic-diary-entry-symbol
1714 \(normally an `I'\). The same diary-date-forms govern the style of the Islamic
1715 calendar entries, except that the Islamic month names must be spelled in full.
1716 The Islamic months are numbered from 1 to 12 with Muharram being 1 and 12 being
1717 Dhu al-Hijjah. Islamic date diary entries that begin with a
1718 diary-nonmarking-symbol will not be marked in the calendar. This function is
1719 provided for use as part of the nongregorian-diary-marking-hook."
1720 (let ((d diary-date-forms))
1721 (while d
1722 (let*
1723 ((date-form (if (equal (car (car d)) 'backup)
1724 (cdr (car d))
1725 (car d)));; ignore 'backup directive
1726 (dayname (diary-name-pattern calendar-day-name-array))
1727 (monthname
1728 (concat
1729 (diary-name-pattern calendar-islamic-month-name-array t)
1730 "\\|\\*"))
1731 (month "[0-9]+\\|\\*")
1732 (day "[0-9]+\\|\\*")
1733 (year "[0-9]+\\|\\*")
1734 (l (length date-form))
1735 (d-name-pos (- l (length (memq 'dayname date-form))))
1736 (d-name-pos (if (/= l d-name-pos) (+ 2 d-name-pos)))
1737 (m-name-pos (- l (length (memq 'monthname date-form))))
1738 (m-name-pos (if (/= l m-name-pos) (+ 2 m-name-pos)))
1739 (d-pos (- l (length (memq 'day date-form))))
1740 (d-pos (if (/= l d-pos) (+ 2 d-pos)))
1741 (m-pos (- l (length (memq 'month date-form))))
1742 (m-pos (if (/= l m-pos) (+ 2 m-pos)))
1743 (y-pos (- l (length (memq 'year date-form))))
1744 (y-pos (if (/= l y-pos) (+ 2 y-pos)))
1745 (regexp
1746 (concat
1747 "\\(\\`\\|\^M\\|\n\\)"
1748 (regexp-quote islamic-diary-entry-symbol)
1749 "\\("
1750 (mapconcat 'eval date-form "\\)\\(")
1751 "\\)"))
1752 (case-fold-search t))
1753 (goto-char (point-min))
1754 (while (re-search-forward regexp nil t)
1755 (let* ((dd-name
1756 (if d-name-pos
1757 (buffer-substring
1758 (match-beginning d-name-pos)
1759 (match-end d-name-pos))))
1760 (mm-name
1761 (if m-name-pos
1762 (buffer-substring
1763 (match-beginning m-name-pos)
1764 (match-end m-name-pos))))
1765 (mm (string-to-int
1766 (if m-pos
1767 (buffer-substring
1768 (match-beginning m-pos)
1769 (match-end m-pos))
1770 "")))
1771 (dd (string-to-int
1772 (if d-pos
1773 (buffer-substring
1774 (match-beginning d-pos)
1775 (match-end d-pos))
1776 "")))
1777 (y-str (if y-pos
1778 (buffer-substring
1779 (match-beginning y-pos)
1780 (match-end y-pos))))
1781 (yy (if (not y-str)
1782 0
1783 (if (and (= (length y-str) 2)
1784 abbreviated-calendar-year)
1785 (let* ((current-y
1786 (extract-calendar-year
1787 (calendar-islamic-from-absolute
1788 (calendar-absolute-from-gregorian
1789 (calendar-current-date)))))
1790 (y (+ (string-to-int y-str)
1791 (* 100 (/ current-y 100)))))
1792 (if (> (- y current-y) 50)
1793 (- y 100)
1794 (if (> (- current-y y) 50)
1795 (+ y 100)
1796 y)))
1797 (string-to-int y-str)))))
1798 (if dd-name
1799 (mark-calendar-days-named
1800 (cdr (assoc (capitalize (substring dd-name 0 3))
1801 (calendar-make-alist
1802 calendar-day-name-array
1803 0
1804 '(lambda (x) (substring x 0 3))))))
1805 (if mm-name
1806 (if (string-equal mm-name "*")
1807 (setq mm 0)
1808 (setq mm
1809 (cdr (assoc
1810 (capitalize mm-name)
1811 (calendar-make-alist
1812 calendar-islamic-month-name-array))))))
1813 (mark-islamic-calendar-date-pattern mm dd yy)))))
1814 (setq d (cdr d)))))
1815
1816 (defun mark-islamic-calendar-date-pattern (month day year)
1817 "Mark all dates in the calendar window that conform to the Islamic date
1818 MONTH/DAY/YEAR. A value of 0 in any position is a wild-card."
1819 (save-excursion
1820 (set-buffer calendar-buffer)
1821 (if (and (/= 0 month) (/= 0 day))
1822 (if (/= 0 year)
1823 ;; Fully specified Islamic date.
1824 (let ((date (calendar-gregorian-from-absolute
1825 (calendar-absolute-from-islamic
1826 (list month day year)))))
1827 (if (calendar-date-is-visible-p date)
1828 (mark-visible-calendar-date date)))
1829 ;; Month and day in any year--this taken from the holiday stuff.
1830 (let* ((islamic-date (calendar-islamic-from-absolute
1831 (calendar-absolute-from-gregorian
1832 (list displayed-month 15 displayed-year))))
1833 (m (extract-calendar-month islamic-date))
1834 (y (extract-calendar-year islamic-date))
1835 (date))
1836 (if (< m 1)
1837 nil;; Islamic calendar doesn't apply.
1838 (increment-calendar-month m y (- 10 month))
1839 (if (> m 7);; Islamic date might be visible
1840 (let ((date (calendar-gregorian-from-absolute
1841 (calendar-absolute-from-islamic
1842 (list month day y)))))
1843 (if (calendar-date-is-visible-p date)
1844 (mark-visible-calendar-date date)))))))
1845 ;; Not one of the simple cases--check all visible dates for match.
1846 ;; Actually, the following code takes care of ALL of the cases, but
1847 ;; it's much too slow to be used for the simple (common) cases.
1848 (let ((m displayed-month)
1849 (y displayed-year)
1850 (first-date)
1851 (last-date))
1852 (increment-calendar-month m y -1)
1853 (setq first-date
1854 (calendar-absolute-from-gregorian
1855 (list m 1 y)))
1856 (increment-calendar-month m y 2)
1857 (setq last-date
1858 (calendar-absolute-from-gregorian
1859 (list m (calendar-last-day-of-month m y) y)))
1860 (calendar-for-loop date from first-date to last-date do
1861 (let* ((i-date (calendar-islamic-from-absolute date))
1862 (i-month (extract-calendar-month i-date))
1863 (i-day (extract-calendar-day i-date))
1864 (i-year (extract-calendar-year i-date)))
1865 (and (or (zerop month)
1866 (= month i-month))
1867 (or (zerop day)
1868 (= day i-day))
1869 (or (zerop year)
1870 (= year i-year))
1871 (mark-visible-calendar-date
1872 (calendar-gregorian-from-absolute date)))))))))
1873
1874 (defun make-diary-entry (string &optional nonmarking file)
1875 "Insert a diary entry STRING which may be NONMARKING in FILE.
1876 If omitted, NONMARKING defaults to nil and FILE defaults to diary-file."
1877 (find-file-other-window
1878 (substitute-in-file-name (if file file diary-file)))
1879 (goto-char (point-max))
1880 (insert
1881 (if (bolp) "" "\n")
1882 (if nonmarking diary-nonmarking-symbol "")
1883 string " "))
1884
1885 (defun insert-diary-entry (arg)
1886 "Insert a diary entry for the date indicated by point.
1887 Prefix arg will make the entry nonmarking."
1888 (interactive "P")
1889 (let* ((calendar-date-display-form
1890 (if european-calendar-style
1891 '(day " " monthname " " year)
1892 '(monthname " " day ", " year))))
1893 (make-diary-entry
1894 (calendar-date-string
1895 (or (calendar-cursor-to-date)
1896 (error "Cursor is not on a date!"))
1897 t)
1898 arg)))
1899
1900 (defun insert-weekly-diary-entry (arg)
1901 "Insert a weekly diary entry for the day of the week indicated by point.
1902 Prefix arg will make the entry nonmarking."
1903 (interactive "P")
1904 (make-diary-entry
1905 (calendar-day-name
1906 (or (calendar-cursor-to-date)
1907 (error "Cursor is not on a date!")))
1908 arg))
1909
1910 (defun insert-monthly-diary-entry (arg)
1911 "Insert a monthly diary entry for the day of the month indicated by point.
1912 Prefix arg will make the entry nonmarking."
1913 (interactive "P")
1914 (let* ((calendar-date-display-form
1915 (if european-calendar-style
1916 '(day " * ")
1917 '("* " day))))
1918 (make-diary-entry
1919 (calendar-date-string
1920 (or (calendar-cursor-to-date)
1921 (error "Cursor is not on a date!"))
1922 t)
1923 arg)))
1924
1925 (defun insert-yearly-diary-entry (arg)
1926 "Insert an annual diary entry for the day of the year indicated by point.
1927 Prefix arg will make the entry nonmarking."
1928 (interactive "P")
1929 (let* ((calendar-date-display-form
1930 (if european-calendar-style
1931 '(day " " monthname)
1932 '(monthname " " day))))
1933 (make-diary-entry
1934 (calendar-date-string
1935 (or (calendar-cursor-to-date)
1936 (error "Cursor is not on a date!"))
1937 t)
1938 arg)))
1939
1940 (defun insert-anniversary-diary-entry (arg)
1941 "Insert an anniversary diary entry for the date given by point.
1942 Prefix arg will make the entry nonmarking."
1943 (interactive "P")
1944 (let* ((calendar-date-display-form
1945 (if european-calendar-style
1946 '(day " " month " " year)
1947 '(month " " day " " year))))
1948 (make-diary-entry
1949 (format "%s(diary-anniversary %s)"
1950 sexp-diary-entry-symbol
1951 (calendar-date-string
1952 (or (calendar-cursor-to-date)
1953 (error "Cursor is not on a date!"))))
1954 arg)))
1955
1956 (defun insert-block-diary-entry (arg)
1957 "Insert a block diary entry for the days between the point and marked date.
1958 Prefix arg will make the entry nonmarking."
1959 (interactive "P")
1960 (let* ((calendar-date-display-form
1961 (if european-calendar-style
1962 '(day " " month " " year)
1963 '(month " " day " " year)))
1964 (cursor (or (calendar-cursor-to-date)
1965 (error "Cursor is not on a date!")))
1966 (mark (or (car calendar-mark-ring)
1967 (error "No mark set in this buffer")))
1968 (start)
1969 (end))
1970 (if (< (calendar-absolute-from-gregorian mark)
1971 (calendar-absolute-from-gregorian cursor))
1972 (setq start mark
1973 end cursor)
1974 (setq start cursor
1975 end mark))
1976 (make-diary-entry
1977 (format "%s(diary-block %s %s)"
1978 sexp-diary-entry-symbol
1979 (calendar-date-string start)
1980 (calendar-date-string end))
1981 arg)))
1982
1983 (defun insert-cyclic-diary-entry (arg)
1984 "Insert a cyclic diary entry starting at the date given by point.
1985 Prefix arg will make the entry nonmarking."
1986 (interactive "P")
1987 (let* ((calendar-date-display-form
1988 (if european-calendar-style
1989 '(day " " month " " year)
1990 '(month " " day " " year))))
1991 (make-diary-entry
1992 (format "%s(diary-cyclic %d %s)"
1993 sexp-diary-entry-symbol
1994 (calendar-read "Repeat every how many days: "
1995 '(lambda (x) (> x 0)))
1996 (calendar-date-string
1997 (or (calendar-cursor-to-date)
1998 (error "Cursor is not on a date!"))))
1999 arg)))
2000
2001 (defun insert-hebrew-diary-entry (arg)
2002 "Insert a diary entry for the Hebrew date corresponding to the date
2003 indicated by point. Prefix arg will make the entry nonmarking."
2004 (interactive "P")
2005 (let* ((calendar-date-display-form
2006 (if european-calendar-style
2007 '(day " " monthname " " year)
2008 '(monthname " " day ", " year)))
2009 (calendar-month-name-array
2010 calendar-hebrew-month-name-array-leap-year))
2011 (make-diary-entry
2012 (concat
2013 hebrew-diary-entry-symbol
2014 (calendar-date-string
2015 (calendar-hebrew-from-absolute
2016 (calendar-absolute-from-gregorian
2017 (or (calendar-cursor-to-date)
2018 (error "Cursor is not on a date!"))))))
2019 arg)))
2020
2021 (defun insert-monthly-hebrew-diary-entry (arg)
2022 "Insert a monthly diary entry for the day of the Hebrew month corresponding
2023 to the date indicated by point. Prefix arg will make the entry nonmarking."
2024 (interactive "P")
2025 (let* ((calendar-date-display-form
2026 (if european-calendar-style '(day " * ") '("* " day )))
2027 (calendar-month-name-array
2028 calendar-hebrew-month-name-array-leap-year))
2029 (make-diary-entry
2030 (concat
2031 hebrew-diary-entry-symbol
2032 (calendar-date-string
2033 (calendar-hebrew-from-absolute
2034 (calendar-absolute-from-gregorian
2035 (or (calendar-cursor-to-date)
2036 (error "Cursor is not on a date!"))))))
2037 arg)))
2038
2039 (defun insert-yearly-hebrew-diary-entry (arg)
2040 "Insert an annual diary entry for the day of the Hebrew year corresponding
2041 to the date indicated by point. Prefix arg will make the entry nonmarking."
2042 (interactive "P")
2043 (let* ((calendar-date-display-form
2044 (if european-calendar-style
2045 '(day " " monthname)
2046 '(monthname " " day)))
2047 (calendar-month-name-array
2048 calendar-hebrew-month-name-array-leap-year))
2049 (make-diary-entry
2050 (concat
2051 hebrew-diary-entry-symbol
2052 (calendar-date-string
2053 (calendar-hebrew-from-absolute
2054 (calendar-absolute-from-gregorian
2055 (or (calendar-cursor-to-date)
2056 (error "Cursor is not on a date!"))))))
2057 arg)))
2058
2059 (defun insert-islamic-diary-entry (arg)
2060 "Insert a diary entry for the Islamic date corresponding to the date
2061 indicated by point. Prefix arg will make the entry nonmarking."
2062 (interactive "P")
2063 (let* ((calendar-date-display-form
2064 (if european-calendar-style
2065 '(day " " monthname " " year)
2066 '(monthname " " day ", " year)))
2067 (calendar-month-name-array calendar-islamic-month-name-array))
2068 (make-diary-entry
2069 (concat
2070 islamic-diary-entry-symbol
2071 (calendar-date-string
2072 (calendar-islamic-from-absolute
2073 (calendar-absolute-from-gregorian
2074 (or (calendar-cursor-to-date)
2075 (error "Cursor is not on a date!"))))))
2076 arg)))
2077
2078 (defun insert-monthly-islamic-diary-entry (arg)
2079 "Insert a monthly diary entry for the day of the Islamic month corresponding
2080 to the date indicated by point. Prefix arg will make the entry nonmarking."
2081 (interactive "P")
2082 (let* ((calendar-date-display-form
2083 (if european-calendar-style '(day " * ") '("* " day )))
2084 (calendar-month-name-array calendar-islamic-month-name-array))
2085 (make-diary-entry
2086 (concat
2087 islamic-diary-entry-symbol
2088 (calendar-date-string
2089 (calendar-islamic-from-absolute
2090 (calendar-absolute-from-gregorian
2091 (or (calendar-cursor-to-date)
2092 (error "Cursor is not on a date!"))))))
2093 arg)))
2094
2095 (defun insert-yearly-islamic-diary-entry (arg)
2096 "Insert an annual diary entry for the day of the Islamic year corresponding
2097 to the date indicated by point. Prefix arg will make the entry nonmarking."
2098 (interactive "P")
2099 (let* ((calendar-date-display-form
2100 (if european-calendar-style
2101 '(day " " monthname)
2102 '(monthname " " day)))
2103 (calendar-month-name-array calendar-islamic-month-name-array))
2104 (make-diary-entry
2105 (concat
2106 islamic-diary-entry-symbol
2107 (calendar-date-string
2108 (calendar-islamic-from-absolute
2109 (calendar-absolute-from-gregorian
2110 (or (calendar-cursor-to-date)
2111 (error "Cursor is not on a date!"))))))
2112 arg)))
2113
2114 (provide 'diary)
2115
2116 ;;; diary.el ends here