Mercurial > emacs
annotate lisp/calendar/diary-lib.el @ 20790:7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 27 Jan 1998 20:07:30 +0000 |
parents | 17404b95404f |
children | 621dd51298ec |
rev | line source |
---|---|
13650 | 1 ;;; diary-lib.el --- diary functions. |
13053 | 2 |
14169 | 3 ;; Copyright (C) 1989, 1990, 1992, 1993, 1994, 1995 Free Software |
4 ;; Foundation, Inc. | |
13053 | 5 |
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | |
7 ;; Keywords: calendar | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
13053 | 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 named in `diary-file' for entries that | |
65 match ARG days starting with the date indicated by the cursor position | |
66 in the displayed three-month 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 (calendar-cursor-to-date t) arg) | |
72 (error "Diary file is not readable!")) | |
73 (error "You don't have a diary file!")))) | |
74 | |
75 (defun view-other-diary-entries (arg diary-file) | |
76 "Prepare and display buffer of diary entries from an alternative diary file. | |
77 Prompts for a file name and searches that file for entries that match ARG | |
78 days starting with the date indicated by the cursor position in the displayed | |
79 three-month calendar." | |
80 (interactive | |
81 (list (cond ((null current-prefix-arg) 1) | |
82 ((listp current-prefix-arg) (car current-prefix-arg)) | |
83 (t current-prefix-arg)) | |
84 (setq diary-file (read-file-name "Enter diary file name: " | |
85 default-directory nil t)))) | |
86 (view-diary-entries arg)) | |
87 | |
88 (autoload 'check-calendar-holidays "holidays" | |
89 "Check the list of holidays for any that occur on DATE. | |
90 The value returned is a list of strings of relevant holiday descriptions. | |
91 The holidays are those in the list `calendar-holidays'." | |
92 t) | |
93 | |
94 (autoload 'calendar-holiday-list "holidays" | |
95 "Form the list of holidays that occur on dates in the calendar window. | |
96 The holidays are those in the list `calendar-holidays'." | |
97 t) | |
98 | |
99 (autoload 'diary-french-date "cal-french" | |
100 "French calendar equivalent of date diary entry." | |
101 t) | |
102 | |
103 (autoload 'diary-mayan-date "cal-mayan" | |
104 "Mayan calendar equivalent of date diary entry." | |
105 t) | |
106 | |
13688
88f14fa8e205
Autoload diary-iso-date.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13687
diff
changeset
|
107 (autoload 'diary-iso-date "cal-iso" |
88f14fa8e205
Autoload diary-iso-date.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13687
diff
changeset
|
108 "ISO calendar equivalent of date diary entry." |
88f14fa8e205
Autoload diary-iso-date.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13687
diff
changeset
|
109 t) |
88f14fa8e205
Autoload diary-iso-date.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13687
diff
changeset
|
110 |
13053 | 111 (autoload 'diary-julian-date "cal-julian" |
112 "Julian calendar equivalent of date diary entry." | |
113 t) | |
114 | |
115 (autoload 'diary-astro-day-number "cal-julian" | |
116 "Astronomical (Julian) day number diary entry." | |
117 t) | |
118 | |
14687
0d4ff7e4d6a3
Use the new file names in autoloads.
Karl Heuer <kwzh@gnu.org>
parents:
14308
diff
changeset
|
119 (autoload 'diary-chinese-date "cal-china" |
13053 | 120 "Chinese calendar equivalent of date diary entry." |
121 t) | |
122 | |
14687
0d4ff7e4d6a3
Use the new file names in autoloads.
Karl Heuer <kwzh@gnu.org>
parents:
14308
diff
changeset
|
123 (autoload 'diary-islamic-date "cal-islam" |
13053 | 124 "Islamic calendar equivalent of date diary entry." |
125 t) | |
126 | |
14687
0d4ff7e4d6a3
Use the new file names in autoloads.
Karl Heuer <kwzh@gnu.org>
parents:
14308
diff
changeset
|
127 (autoload 'list-islamic-diary-entries "cal-islam" |
13053 | 128 "Add any Islamic date entries from the diary file to `diary-entries-list'." |
129 t) | |
130 | |
14687
0d4ff7e4d6a3
Use the new file names in autoloads.
Karl Heuer <kwzh@gnu.org>
parents:
14308
diff
changeset
|
131 (autoload 'mark-islamic-diary-entries "cal-islam" |
13053 | 132 "Mark days in the calendar window that have Islamic date diary entries." |
133 t) | |
134 | |
14687
0d4ff7e4d6a3
Use the new file names in autoloads.
Karl Heuer <kwzh@gnu.org>
parents:
14308
diff
changeset
|
135 (autoload 'mark-islamic-calendar-date-pattern "cal-islam" |
13053 | 136 "Mark dates in calendar window that conform to Islamic date MONTH/DAY/YEAR." |
137 t) | |
138 | |
139 (autoload 'diary-hebrew-date "cal-hebrew" | |
140 "Hebrew calendar equivalent of date diary entry." | |
141 t) | |
142 | |
143 (autoload 'diary-omer "cal-hebrew" | |
144 "Omer count diary entry." | |
145 t) | |
146 | |
147 (autoload 'diary-yahrzeit "cal-hebrew" | |
148 "Yahrzeit diary entry--entry applies if date is yahrzeit or the day before." | |
149 t) | |
150 | |
151 (autoload 'diary-parasha "cal-hebrew" | |
152 "Parasha diary entry--entry applies if date is a Saturday." | |
153 t) | |
154 | |
155 (autoload 'diary-rosh-hodesh "cal-hebrew" | |
156 "Rosh Hodesh diary entry." | |
157 t) | |
158 | |
159 (autoload 'list-hebrew-diary-entries "cal-hebrew" | |
160 "Add any Hebrew date entries from the diary file to `diary-entries-list'." | |
161 t) | |
162 | |
163 (autoload 'mark-hebrew-diary-entries "cal-hebrew" | |
164 "Mark days in the calendar window that have Hebrew date diary entries." | |
165 t) | |
166 | |
167 (autoload 'mark-hebrew-calendar-date-pattern "cal-hebrew" | |
168 "Mark dates in calendar window that conform to Hebrew date MONTH/DAY/YEAR." | |
169 t) | |
170 | |
171 (autoload 'diary-coptic-date "cal-coptic" | |
172 "Coptic calendar equivalent of date diary entry." | |
173 t) | |
174 | |
175 (autoload 'diary-ethiopic-date "cal-coptic" | |
176 "Ethiopic calendar equivalent of date diary entry." | |
177 t) | |
178 | |
15258
ab5975df6164
Change autoload references from cal-persian to cal-persia.
Karl Heuer <kwzh@gnu.org>
parents:
14954
diff
changeset
|
179 (autoload 'diary-persian-date "cal-persia" |
14954
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
180 "Persian calendar equivalent of date diary entry." |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
181 t) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
182 |
13053 | 183 (autoload 'diary-phases-of-moon "lunar" "Moon phases diary entry." t) |
184 | |
185 (autoload 'diary-sunrise-sunset "solar" | |
186 "Local time of sunrise and sunset as a diary entry." | |
187 t) | |
188 | |
189 (autoload 'diary-sabbath-candles "solar" | |
190 "Local time of candle lighting diary entry--applies if date is a Friday. | |
191 No diary entry if there is no sunset on that date." | |
192 t) | |
193 | |
194 (defvar diary-syntax-table (copy-syntax-table (standard-syntax-table)) | |
195 "The syntax table used when parsing dates in the diary file. | |
196 It is the standard syntax table used in Fundamental mode, but with the | |
197 syntax of `*' changed to be a word constituent.") | |
198 | |
199 (modify-syntax-entry ?* "w" diary-syntax-table) | |
200 | |
201 (defun list-diary-entries (date number) | |
202 "Create and display a buffer containing the relevant lines in diary-file. | |
203 The arguments are DATE and NUMBER; the entries selected are those | |
204 for NUMBER days starting with date DATE. The other entries are hidden | |
205 using selective display. | |
206 | |
207 Returns a list of all relevant diary entries found, if any, in order by date. | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
208 The list entries have the form ((month day year) string specifier) where |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
209 \(month day year) is the date of the entry, string is the entry text, and |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
210 specifier is the applicability. If the variable `diary-list-include-blanks' |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
211 is t, this list includes a dummy diary entry consisting of the empty string) |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
212 for a date with no diary entries. |
13053 | 213 |
214 After the list is prepared, the hooks `nongregorian-diary-listing-hook', | |
215 `list-diary-entries-hook', `diary-display-hook', and `diary-hook' are run. | |
216 These hooks have the following distinct roles: | |
217 | |
218 `nongregorian-diary-listing-hook' can cull dates from the diary | |
219 and each included file. Usually used for Hebrew or Islamic | |
220 diary entries in files. Applied to *each* file. | |
221 | |
222 `list-diary-entries-hook' adds or manipulates diary entries from | |
223 external sources. Used, for example, to include diary entries | |
224 from other files or to sort the diary entries. Invoked *once* only, | |
225 before the display hook is run. | |
226 | |
227 `diary-display-hook' does the actual display of information. If this is | |
228 nil, simple-diary-display will be used. Use add-hook to set this to | |
229 fancy-diary-display, if desired. If you want no diary display, use | |
230 add-hook to set this to ignore. | |
231 | |
232 `diary-hook' is run last. This can be used for an appointment | |
233 notification function." | |
234 | |
235 (if (< 0 number) | |
236 (let* ((original-date date);; save for possible use in the hooks | |
237 (old-diary-syntax-table) | |
238 (diary-entries-list) | |
239 (date-string (calendar-date-string date)) | |
240 (d-file (substitute-in-file-name diary-file))) | |
241 (message "Preparing diary...") | |
242 (save-excursion | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
243 (let ((diary-buffer (find-buffer-visiting d-file))) |
16545
ff25eb6a7d11
(list-diary-entries): Reread the diary file if it has changed.
Richard M. Stallman <rms@gnu.org>
parents:
15258
diff
changeset
|
244 (if (not diary-buffer) |
ff25eb6a7d11
(list-diary-entries): Reread the diary file if it has changed.
Richard M. Stallman <rms@gnu.org>
parents:
15258
diff
changeset
|
245 (set-buffer (find-file-noselect d-file t)) |
ff25eb6a7d11
(list-diary-entries): Reread the diary file if it has changed.
Richard M. Stallman <rms@gnu.org>
parents:
15258
diff
changeset
|
246 (set-buffer diary-buffer) |
ff25eb6a7d11
(list-diary-entries): Reread the diary file if it has changed.
Richard M. Stallman <rms@gnu.org>
parents:
15258
diff
changeset
|
247 (or (verify-visited-file-modtime diary-buffer) |
ff25eb6a7d11
(list-diary-entries): Reread the diary file if it has changed.
Richard M. Stallman <rms@gnu.org>
parents:
15258
diff
changeset
|
248 (revert-buffer t t)))) |
13053 | 249 (setq selective-display t) |
250 (setq selective-display-ellipses nil) | |
251 (setq old-diary-syntax-table (syntax-table)) | |
252 (set-syntax-table diary-syntax-table) | |
253 (unwind-protect | |
254 (let ((buffer-read-only nil) | |
255 (diary-modified (buffer-modified-p)) | |
256 (mark (regexp-quote diary-nonmarking-symbol))) | |
257 (goto-char (1- (point-max))) | |
258 (if (not (looking-at "\^M\\|\n")) | |
259 (progn | |
260 (forward-char 1) | |
261 (insert-string "\^M"))) | |
262 (goto-char (point-min)) | |
263 (if (not (looking-at "\^M\\|\n")) | |
264 (insert-string "\^M")) | |
265 (subst-char-in-region (point-min) (point-max) ?\n ?\^M t) | |
266 (calendar-for-loop i from 1 to number do | |
267 (let ((d diary-date-forms) | |
268 (month (extract-calendar-month date)) | |
269 (day (extract-calendar-day date)) | |
270 (year (extract-calendar-year date)) | |
271 (entry-found (list-sexp-diary-entries date))) | |
272 (while d | |
273 (let* | |
274 ((date-form (if (equal (car (car d)) 'backup) | |
275 (cdr (car d)) | |
276 (car d))) | |
277 (backup (equal (car (car d)) 'backup)) | |
278 (dayname | |
279 (concat | |
280 (calendar-day-name date) "\\|" | |
281 (substring (calendar-day-name date) 0 3) ".?")) | |
282 (monthname | |
283 (concat | |
284 "\\*\\|" | |
285 (calendar-month-name month) "\\|" | |
286 (substring (calendar-month-name month) 0 3) ".?")) | |
287 (month (concat "\\*\\|0*" (int-to-string month))) | |
288 (day (concat "\\*\\|0*" (int-to-string day))) | |
289 (year | |
290 (concat | |
291 "\\*\\|0*" (int-to-string year) | |
292 (if abbreviated-calendar-year | |
293 (concat "\\|" (int-to-string (% year 100))) | |
294 ""))) | |
295 (regexp | |
296 (concat | |
297 "\\(\\`\\|\^M\\|\n\\)" mark "?\\(" | |
298 (mapconcat 'eval date-form "\\)\\(") | |
299 "\\)")) | |
300 (case-fold-search t)) | |
301 (goto-char (point-min)) | |
302 (while (re-search-forward regexp nil t) | |
303 (if backup (re-search-backward "\\<" nil t)) | |
304 (if (and (or (char-equal (preceding-char) ?\^M) | |
305 (char-equal (preceding-char) ?\n)) | |
306 (not (looking-at " \\|\^I"))) | |
307 ;; Diary entry that consists only of date. | |
308 (backward-char 1) | |
309 ;; Found a nonempty diary entry--make it visible and | |
310 ;; add it to the list. | |
311 (setq entry-found t) | |
312 (let ((entry-start (point)) | |
313 (date-start)) | |
314 (re-search-backward "\^M\\|\n\\|\\`") | |
315 (setq date-start (point)) | |
316 (re-search-forward "\^M\\|\n" nil t 2) | |
317 (while (looking-at " \\|\^I") | |
318 (re-search-forward "\^M\\|\n" nil t)) | |
319 (backward-char 1) | |
320 (subst-char-in-region date-start | |
321 (point) ?\^M ?\n t) | |
322 (add-to-diary-list | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
323 date |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
324 (buffer-substring-no-properties |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
325 entry-start (point)) |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
326 (buffer-substring-no-properties |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
327 (1+ date-start) (1- entry-start))))))) |
13053 | 328 (setq d (cdr d))) |
329 (or entry-found | |
330 (not diary-list-include-blanks) | |
331 (setq diary-entries-list | |
332 (append diary-entries-list | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
333 (list (list date "" ""))))) |
13053 | 334 (setq date |
335 (calendar-gregorian-from-absolute | |
336 (1+ (calendar-absolute-from-gregorian date)))) | |
337 (setq entry-found nil))) | |
338 (set-buffer-modified-p diary-modified)) | |
339 (set-syntax-table old-diary-syntax-table)) | |
340 (goto-char (point-min)) | |
341 (run-hooks 'nongregorian-diary-listing-hook | |
342 'list-diary-entries-hook) | |
343 (if diary-display-hook | |
344 (run-hooks 'diary-display-hook) | |
345 (simple-diary-display)) | |
346 (run-hooks 'diary-hook) | |
347 diary-entries-list)))) | |
348 | |
349 (defun include-other-diary-files () | |
350 "Include the diary entries from other diary files with those of diary-file. | |
351 This function is suitable for use in `list-diary-entries-hook'; | |
352 it enables you to use shared diary files together with your own. | |
353 The files included are specified in the diaryfile by lines of this form: | |
354 #include \"filename\" | |
355 This is recursive; that is, #include directives in diary files thus included | |
356 are obeyed. You can change the `#include' to some other string by | |
357 changing the variable `diary-include-string'." | |
358 (goto-char (point-min)) | |
359 (while (re-search-forward | |
360 (concat | |
361 "\\(\\`\\|\^M\\|\n\\)" | |
362 (regexp-quote diary-include-string) | |
363 " \"\\([^\"]*\\)\"") | |
364 nil t) | |
365 (let ((diary-file (substitute-in-file-name | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
366 (buffer-substring-no-properties |
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
367 (match-beginning 2) (match-end 2)))) |
13053 | 368 (diary-list-include-blanks nil) |
369 (list-diary-entries-hook 'include-other-diary-files) | |
370 (diary-display-hook 'ignore) | |
371 (diary-hook nil)) | |
372 (if (file-exists-p diary-file) | |
373 (if (file-readable-p diary-file) | |
374 (unwind-protect | |
375 (setq diary-entries-list | |
376 (append diary-entries-list | |
377 (list-diary-entries original-date number))) | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
378 (kill-buffer (find-buffer-visiting diary-file))) |
13053 | 379 (beep) |
380 (message "Can't read included diary file %s" diary-file) | |
381 (sleep-for 2)) | |
382 (beep) | |
383 (message "Can't find included diary file %s" diary-file) | |
384 (sleep-for 2)))) | |
385 (goto-char (point-min))) | |
386 | |
387 (defun simple-diary-display () | |
388 "Display the diary buffer if there are any relevant entries or holidays." | |
389 (let* ((holiday-list (if holidays-in-diary-buffer | |
390 (check-calendar-holidays original-date))) | |
391 (msg (format "No diary entries for %s %s" | |
392 (concat date-string (if holiday-list ":" "")) | |
393 (mapconcat 'identity holiday-list "; ")))) | |
394 (if (or (not diary-entries-list) | |
395 (and (not (cdr diary-entries-list)) | |
396 (string-equal (car (cdr (car diary-entries-list))) ""))) | |
397 (if (<= (length msg) (frame-width)) | |
14308
0ce52b2f2bb5
(simple-diary-display, fancy-diary-display): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
398 (message "%s" msg) |
13053 | 399 (set-buffer (get-buffer-create holiday-buffer)) |
400 (setq buffer-read-only nil) | |
401 (calendar-set-mode-line date-string) | |
402 (erase-buffer) | |
403 (insert (mapconcat 'identity holiday-list "\n")) | |
404 (goto-char (point-min)) | |
405 (set-buffer-modified-p nil) | |
406 (setq buffer-read-only t) | |
407 (display-buffer holiday-buffer) | |
408 (message "No diary entries for %s" date-string)) | |
409 (calendar-set-mode-line | |
410 (concat "Diary for " date-string | |
411 (if holiday-list ": " "") | |
412 (mapconcat 'identity holiday-list "; "))) | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
413 (display-buffer (find-buffer-visiting d-file)) |
13053 | 414 (message "Preparing diary...done")))) |
415 | |
416 (defun fancy-diary-display () | |
417 "Prepare a diary buffer with relevant entries in a fancy, noneditable form. | |
418 This function is provided for optional use as the `diary-display-hook'." | |
419 (save-excursion;; Turn off selective-display in the diary file's buffer. | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
420 (set-buffer (find-buffer-visiting (substitute-in-file-name diary-file))) |
13053 | 421 (let ((diary-modified (buffer-modified-p))) |
422 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t) | |
423 (setq selective-display nil) | |
424 (kill-local-variable 'mode-line-format) | |
425 (set-buffer-modified-p diary-modified))) | |
426 (if (or (not diary-entries-list) | |
427 (and (not (cdr diary-entries-list)) | |
428 (string-equal (car (cdr (car diary-entries-list))) ""))) | |
429 (let* ((holiday-list (if holidays-in-diary-buffer | |
430 (check-calendar-holidays original-date))) | |
431 (msg (format "No diary entries for %s %s" | |
432 (concat date-string (if holiday-list ":" "")) | |
433 (mapconcat 'identity holiday-list "; ")))) | |
434 (if (<= (length msg) (frame-width)) | |
14308
0ce52b2f2bb5
(simple-diary-display, fancy-diary-display): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
435 (message "%s" msg) |
13053 | 436 (set-buffer (get-buffer-create holiday-buffer)) |
437 (setq buffer-read-only nil) | |
438 (calendar-set-mode-line date-string) | |
439 (erase-buffer) | |
440 (insert (mapconcat 'identity holiday-list "\n")) | |
441 (goto-char (point-min)) | |
442 (set-buffer-modified-p nil) | |
443 (setq buffer-read-only t) | |
444 (display-buffer holiday-buffer) | |
445 (message "No diary entries for %s" date-string))) | |
446 (save-excursion;; Prepare the fancy diary buffer. | |
447 (set-buffer (make-fancy-diary-buffer)) | |
448 (setq buffer-read-only nil) | |
449 (let ((entry-list diary-entries-list) | |
450 (holiday-list) | |
451 (holiday-list-last-month 1) | |
452 (holiday-list-last-year 1) | |
453 (date (list 0 0 0))) | |
454 (while entry-list | |
455 (if (not (calendar-date-equal date (car (car entry-list)))) | |
456 (progn | |
457 (setq date (car (car entry-list))) | |
458 (and holidays-in-diary-buffer | |
459 (calendar-date-compare | |
460 (list (list holiday-list-last-month | |
461 (calendar-last-day-of-month | |
462 holiday-list-last-month | |
463 holiday-list-last-year) | |
464 holiday-list-last-year)) | |
465 (list date)) | |
466 ;; We need to get the holidays for the next 3 months. | |
467 (setq holiday-list-last-month | |
468 (extract-calendar-month date)) | |
469 (setq holiday-list-last-year | |
470 (extract-calendar-year date)) | |
471 (increment-calendar-month | |
472 holiday-list-last-month holiday-list-last-year 1) | |
473 (setq holiday-list | |
474 (let ((displayed-month holiday-list-last-month) | |
475 (displayed-year holiday-list-last-year)) | |
476 (calendar-holiday-list))) | |
477 (increment-calendar-month | |
478 holiday-list-last-month holiday-list-last-year 1)) | |
479 (let* ((date-string (calendar-date-string date)) | |
480 (date-holiday-list | |
481 (let ((h holiday-list) | |
482 (d)) | |
483 ;; Make a list of all holidays for date. | |
484 (while h | |
485 (if (calendar-date-equal date (car (car h))) | |
486 (setq d (append d (cdr (car h))))) | |
487 (setq h (cdr h))) | |
488 d))) | |
489 (insert (if (= (point) (point-min)) "" ?\n) date-string) | |
490 (if date-holiday-list (insert ": ")) | |
14954
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
491 (let* ((l (current-column)) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
492 (longest 0)) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
493 (insert (mapconcat '(lambda (x) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
494 (if (< longest (length x)) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
495 (setq longest (length x))) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
496 x) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
497 date-holiday-list |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
498 (concat "\n" (make-string l ? )))) |
a9102c34a5b6
Fix length of separator string.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14687
diff
changeset
|
499 (insert ?\n (make-string (+ l longest) ?=) ?\n))))) |
13053 | 500 (if (< 0 (length (car (cdr (car entry-list))))) |
501 (insert (car (cdr (car entry-list))) ?\n)) | |
502 (setq entry-list (cdr entry-list)))) | |
503 (set-buffer-modified-p nil) | |
504 (goto-char (point-min)) | |
505 (setq buffer-read-only t) | |
506 (display-buffer fancy-diary-buffer) | |
507 (message "Preparing diary...done")))) | |
508 | |
509 (defun make-fancy-diary-buffer () | |
510 "Create and return the initial fancy diary buffer." | |
511 (save-excursion | |
512 (set-buffer (get-buffer-create fancy-diary-buffer)) | |
513 (setq buffer-read-only nil) | |
514 (make-local-variable 'mode-line-format) | |
515 (calendar-set-mode-line "Diary Entries") | |
516 (erase-buffer) | |
517 (set-buffer-modified-p nil) | |
518 (setq buffer-read-only t) | |
519 (get-buffer fancy-diary-buffer))) | |
520 | |
521 (defun print-diary-entries () | |
522 "Print a hard copy of the diary display. | |
523 | |
524 If the simple diary display is being used, prepare a temp buffer with the | |
525 visible lines of the diary buffer, add a heading line composed from the mode | |
526 line, print the temp buffer, and destroy it. | |
527 | |
528 If the fancy diary display is being used, just print the buffer. | |
529 | |
530 The hooks given by the variable `print-diary-entries-hook' are called to do | |
531 the actual printing." | |
532 (interactive) | |
533 (if (bufferp (get-buffer fancy-diary-buffer)) | |
534 (save-excursion | |
535 (set-buffer (get-buffer fancy-diary-buffer)) | |
536 (run-hooks 'print-diary-entries-hook)) | |
537 (let ((diary-buffer | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
538 (find-buffer-visiting (substitute-in-file-name diary-file)))) |
13053 | 539 (if diary-buffer |
540 (let ((temp-buffer (get-buffer-create "*Printable Diary Entries*")) | |
541 (heading)) | |
542 (save-excursion | |
543 (set-buffer diary-buffer) | |
544 (setq heading | |
545 (if (not (stringp mode-line-format)) | |
546 "All Diary Entries" | |
547 (string-match "^-*\\([^-].*[^-]\\)-*$" mode-line-format) | |
548 (substring mode-line-format | |
549 (match-beginning 1) (match-end 1)))) | |
550 (copy-to-buffer temp-buffer (point-min) (point-max)) | |
551 (set-buffer temp-buffer) | |
552 (while (re-search-forward "\^M.*$" nil t) | |
553 (replace-match "")) | |
554 (goto-char (point-min)) | |
555 (insert heading "\n" | |
556 (make-string (length heading) ?=) "\n") | |
557 (run-hooks 'print-diary-entries-hook) | |
558 (kill-buffer temp-buffer))) | |
559 (error "You don't have a diary buffer!"))))) | |
560 | |
561 (defun show-all-diary-entries () | |
562 "Show all of the diary entries in the diary file. | |
563 This function gets rid of the selective display of the diary file so that | |
564 all entries, not just some, are visible. If there is no diary buffer, one | |
565 is created." | |
566 (interactive) | |
567 (let ((d-file (substitute-in-file-name diary-file))) | |
568 (if (and d-file (file-exists-p d-file)) | |
569 (if (file-readable-p d-file) | |
570 (save-excursion | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
571 (let ((diary-buffer (find-buffer-visiting d-file))) |
13053 | 572 (set-buffer (if diary-buffer |
573 diary-buffer | |
574 (find-file-noselect d-file t))) | |
575 (let ((buffer-read-only nil) | |
576 (diary-modified (buffer-modified-p))) | |
577 (subst-char-in-region (point-min) (point-max) ?\^M ?\n t) | |
578 (setq selective-display nil) | |
579 (make-local-variable 'mode-line-format) | |
580 (setq mode-line-format default-mode-line-format) | |
581 (display-buffer (current-buffer)) | |
582 (set-buffer-modified-p diary-modified)))) | |
583 (error "Your diary file is not readable!")) | |
584 (error "You don't have a diary file!")))) | |
585 | |
20345
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
586 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
587 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
588 (defcustom diary-mail-addr |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
589 (if (boundp 'user-mail-address) user-mail-address nil) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
590 "*Email address that `diary-mail-entries' will send email to." |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
591 :group 'diary |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
592 :type 'string) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
593 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
594 (defcustom diary-mail-days 7 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
595 "*Number of days for `diary-mail-entries' to check." |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
596 :group 'diary |
20354
17404b95404f
(diary-mail-days): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
20345
diff
changeset
|
597 :type 'integer) |
20345
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
598 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
599 (defun diary-mail-entries (&optional ndays) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
600 "Send a mail message showing diary entries for next NDAYS days. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
601 If no prefix argument is given, NDAYS is set to `diary-mail-days'. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
602 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
603 You can call `diary-mail-entries' every night using an at/cron job. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
604 For example, this script will run the program at 2am daily. Since |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
605 `emacs -batch' does not load your `.emacs' file, you must ensure that |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
606 all relevant variables are set, as done here. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
607 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
608 #!/bin/sh |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
609 # diary-rem.sh -- repeatedly run the Emacs diary-reminder |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
610 emacs -batch \\ |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
611 -eval \"(setq diary-mail-days 3 \\ |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
612 european-calendar-style t \\ |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
613 diary-mail-addr \\\"user@host.name\\\" )\" \\ |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
614 -l diary-lib -f diary-mail-entries |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
615 at -f diary-rem.sh 0200 tomorrow |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
616 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
617 You may have to tweak the syntax of the `at' command to suit your |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
618 system. Alternatively, you can specify a cron entry: |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
619 0 1 * * * diary-rem.sh |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
620 to run it every morning at 1am." |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
621 (interactive "p") |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
622 (let ((text nil) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
623 ;; Use the fancy-diary-display as it doesn't hide rest of |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
624 ;; diary file with ^M characters. It also looks nicer. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
625 (diary-display-hook 'fancy-diary-display)) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
626 (if (not current-prefix-arg) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
627 (setq ndays diary-mail-days)) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
628 (calendar) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
629 (view-diary-entries ndays) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
630 (set-buffer "*Fancy Diary Entries*") |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
631 (setq text (buffer-substring (point-min) (point-max))) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
632 |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
633 ;; Now send text as a mail message. |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
634 (mail) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
635 (mail-to) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
636 (insert diary-mail-addr) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
637 (mail-subject) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
638 (insert "Diary entries generated ") |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
639 (insert (format-time-string "%a %d %b %y" (current-time))) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
640 (mail-text) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
641 (insert text) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
642 (mail-send-and-exit nil))) |
69818ee01344
(diary-mail-addr, diary-mail-days): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
20269
diff
changeset
|
643 |
13053 | 644 (defun diary-name-pattern (string-array &optional fullname) |
645 "Convert an STRING-ARRAY, an array of strings to a pattern. | |
646 The pattern will match any of the strings, either entirely or abbreviated | |
647 to three characters. An abbreviated form will match with or without a period; | |
648 If the optional FULLNAME is t, abbreviations will not match, just the full | |
649 name." | |
650 (let ((pattern "")) | |
651 (calendar-for-loop i from 0 to (1- (length string-array)) do | |
652 (setq pattern | |
653 (concat | |
654 pattern | |
655 (if (string-equal pattern "") "" "\\|") | |
656 (aref string-array i) | |
657 (if fullname | |
658 "" | |
659 (concat | |
660 "\\|" | |
661 (substring (aref string-array i) 0 3) ".?"))))) | |
662 pattern)) | |
663 | |
664 (defvar marking-diary-entries nil | |
665 "True during the marking of diary entries, nil otherwise.") | |
666 | |
667 (defvar marking-diary-entry nil | |
668 "True during the marking of diary entries, if current entry is marking.") | |
669 | |
670 (defun mark-diary-entries () | |
671 "Mark days in the calendar window that have diary entries. | |
672 Each entry in the diary file visible in the calendar window is marked. | |
673 After the entries are marked, the hooks `nongregorian-diary-marking-hook' and | |
674 `mark-diary-entries-hook' are run." | |
675 (interactive) | |
676 (setq mark-diary-entries-in-calendar t) | |
677 (let ((d-file (substitute-in-file-name diary-file)) | |
678 (marking-diary-entries t)) | |
679 (if (and d-file (file-exists-p d-file)) | |
680 (if (file-readable-p d-file) | |
681 (save-excursion | |
682 (message "Marking diary entries...") | |
683 (set-buffer (find-file-noselect d-file t)) | |
684 (let ((d diary-date-forms) | |
685 (old-diary-syntax-table)) | |
686 (setq old-diary-syntax-table (syntax-table)) | |
687 (set-syntax-table diary-syntax-table) | |
688 (while d | |
689 (let* | |
690 ((date-form (if (equal (car (car d)) 'backup) | |
691 (cdr (car d)) | |
692 (car d)));; ignore 'backup directive | |
693 (dayname (diary-name-pattern calendar-day-name-array)) | |
694 (monthname | |
695 (concat | |
696 (diary-name-pattern calendar-month-name-array) | |
697 "\\|\\*")) | |
698 (month "[0-9]+\\|\\*") | |
699 (day "[0-9]+\\|\\*") | |
700 (year "[0-9]+\\|\\*") | |
701 (l (length date-form)) | |
702 (d-name-pos (- l (length (memq 'dayname date-form)))) | |
703 (d-name-pos (if (/= l d-name-pos) (+ 2 d-name-pos))) | |
704 (m-name-pos (- l (length (memq 'monthname date-form)))) | |
705 (m-name-pos (if (/= l m-name-pos) (+ 2 m-name-pos))) | |
706 (d-pos (- l (length (memq 'day date-form)))) | |
707 (d-pos (if (/= l d-pos) (+ 2 d-pos))) | |
708 (m-pos (- l (length (memq 'month date-form)))) | |
709 (m-pos (if (/= l m-pos) (+ 2 m-pos))) | |
710 (y-pos (- l (length (memq 'year date-form)))) | |
711 (y-pos (if (/= l y-pos) (+ 2 y-pos))) | |
712 (regexp | |
713 (concat | |
714 "\\(\\`\\|\^M\\|\n\\)\\(" | |
715 (mapconcat 'eval date-form "\\)\\(") | |
716 "\\)")) | |
717 (case-fold-search t)) | |
718 (goto-char (point-min)) | |
719 (while (re-search-forward regexp nil t) | |
720 (let* ((dd-name | |
721 (if d-name-pos | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
722 (buffer-substring-no-properties |
13053 | 723 (match-beginning d-name-pos) |
724 (match-end d-name-pos)))) | |
725 (mm-name | |
726 (if m-name-pos | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
727 (buffer-substring-no-properties |
13053 | 728 (match-beginning m-name-pos) |
729 (match-end m-name-pos)))) | |
730 (mm (string-to-int | |
731 (if m-pos | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
732 (buffer-substring-no-properties |
13053 | 733 (match-beginning m-pos) |
734 (match-end m-pos)) | |
735 ""))) | |
736 (dd (string-to-int | |
737 (if d-pos | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
738 (buffer-substring-no-properties |
13053 | 739 (match-beginning d-pos) |
740 (match-end d-pos)) | |
741 ""))) | |
742 (y-str (if y-pos | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
743 (buffer-substring-no-properties |
13053 | 744 (match-beginning y-pos) |
745 (match-end y-pos)))) | |
746 (yy (if (not y-str) | |
747 0 | |
748 (if (and (= (length y-str) 2) | |
749 abbreviated-calendar-year) | |
750 (let* ((current-y | |
751 (extract-calendar-year | |
752 (calendar-current-date))) | |
753 (y (+ (string-to-int y-str) | |
754 (* 100 | |
755 (/ current-y 100))))) | |
756 (if (> (- y current-y) 50) | |
757 (- y 100) | |
758 (if (> (- current-y y) 50) | |
759 (+ y 100) | |
760 y))) | |
761 (string-to-int y-str))))) | |
762 (if dd-name | |
763 (mark-calendar-days-named | |
764 (cdr (assoc (capitalize (substring dd-name 0 3)) | |
765 (calendar-make-alist | |
766 calendar-day-name-array | |
767 0 | |
768 '(lambda (x) (substring x 0 3)))))) | |
769 (if mm-name | |
770 (if (string-equal mm-name "*") | |
771 (setq mm 0) | |
772 (setq mm | |
773 (cdr (assoc | |
774 (capitalize | |
775 (substring mm-name 0 3)) | |
776 (calendar-make-alist | |
777 calendar-month-name-array | |
778 1 | |
779 '(lambda (x) (substring x 0 3))) | |
780 ))))) | |
781 (mark-calendar-date-pattern mm dd yy)))) | |
782 (setq d (cdr d)))) | |
783 (mark-sexp-diary-entries) | |
784 (run-hooks 'nongregorian-diary-marking-hook | |
785 'mark-diary-entries-hook) | |
786 (set-syntax-table old-diary-syntax-table) | |
787 (message "Marking diary entries...done"))) | |
788 (error "Your diary file is not readable!")) | |
789 (error "You don't have a diary file!")))) | |
790 | |
791 (defun mark-sexp-diary-entries () | |
792 "Mark days in the calendar window that have sexp diary entries. | |
793 Each entry in the diary file (or included files) visible in the calendar window | |
794 is marked. See the documentation for the function `list-sexp-diary-entries'." | |
795 (let* ((sexp-mark (regexp-quote sexp-diary-entry-symbol)) | |
796 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)\\(" | |
797 (regexp-quote sexp-mark) "(\\)\\|\\(" | |
798 (regexp-quote diary-nonmarking-symbol) | |
799 (regexp-quote sexp-mark) "(diary-remind\\)")) | |
800 (m) | |
801 (y) | |
802 (first-date) | |
803 (last-date)) | |
804 (save-excursion | |
805 (set-buffer calendar-buffer) | |
806 (setq m displayed-month) | |
807 (setq y displayed-year)) | |
808 (increment-calendar-month m y -1) | |
809 (setq first-date | |
810 (calendar-absolute-from-gregorian (list m 1 y))) | |
811 (increment-calendar-month m y 2) | |
812 (setq last-date | |
813 (calendar-absolute-from-gregorian | |
814 (list m (calendar-last-day-of-month m y) y))) | |
815 (goto-char (point-min)) | |
816 (while (re-search-forward s-entry nil t) | |
13075
8a67628f4574
(mark-sexp-diary-entries): Add \ for C-M-f's sake.
Richard M. Stallman <rms@gnu.org>
parents:
13053
diff
changeset
|
817 (if (char-equal (preceding-char) ?\() |
13053 | 818 (setq marking-diary-entry t) |
819 (setq marking-diary-entry nil)) | |
820 (re-search-backward "(") | |
821 (let ((sexp-start (point)) | |
822 (sexp) | |
823 (entry) | |
824 (entry-start) | |
825 (line-start)) | |
826 (forward-sexp) | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
827 (setq sexp (buffer-substring-no-properties sexp-start (point))) |
13053 | 828 (save-excursion |
829 (re-search-backward "\^M\\|\n\\|\\`") | |
830 (setq line-start (point))) | |
831 (forward-char 1) | |
832 (if (and (or (char-equal (preceding-char) ?\^M) | |
833 (char-equal (preceding-char) ?\n)) | |
834 (not (looking-at " \\|\^I"))) | |
835 (progn;; Diary entry consists only of the sexp | |
836 (backward-char 1) | |
837 (setq entry "")) | |
838 (setq entry-start (point)) | |
839 (re-search-forward "\^M\\|\n" nil t) | |
840 (while (looking-at " \\|\^I") | |
841 (re-search-forward "\^M\\|\n" nil t)) | |
842 (backward-char 1) | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
843 (setq entry (buffer-substring-no-properties entry-start (point))) |
13053 | 844 (while (string-match "[\^M]" entry) |
845 (aset entry (match-beginning 0) ?\n ))) | |
846 (calendar-for-loop date from first-date to last-date do | |
847 (if (diary-sexp-entry sexp entry | |
848 (calendar-gregorian-from-absolute date)) | |
849 (mark-visible-calendar-date | |
850 (calendar-gregorian-from-absolute date)))))))) | |
851 | |
852 (defun mark-included-diary-files () | |
853 "Mark the diary entries from other diary files with those of the diary file. | |
854 This function is suitable for use as the `mark-diary-entries-hook'; it enables | |
855 you to use shared diary files together with your own. The files included are | |
856 specified in the diary-file by lines of this form: | |
857 #include \"filename\" | |
858 This is recursive; that is, #include directives in diary files thus included | |
859 are obeyed. You can change the `#include' to some other string by | |
860 changing the variable `diary-include-string'." | |
861 (goto-char (point-min)) | |
862 (while (re-search-forward | |
863 (concat | |
864 "\\(\\`\\|\^M\\|\n\\)" | |
865 (regexp-quote diary-include-string) | |
866 " \"\\([^\"]*\\)\"") | |
867 nil t) | |
868 (let ((diary-file (substitute-in-file-name | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
869 (buffer-substring-no-properties |
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
870 (match-beginning 2) (match-end 2)))) |
13053 | 871 (mark-diary-entries-hook 'mark-included-diary-files)) |
872 (if (file-exists-p diary-file) | |
873 (if (file-readable-p diary-file) | |
874 (progn | |
875 (mark-diary-entries) | |
13877
44149f0bf44a
Replaced all uses of get-file-buffer with find-buffer-visiting.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13688
diff
changeset
|
876 (kill-buffer (find-buffer-visiting diary-file))) |
13053 | 877 (beep) |
878 (message "Can't read included diary file %s" diary-file) | |
879 (sleep-for 2)) | |
880 (beep) | |
881 (message "Can't find included diary file %s" diary-file) | |
882 (sleep-for 2)))) | |
883 (goto-char (point-min))) | |
884 | |
885 (defun mark-calendar-days-named (dayname) | |
886 "Mark all dates in the calendar window that are day DAYNAME of the week. | |
887 0 means all Sundays, 1 means all Mondays, and so on." | |
888 (save-excursion | |
889 (set-buffer calendar-buffer) | |
890 (let ((prev-month displayed-month) | |
891 (prev-year displayed-year) | |
892 (succ-month displayed-month) | |
893 (succ-year displayed-year) | |
894 (last-day) | |
895 (day)) | |
896 (increment-calendar-month succ-month succ-year 1) | |
897 (increment-calendar-month prev-month prev-year -1) | |
898 (setq day (calendar-absolute-from-gregorian | |
899 (calendar-nth-named-day 1 dayname prev-month prev-year))) | |
900 (setq last-day (calendar-absolute-from-gregorian | |
901 (calendar-nth-named-day -1 dayname succ-month succ-year))) | |
902 (while (<= day last-day) | |
903 (mark-visible-calendar-date (calendar-gregorian-from-absolute day)) | |
904 (setq day (+ day 7)))))) | |
905 | |
906 (defun mark-calendar-date-pattern (month day year) | |
907 "Mark all dates in the calendar window that conform to MONTH/DAY/YEAR. | |
908 A value of 0 in any position is a wildcard." | |
909 (save-excursion | |
910 (set-buffer calendar-buffer) | |
911 (let ((m displayed-month) | |
912 (y displayed-year)) | |
913 (increment-calendar-month m y -1) | |
914 (calendar-for-loop i from 0 to 2 do | |
915 (mark-calendar-month m y month day year) | |
916 (increment-calendar-month m y 1))))) | |
917 | |
918 (defun mark-calendar-month (month year p-month p-day p-year) | |
919 "Mark dates in the MONTH/YEAR that conform to pattern P-MONTH/P_DAY/P-YEAR. | |
920 A value of 0 in any position of the pattern is a wildcard." | |
921 (if (or (and (= month p-month) | |
922 (or (= p-year 0) (= year p-year))) | |
923 (and (= p-month 0) | |
924 (or (= p-year 0) (= year p-year)))) | |
925 (if (= p-day 0) | |
926 (calendar-for-loop | |
927 i from 1 to (calendar-last-day-of-month month year) do | |
928 (mark-visible-calendar-date (list month i year))) | |
929 (mark-visible-calendar-date (list month p-day year))))) | |
930 | |
931 (defun sort-diary-entries () | |
932 "Sort the list of diary entries by time of day." | |
933 (setq diary-entries-list (sort diary-entries-list 'diary-entry-compare))) | |
934 | |
935 (defun diary-entry-compare (e1 e2) | |
936 "Returns t if E1 is earlier than E2." | |
937 (or (calendar-date-compare e1 e2) | |
938 (and (calendar-date-equal (car e1) (car e2)) | |
939 (< (diary-entry-time (car (cdr e1))) | |
940 (diary-entry-time (car (cdr e2))))))) | |
941 | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
942 (defcustom diary-unknown-time |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
943 -9999 |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
944 "*Value returned by diary-entry-time when no time is found. |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
945 The default value -9999 causes entries with no recognizable time to be placed |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
946 before those with times; 9999 would place entries with no recognizable time |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
947 after those with times." |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
948 :type 'integer |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
949 :group 'diary) |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
950 |
13053 | 951 (defun diary-entry-time (s) |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
952 "Time at the beginning of the string S in a military-style integer. For |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
953 example, returns 1325 for 1:25pm. Returns `diary-unknown-time' (default value |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
954 -9999) if no time is recognized. The recognized forms are XXXX, X:XX, or |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
955 XX:XX (military time), and XXam, XXAM, XXpm, XXPM, XX:XXam, XX:XXAM XX:XXpm, |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
956 or XX:XXPM." |
19324
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
957 (let ((case-fold-search nil)) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
958 (cond ((string-match;; Military time |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
959 "^[ \t]*\\([0-9]?[0-9]\\):?\\([0-9][0-9]\\)\\(\\>\\|[^ap]\\)" s) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
960 (+ (* 100 (string-to-int |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
961 (substring s (match-beginning 1) (match-end 1)))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
962 (string-to-int (substring s (match-beginning 2) (match-end 2))))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
963 ((string-match;; Hour only XXam or XXpm |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
964 "^[ \t]*\\([0-9]?[0-9]\\)\\([ap]\\)m\\>" s) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
965 (+ (* 100 (% (string-to-int |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
966 (substring s (match-beginning 1) (match-end 1))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
967 12)) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
968 (if (equal ?a (downcase (aref s (match-beginning 2)))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
969 0 1200))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
970 ((string-match;; Hour and minute XX:XXam or XX:XXpm |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
971 "^[ \t]*\\([0-9]?[0-9]\\):\\([0-9][0-9]\\)\\([ap]\\)m\\>" s) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
972 (+ (* 100 (% (string-to-int |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
973 (substring s (match-beginning 1) (match-end 1))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
974 12)) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
975 (string-to-int (substring s (match-beginning 2) (match-end 2))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
976 (if (equal ?a (downcase (aref s (match-beginning 3)))) |
02a8fe146fa6
(diary-entry-time): Bind case-fold-search to nil.
Richard M. Stallman <rms@gnu.org>
parents:
18922
diff
changeset
|
977 0 1200))) |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
978 (t diary-unknown-time))));; Unrecognizable |
13053 | 979 |
980 (defun list-sexp-diary-entries (date) | |
981 "Add sexp entries for DATE from the diary file to `diary-entries-list'. | |
982 Also, Make them visible in the diary file. Returns t if any entries were | |
983 found. | |
984 | |
985 Sexp diary entries must be prefaced by a `sexp-diary-entry-symbol' (normally | |
986 `%%'). The form of a sexp diary entry is | |
987 | |
988 %%(SEXP) ENTRY | |
989 | |
990 Both ENTRY and DATE are globally available when the SEXP is evaluated. If the | |
991 SEXP yields the value nil, the diary entry does not apply. If it yields a | |
992 non-nil value, ENTRY will be taken to apply to DATE; if the non-nil value is a | |
993 string, that string will be the diary entry in the fancy diary display. | |
994 | |
995 For example, the following diary entry will apply to the 21st of the month | |
996 if it is a weekday and the Friday before if the 21st is on a weekend: | |
997 | |
998 &%%(let ((dayname (calendar-day-of-week date)) | |
999 (day (extract-calendar-day date))) | |
1000 (or | |
1001 (and (= day 21) (memq dayname '(1 2 3 4 5))) | |
1002 (and (memq day '(19 20)) (= dayname 5))) | |
1003 ) UIUC pay checks deposited | |
1004 | |
1005 A number of built-in functions are available for this type of diary entry: | |
1006 | |
1007 %%(diary-date MONTH DAY YEAR) text | |
1008 Entry applies if date is MONTH, DAY, YEAR if | |
1009 `european-calendar-style' is nil, and DAY, MONTH, YEAR if | |
1010 `european-calendar-style' is t. DAY, MONTH, and YEAR | |
1011 can be lists of integers, the constant t, or an integer. | |
1012 The constant t means all values. | |
1013 | |
17892
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1014 %%(diary-float MONTH DAYNAME N &optional DAY) text |
13053 | 1015 Entry will appear on the Nth DAYNAME of MONTH. |
1016 (DAYNAME=0 means Sunday, 1 means Monday, and so on; | |
1017 if N is negative it counts backward from the end of | |
1018 the month. MONTH can be a list of months, a single | |
17892
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1019 month, or t to specify all months. Optional DAY means |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1020 Nth DAYNAME of MONTH on or after/before DAY. DAY defaults |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1021 to 1 if N>0 and the last day of the month if N<0. |
13053 | 1022 |
1023 %%(diary-block M1 D1 Y1 M2 D2 Y2) text | |
1024 Entry will appear on dates between M1/D1/Y1 and M2/D2/Y2, | |
1025 inclusive. (If `european-calendar-style' is t, the | |
1026 order of the parameters should be changed to D1, M1, Y1, | |
1027 D2, M2, Y2.) | |
1028 | |
1029 %%(diary-anniversary MONTH DAY YEAR) text | |
1030 Entry will appear on anniversary dates of MONTH DAY, YEAR. | |
1031 (If `european-calendar-style' is t, the order of the | |
1032 parameters should be changed to DAY, MONTH, YEAR.) Text | |
1033 can contain %d or %d%s; %d will be replaced by the number | |
1034 of years since the MONTH DAY, YEAR and %s will be replaced | |
1035 by the ordinal ending of that number (that is, `st', `nd', | |
1036 `rd' or `th', as appropriate. The anniversary of February | |
1037 29 is considered to be March 1 in a non-leap year. | |
1038 | |
1039 %%(diary-cyclic N MONTH DAY YEAR) text | |
1040 Entry will appear every N days, starting MONTH DAY, YEAR. | |
1041 (If `european-calendar-style' is t, the order of the | |
1042 parameters should be changed to N, DAY, MONTH, YEAR.) Text | |
1043 can contain %d or %d%s; %d will be replaced by the number | |
1044 of repetitions since the MONTH DAY, YEAR and %s will | |
1045 be replaced by the ordinal ending of that number (that is, | |
1046 `st', `nd', `rd' or `th', as appropriate. | |
1047 | |
1048 %%(diary-remind SEXP DAYS &optional MARKING) text | |
1049 Entry is a reminder for diary sexp SEXP. DAYS is either a | |
1050 single number or a list of numbers indicating the number(s) | |
1051 of days before the event that the warning(s) should occur. | |
1052 If the current date is (one of) DAYS before the event | |
1053 indicated by EXPR, then a suitable message (as specified | |
1054 by `diary-remind-message') appears. In addition to the | |
1055 reminders beforehand, the diary entry also appears on | |
1056 the date itself. If optional MARKING is non-nil then the | |
1057 *reminders* are marked on the calendar. Marking of | |
1058 reminders is independent of whether the entry *itself* is | |
1059 a marking or nonmarking one. | |
1060 | |
1061 %%(diary-day-of-year) | |
1062 Diary entries giving the day of the year and the number of | |
1063 days remaining in the year will be made every day. Note | |
1064 that since there is no text, it makes sense only if the | |
1065 fancy diary display is used. | |
1066 | |
1067 %%(diary-iso-date) | |
1068 Diary entries giving the corresponding ISO commercial date | |
1069 will be made every day. Note that since there is no text, | |
1070 it makes sense only if the fancy diary display is used. | |
1071 | |
1072 %%(diary-french-date) | |
1073 Diary entries giving the corresponding French Revolutionary | |
1074 date will be made every day. Note that since there is no | |
1075 text, it makes sense only if the fancy diary display is used. | |
1076 | |
1077 %%(diary-islamic-date) | |
1078 Diary entries giving the corresponding Islamic date will be | |
1079 made every day. Note that since there is no text, it | |
1080 makes sense only if the fancy diary display is used. | |
1081 | |
1082 %%(diary-hebrew-date) | |
1083 Diary entries giving the corresponding Hebrew date will be | |
1084 made every day. Note that since there is no text, it | |
1085 makes sense only if the fancy diary display is used. | |
1086 | |
1087 %%(diary-astro-day-number) Diary entries giving the corresponding | |
1088 astronomical (Julian) day number will be made every day. | |
1089 Note that since there is no text, it makes sense only if the | |
1090 fancy diary display is used. | |
1091 | |
1092 %%(diary-julian-date) Diary entries giving the corresponding | |
1093 Julian date will be made every day. Note that since | |
1094 there is no text, it makes sense only if the fancy diary | |
1095 display is used. | |
1096 | |
1097 %%(diary-sunrise-sunset) | |
1098 Diary entries giving the local times of sunrise and sunset | |
1099 will be made every day. Note that since there is no text, | |
1100 it makes sense only if the fancy diary display is used. | |
1101 Floating point required. | |
1102 | |
1103 %%(diary-phases-of-moon) | |
1104 Diary entries giving the times of the phases of the moon | |
1105 will be when appropriate. Note that since there is no text, | |
1106 it makes sense only if the fancy diary display is used. | |
1107 Floating point required. | |
1108 | |
1109 %%(diary-yahrzeit MONTH DAY YEAR) text | |
1110 Text is assumed to be the name of the person; the date is | |
1111 the date of death on the *civil* calendar. The diary entry | |
1112 will appear on the proper Hebrew-date anniversary and on the | |
1113 day before. (If `european-calendar-style' is t, the order | |
1114 of the parameters should be changed to DAY, MONTH, YEAR.) | |
1115 | |
1116 %%(diary-rosh-hodesh) | |
1117 Diary entries will be made on the dates of Rosh Hodesh on | |
1118 the Hebrew calendar. Note that since there is no text, it | |
1119 makes sense only if the fancy diary display is used. | |
1120 | |
1121 %%(diary-parasha) | |
1122 Diary entries giving the weekly parasha will be made on | |
1123 every Saturday. Note that since there is no text, it | |
1124 makes sense only if the fancy diary display is used. | |
1125 | |
1126 %%(diary-omer) | |
1127 Diary entries giving the omer count will be made every day | |
13670
15c441f6d41a
(list-sexp-diary-entries): Doc fix.
Paul Eggert <eggert@twinsun.com>
parents:
13650
diff
changeset
|
1128 from Passover to Shavuot. Note that since there is no text, |
13053 | 1129 it makes sense only if the fancy diary display is used. |
1130 | |
1131 Marking these entries is *extremely* time consuming, so these entries are | |
1132 best if they are nonmarking." | |
1133 (let* ((mark (regexp-quote diary-nonmarking-symbol)) | |
1134 (sexp-mark (regexp-quote sexp-diary-entry-symbol)) | |
1135 (s-entry (concat "\\(\\`\\|\^M\\|\n\\)" mark "?" sexp-mark "(")) | |
1136 (entry-found)) | |
1137 (goto-char (point-min)) | |
1138 (while (re-search-forward s-entry nil t) | |
1139 (backward-char 1) | |
1140 (let ((sexp-start (point)) | |
1141 (sexp) | |
1142 (entry) | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1143 (specifier) |
13053 | 1144 (entry-start) |
1145 (line-start)) | |
1146 (forward-sexp) | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
1147 (setq sexp (buffer-substring-no-properties sexp-start (point))) |
13053 | 1148 (save-excursion |
1149 (re-search-backward "\^M\\|\n\\|\\`") | |
1150 (setq line-start (point))) | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1151 (setq specifier |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1152 (buffer-substring-no-properties (1+ line-start) (point))) |
13053 | 1153 (forward-char 1) |
1154 (if (and (or (char-equal (preceding-char) ?\^M) | |
1155 (char-equal (preceding-char) ?\n)) | |
1156 (not (looking-at " \\|\^I"))) | |
1157 (progn;; Diary entry consists only of the sexp | |
1158 (backward-char 1) | |
1159 (setq entry "")) | |
1160 (setq entry-start (point)) | |
1161 (re-search-forward "\^M\\|\n" nil t) | |
1162 (while (looking-at " \\|\^I") | |
1163 (re-search-forward "\^M\\|\n" nil t)) | |
1164 (backward-char 1) | |
13687
9a985bcde00e
Chnaged all occurrences of buffer-substring to buffer-substring-no-properties.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
13670
diff
changeset
|
1165 (setq entry (buffer-substring-no-properties entry-start (point))) |
13053 | 1166 (while (string-match "[\^M]" entry) |
1167 (aset entry (match-beginning 0) ?\n ))) | |
1168 (let ((diary-entry (diary-sexp-entry sexp entry date))) | |
1169 (if diary-entry | |
1170 (subst-char-in-region line-start (point) ?\^M ?\n t)) | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1171 (add-to-diary-list date diary-entry specifier) |
13053 | 1172 (setq entry-found (or entry-found diary-entry))))) |
1173 entry-found)) | |
1174 | |
1175 (defun diary-sexp-entry (sexp entry date) | |
1176 "Process a SEXP diary ENTRY for DATE." | |
1177 (let ((result (if calendar-debug-sexp | |
1178 (let ((stack-trace-on-error t)) | |
1179 (eval (car (read-from-string sexp)))) | |
1180 (condition-case nil | |
1181 (eval (car (read-from-string sexp))) | |
1182 (error | |
1183 (beep) | |
1184 (message "Bad sexp at line %d in %s: %s" | |
1185 (save-excursion | |
1186 (save-restriction | |
1187 (narrow-to-region 1 (point)) | |
1188 (goto-char (point-min)) | |
1189 (let ((lines 1)) | |
1190 (while (re-search-forward "\n\\|\^M" nil t) | |
1191 (setq lines (1+ lines))) | |
1192 lines))) | |
1193 diary-file sexp) | |
1194 (sleep-for 2)))))) | |
1195 (if (stringp result) | |
1196 result | |
1197 (if result | |
1198 entry | |
1199 nil)))) | |
1200 | |
1201 (defun diary-date (month day year) | |
1202 "Specific date(s) diary entry. | |
1203 Entry applies if date is MONTH, DAY, YEAR if `european-calendar-style' is nil, | |
1204 and DAY, MONTH, YEAR if `european-calendar-style' is t. DAY, MONTH, and YEAR | |
1205 can be lists of integers, the constant t, or an integer. The constant t means | |
1206 all values." | |
1207 (let* ((dd (if european-calendar-style | |
1208 month | |
1209 day)) | |
1210 (mm (if european-calendar-style | |
1211 day | |
1212 month)) | |
1213 (m (extract-calendar-month date)) | |
1214 (y (extract-calendar-year date)) | |
1215 (d (extract-calendar-day date))) | |
1216 (if (and | |
1217 (or (and (listp dd) (memq d dd)) | |
1218 (equal d dd) | |
1219 (eq dd t)) | |
1220 (or (and (listp mm) (memq m mm)) | |
1221 (equal m mm) | |
1222 (eq mm t)) | |
1223 (or (and (listp year) (memq y year)) | |
1224 (equal y year) | |
1225 (eq year t))) | |
1226 entry))) | |
1227 | |
1228 (defun diary-block (m1 d1 y1 m2 d2 y2) | |
1229 "Block diary entry. | |
1230 Entry applies if date is between two dates. Order of the parameters is | |
1231 M1, D1, Y1, M2, D2, Y2 `european-calendar-style' is nil, and | |
1232 D1, M1, Y1, D2, M2, Y2 if `european-calendar-style' is t." | |
1233 (let ((date1 (calendar-absolute-from-gregorian | |
1234 (if european-calendar-style | |
1235 (list d1 m1 y1) | |
1236 (list m1 d1 y1)))) | |
1237 (date2 (calendar-absolute-from-gregorian | |
1238 (if european-calendar-style | |
1239 (list d2 m2 y2) | |
1240 (list m2 d2 y2)))) | |
1241 (d (calendar-absolute-from-gregorian date))) | |
1242 (if (and (<= date1 d) (<= d date2)) | |
1243 entry))) | |
1244 | |
17892
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1245 (defun diary-float (month dayname n &optional day) |
13053 | 1246 "Floating diary entry--entry applies if date is the nth dayname of month. |
1247 Parameters are MONTH, DAYNAME, N. MONTH can be a list of months, the constant | |
1248 t, or an integer. The constant t means all months. If N is negative, count | |
17892
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1249 backward from the end of the month. |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1250 |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1251 An optional parameter DAY means the Nth DAYNAME on or after/before MONTH DAY." |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1252 ;; This is messy because the diary entry may apply, but the date on which it |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1253 ;; is based can be in a different month/year. For example, asking for the |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1254 ;; first Monday after December 30. For large values of |n| the problem is |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1255 ;; more grotesque. |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1256 (and (= dayname (calendar-day-of-week date)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1257 (let* ((m (extract-calendar-month date)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1258 (d (extract-calendar-day date)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1259 (y (extract-calendar-year date)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1260 (limit; last (n>0) or first (n<0) possible base date for entry |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1261 (calendar-nth-named-absday (- n) dayname m y d)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1262 (last-abs (if (> n 0) limit (+ limit 6))) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1263 (first-abs (if (> n 0) (- limit 6) limit)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1264 (last (calendar-gregorian-from-absolute last-abs)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1265 (first (calendar-gregorian-from-absolute first-abs)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1266 ; m1, d1 is first possible base date |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1267 (m1 (extract-calendar-month first)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1268 (d1 (extract-calendar-day first)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1269 (y1 (extract-calendar-year first)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1270 ; m2, d2 is last possible base date |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1271 (m2 (extract-calendar-month last)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1272 (d2 (extract-calendar-day last)) |
b3514551f08d
(diary-float): Rewritten to fix bug when base date
Richard M. Stallman <rms@gnu.org>
parents:
17626
diff
changeset
|
1273 (y2 (extract-calendar-year last))) |
18590
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1274 (if (or (and (= m1 m2) ; only possible base dates in one month |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1275 (or (and (listp month) (memq m1 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1276 (eq month t) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1277 (= m1 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1278 (let ((d (or day (if (> n 0) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1279 1 |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1280 (calendar-last-day-of-month m1 y1))))) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1281 (and (<= d1 d) (<= d d2)))) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1282 ;; only possible base dates straddle two months |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1283 (and (< m1 m2) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1284 (or |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1285 ;; m1, d1 works is a base date |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1286 (and |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1287 (or (and (listp month) (memq m1 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1288 (eq month t) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1289 (= m1 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1290 (<= d1 (or day (if (> n 0) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1291 1 |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1292 (calendar-last-day-of-month m1 y1))))) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1293 ;; m2, d2 works is a base date |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1294 (and (or (and (listp month) (memq m2 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1295 (eq month t) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1296 (= m2 month)) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1297 (<= (or day (if (> n 0) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1298 1 |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1299 (calendar-last-day-of-month m2 y2))) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1300 d2))))) |
7d2a26d2371d
(diary-float): Fix errors in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17892
diff
changeset
|
1301 entry)))) |
13053 | 1302 |
1303 (defun diary-anniversary (month day year) | |
1304 "Anniversary diary entry. | |
1305 Entry applies if date is the anniversary of MONTH, DAY, YEAR if | |
1306 `european-calendar-style' is nil, and DAY, MONTH, YEAR if | |
1307 `european-calendar-style' is t. Diary entry can contain `%d' or `%d%s'; the | |
1308 %d will be replaced by the number of years since the MONTH DAY, YEAR and the | |
1309 %s will be replaced by the ordinal ending of that number (that is, `st', `nd', | |
1310 `rd' or `th', as appropriate. The anniversary of February 29 is considered | |
1311 to be March 1 in non-leap years." | |
1312 (let* ((d (if european-calendar-style | |
1313 month | |
1314 day)) | |
1315 (m (if european-calendar-style | |
1316 day | |
1317 month)) | |
1318 (y (extract-calendar-year date)) | |
1319 (diff (- y year))) | |
1320 (if (and (= m 2) (= d 29) (not (calendar-leap-year-p y))) | |
1321 (setq m 3 | |
1322 d 1)) | |
1323 (if (and (> diff 0) (calendar-date-equal (list m d y) date)) | |
1324 (format entry diff (diary-ordinal-suffix diff))))) | |
1325 | |
1326 (defun diary-cyclic (n month day year) | |
1327 "Cycle diary entry--entry applies every N days starting at MONTH, DAY, YEAR. | |
1328 If `european-calendar-style' is t, parameters are N, DAY, MONTH, YEAR. | |
1329 ENTRY can contain `%d' or `%d%s'; the %d will be replaced by the number of | |
1330 years since the MONTH DAY, YEAR and the %s will be replaced by the ordinal | |
1331 ending of that number (that is, `st', `nd', `rd' or `th', as appropriate." | |
1332 (let* ((d (if european-calendar-style | |
1333 month | |
1334 day)) | |
1335 (m (if european-calendar-style | |
1336 day | |
1337 month)) | |
1338 (diff (- (calendar-absolute-from-gregorian date) | |
1339 (calendar-absolute-from-gregorian | |
1340 (list m d year)))) | |
1341 (cycle (/ diff n))) | |
1342 (if (and (>= diff 0) (zerop (% diff n))) | |
1343 (format entry cycle (diary-ordinal-suffix cycle))))) | |
1344 | |
1345 (defun diary-ordinal-suffix (n) | |
1346 "Ordinal suffix for N. (That is, `st', `nd', `rd', or `th', as appropriate.)" | |
1347 (if (or (memq (% n 100) '(11 12 13)) | |
1348 (< 3 (% n 10))) | |
1349 "th" | |
1350 (aref ["th" "st" "nd" "rd"] (% n 10)))) | |
1351 | |
1352 (defun diary-day-of-year () | |
1353 "Day of year and number of days remaining in the year of date diary entry." | |
1354 (calendar-day-of-year-string date)) | |
1355 | |
17626 | 1356 (defcustom diary-remind-message |
13053 | 1357 '("Reminder: Only " |
1358 (if (= 0 (% days 7)) | |
1359 (concat (int-to-string (/ days 7)) (if (= 7 days) " week" " weeks")) | |
1360 (concat (int-to-string days) (if (= 1 days) " day" " days"))) | |
1361 " until " | |
1362 diary-entry) | |
1363 "*Pseudo-pattern giving form of reminder messages in the fancy diary | |
1364 display. | |
1365 | |
1366 Used by the function `diary-remind', a pseudo-pattern is a list of | |
1367 expressions that can involve the keywords `days' (a number), `date' (a list of | |
17626 | 1368 month, day, year), and `diary-entry' (a string)." |
1369 :type 'sexp | |
1370 :group 'diary) | |
13053 | 1371 |
1372 (defun diary-remind (sexp days &optional marking) | |
1373 "Provide a reminder of a diary entry. | |
1374 SEXP is a diary-sexp. DAYS is either a single number or a list of numbers | |
1375 indicating the number(s) of days before the event that the warning(s) should | |
1376 occur on. If the current date is (one of) DAYS before the event indicated by | |
1377 SEXP, then a suitable message (as specified by `diary-remind-message' is | |
1378 returned. | |
1379 | |
1380 In addition to the reminders beforehand, the diary entry also appears on | |
1381 the date itself. | |
1382 | |
1383 If optional parameter MARKING is non-nil then the reminders are marked on the | |
1384 calendar. Marking of reminders is independent of whether the entry itself is | |
1385 a marking or nonmarking one." | |
1386 (let ((diary-entry)) | |
1387 (if (or (not marking-diary-entries) marking) | |
1388 (cond | |
1389 ((integerp days) | |
1390 (let ((date (calendar-gregorian-from-absolute | |
1391 (+ (calendar-absolute-from-gregorian date) days)))) | |
1392 (if (setq diary-entry (eval sexp)) | |
1393 (setq diary-entry (mapconcat 'eval diary-remind-message ""))))) | |
1394 ((and (listp days) days) | |
1395 (setq diary-entry (diary-remind sexp (car days) marking)) | |
1396 (if (not diary-entry) | |
1397 (setq diary-entry (diary-remind sexp (cdr days) marking)))))) | |
1398 (or diary-entry | |
1399 (and (or (not marking-diary-entries) marking-diary-entry) | |
1400 (eval sexp))))) | |
1401 | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1402 (defun add-to-diary-list (date string specifier) |
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1403 "Add the entry (DATE STRING SPECIFIER) to `diary-entries-list'. |
13053 | 1404 Do nothing if DATE or STRING is nil." |
1405 (and date string | |
1406 (setq diary-entries-list | |
20269
ca337d0a1553
(list-diary-entries, list-sexp-diary-entries, add-to-diary-list):
Karl Heuer <kwzh@gnu.org>
parents:
19324
diff
changeset
|
1407 (append diary-entries-list (list (list date string specifier)))))) |
13053 | 1408 |
1409 (defun make-diary-entry (string &optional nonmarking file) | |
1410 "Insert a diary entry STRING which may be NONMARKING in FILE. | |
1411 If omitted, NONMARKING defaults to nil and FILE defaults to diary-file." | |
1412 (find-file-other-window | |
1413 (substitute-in-file-name (if file file diary-file))) | |
1414 (goto-char (point-max)) | |
1415 (insert | |
1416 (if (bolp) "" "\n") | |
1417 (if nonmarking diary-nonmarking-symbol "") | |
1418 string " ")) | |
1419 | |
1420 (defun insert-diary-entry (arg) | |
1421 "Insert a diary entry for the date indicated by point. | |
1422 Prefix arg will make the entry nonmarking." | |
1423 (interactive "P") | |
1424 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t t) | |
1425 arg)) | |
1426 | |
1427 (defun insert-weekly-diary-entry (arg) | |
1428 "Insert a weekly diary entry for the day of the week indicated by point. | |
1429 Prefix arg will make the entry nonmarking." | |
1430 (interactive "P") | |
1431 (make-diary-entry (calendar-day-name (calendar-cursor-to-date t)) | |
1432 arg)) | |
1433 | |
1434 (defun insert-monthly-diary-entry (arg) | |
1435 "Insert a monthly diary entry for the day of the month indicated by point. | |
1436 Prefix arg will make the entry nonmarking." | |
1437 (interactive "P") | |
1438 (let* ((calendar-date-display-form | |
1439 (if european-calendar-style | |
1440 '(day " * ") | |
1441 '("* " day)))) | |
1442 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t) | |
1443 arg))) | |
1444 | |
1445 (defun insert-yearly-diary-entry (arg) | |
1446 "Insert an annual diary entry for the day of the year indicated by point. | |
1447 Prefix arg will make the entry nonmarking." | |
1448 (interactive "P") | |
1449 (let* ((calendar-date-display-form | |
1450 (if european-calendar-style | |
1451 '(day " " monthname) | |
1452 '(monthname " " day)))) | |
1453 (make-diary-entry (calendar-date-string (calendar-cursor-to-date t) t) | |
1454 arg))) | |
1455 | |
1456 (defun insert-anniversary-diary-entry (arg) | |
1457 "Insert an anniversary diary entry for the date given by point. | |
1458 Prefix arg will make the entry nonmarking." | |
1459 (interactive "P") | |
1460 (let* ((calendar-date-display-form | |
1461 (if european-calendar-style | |
1462 '(day " " month " " year) | |
1463 '(month " " day " " year)))) | |
1464 (make-diary-entry | |
1465 (format "%s(diary-anniversary %s)" | |
1466 sexp-diary-entry-symbol | |
1467 (calendar-date-string (calendar-cursor-to-date t) nil t)) | |
1468 arg))) | |
1469 | |
1470 (defun insert-block-diary-entry (arg) | |
1471 "Insert a block diary entry for the days between the point and marked date. | |
1472 Prefix arg will make the entry nonmarking." | |
1473 (interactive "P") | |
1474 (let* ((calendar-date-display-form | |
1475 (if european-calendar-style | |
1476 '(day " " month " " year) | |
1477 '(month " " day " " year))) | |
1478 (cursor (calendar-cursor-to-date t)) | |
1479 (mark (or (car calendar-mark-ring) | |
1480 (error "No mark set in this buffer"))) | |
1481 (start) | |
1482 (end)) | |
1483 (if (< (calendar-absolute-from-gregorian mark) | |
1484 (calendar-absolute-from-gregorian cursor)) | |
1485 (setq start mark | |
1486 end cursor) | |
1487 (setq start cursor | |
1488 end mark)) | |
1489 (make-diary-entry | |
1490 (format "%s(diary-block %s %s)" | |
1491 sexp-diary-entry-symbol | |
1492 (calendar-date-string start nil t) | |
1493 (calendar-date-string end nil t)) | |
1494 arg))) | |
1495 | |
1496 (defun insert-cyclic-diary-entry (arg) | |
1497 "Insert a cyclic diary entry starting at the date given by point. | |
1498 Prefix arg will make the entry nonmarking." | |
1499 (interactive "P") | |
1500 (let* ((calendar-date-display-form | |
1501 (if european-calendar-style | |
1502 '(day " " month " " year) | |
1503 '(month " " day " " year)))) | |
1504 (make-diary-entry | |
1505 (format "%s(diary-cyclic %d %s)" | |
1506 sexp-diary-entry-symbol | |
1507 (calendar-read "Repeat every how many days: " | |
1508 '(lambda (x) (> x 0))) | |
1509 (calendar-date-string (calendar-cursor-to-date t) nil t)) | |
1510 arg))) | |
1511 | |
13650 | 1512 (provide 'diary-lib) |
13053 | 1513 |
13650 | 1514 ;;; diary-lib.el ends here |