Mercurial > emacs
annotate lisp/calendar/calendar.el @ 1068:2fee5d1fe47e
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 01 Sep 1992 20:07:45 +0000 |
parents | 2619b7a9c11e |
children | 1c718ee07ac9 |
rev | line source |
---|---|
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
1 ;;; calendar.el --- Calendar functions. |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
2 |
957 | 3 ;;; Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
5 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> |
957 | 6 ;; Keywords: calendar, Gregorian calendar, Julian calendar, Hebrew calendar, |
7 ;; Islamic calendar, ISO calendar, Julian day number, diary, holidays | |
8 | |
9 (defconst calendar-version "Version 5, released August 10, 1992") | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
10 |
628 | 11 ;; This file is part of GNU Emacs. |
12 | |
13 ;; GNU Emacs is distributed in the hope that it will be useful, | |
14 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
15 ;; accepts responsibility to anyone for the consequences of using it | |
16 ;; or for whether it serves any particular purpose or works at all, | |
17 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
18 ;; License for full details. | |
19 | |
20 ;; Everyone is granted permission to copy, modify and redistribute | |
21 ;; GNU Emacs, but only under the conditions described in the | |
22 ;; GNU Emacs General Public License. A copy of this license is | |
23 ;; supposed to have been given to you along with GNU Emacs so you | |
24 ;; can know your rights and responsibilities. It should be in a | |
25 ;; file named COPYING. Among other things, the copyright notice | |
26 ;; and this notice must be preserved on all copies. | |
27 | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
28 ;;; Commentary: |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
29 |
957 | 30 ;; This collection of functions implements a calendar window. It |
31 ;; generates a calendar for the current month, together with the previous | |
32 ;; and coming months, or for any other three-month period. The calendar | |
33 ;; can be scrolled forward and backward in the window to show months in | |
34 ;; the past or future; the cursor can move forward and backward by days, | |
35 ;; weeks, or months, making it possible, for instance, to jump to the | |
36 ;; date a specified number of days, weeks, or months from the date under | |
37 ;; the cursor. The user can display a list of holidays and other notable | |
38 ;; days for the period shown; the notable days can be marked on the | |
39 ;; calendar, if desired. The user can also specify that dates having | |
40 ;; corresponding diary entries (in a file that the user specifies) be | |
41 ;; marked; the diary entries for any date can be viewed in a separate | |
42 ;; window. The diary and the notable days can be viewed independently of | |
43 ;; the calendar. Dates can be translated from the (usual) Gregorian | |
44 ;; calendar to the day of the year/days remaining in year, to the ISO | |
45 ;; commercial calendar, to the Julian (old style) calendar, to the Hebrew | |
46 ;; calendar, to the Islamic calendar, to the French Revolutionary calendar, | |
47 ;; to the Mayan calendar, and to the astronomical (Julian) day number. | |
48 ;; When floating point is available, times of sunrise/sunset can be displayed, | |
49 ;; as can the phases of the moon. Appointment notication for diary entries | |
50 ;; is available. | |
51 | |
52 ;; The following files are part of the calendar/diary code: | |
53 | |
54 ;; diary.el, diary-insert.el Diary functions | |
55 ;; holidays.el Holiday functions | |
56 ;; cal-french.el French Revolutionary calendar | |
57 ;; cal-mayan.el Mayan calendars | |
58 ;; solar.el Sunrise/sunset, equinoxes/solstices | |
59 ;; lunar.el Phases of the moon | |
60 ;; appt.el Appointment notification | |
628 | 61 |
62 ;; Comments, corrections, and improvements should be sent to | |
63 ;; Edward M. Reingold Department of Computer Science | |
64 ;; (217) 333-6733 University of Illinois at Urbana-Champaign | |
65 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue | |
66 ;; Urbana, Illinois 61801 | |
67 | |
68 ;; GNU Emacs users too numerous to list pointed out a variety of problems | |
69 ;; with earlier forms of the `infinite' sliding calendar and suggested some | |
70 ;; of the features included in this package. Especially significant in this | |
71 ;; regard was the suggestion of mark-diary-entries and view-diary-entries, | |
72 ;; together ideas for their implementation, by | |
73 ;; Michael S. Littman Cognitive Science Research Group | |
74 ;; (201) 829-5155 Bell Communications Research | |
75 ;; mlittman@wind.bellcore.com 445 South St. Box 1961 (2L-331) | |
76 ;; Morristown, NJ 07960 | |
77 | |
78 ;; The algorithms for the Hebrew calendar are those of the Rambam (Rabbi Moses | |
79 ;; Maimonides), from his Mishneh Torah, as implemented by | |
80 ;; Nachum Dershowitz Department of Computer Science | |
81 ;; (217) 333-4219 University of Illinois at Urbana-Champaign | |
82 ;; nachum@cs.uiuc.edu 1304 West Springfield Avenue | |
83 ;; Urbana, Illinois 61801 | |
84 | |
85 ;; Technical details of all the calendrical calculations can be found in | |
957 | 86 |
628 | 87 ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold, |
88 ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990), | |
957 | 89 ;; pages 899-928. ``Calendrical Calculations, Part II: Three Historical |
90 ;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen, | |
91 ;; Report Number UIUCDCS-R-92-1743, Department of Computer Science, | |
92 ;; University of Illinois, April, 1992. | |
93 | |
94 ;; Hard copies of these two papers can be obtained by sending email to | |
95 ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and | |
96 ;; the message BODY containing your mailing address (snail). | |
628 | 97 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
98 ;;; Code: |
628 | 99 |
957 | 100 ;;;###autoload |
628 | 101 (defvar view-diary-entries-initially nil |
957 | 102 "*If t, the diary entries for the current date will be displayed on entry. |
628 | 103 The diary is displayed in another window when the calendar is first displayed, |
104 if the current date is visible. The number of days of diary entries displayed | |
105 is governed by the variable `number-of-diary-entries'.") | |
106 | |
957 | 107 ;;;###autoload |
628 | 108 (defvar number-of-diary-entries 1 |
109 "*Specifies how many days of diary entries are to be displayed initially. | |
110 This variable affects the diary display when the command M-x diary is used, | |
111 or if the value of the variable `view-diary-entries-initially' is t. For | |
112 example, if the default value 1 is used, then only the current day's diary | |
113 entries will be displayed. If the value 2 is used, then both the current | |
114 day's and the next day's entries will be displayed. The value can also be | |
115 a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to | |
116 be displayed on Sunday, the current date's and the next day's diary entries | |
117 to be displayed Monday through Thursday, Friday through Monday's entries to | |
118 be displayed on Friday, and only Saturday's entries to be displayed on | |
119 Saturday. This variable does not affect the diary display with the `d' | |
120 command from the calendar; in that case, the prefix argument controls the | |
121 number of days of diary entries displayed.") | |
122 | |
957 | 123 ;;;###autoload |
628 | 124 (defvar mark-diary-entries-in-calendar nil |
125 "*If t, dates with diary entries will be marked in the calendar window. | |
126 The marking symbol is specified by the variable `diary-entry-marker'.") | |
127 | |
957 | 128 ;;;###autoload |
628 | 129 (defvar diary-entry-marker "+" |
130 "*The symbol used to mark dates that have diary entries.") | |
131 | |
957 | 132 ;;;###autoload |
628 | 133 (defvar view-calendar-holidays-initially nil |
134 "*If t, the holidays for the current three month period will be displayed | |
135 on entry. The holidays are displayed in another window when the calendar is | |
136 first displayed.") | |
137 | |
732 | 138 ;;;###autoload |
628 | 139 (defvar mark-holidays-in-calendar nil |
140 "*If t, dates of holidays will be marked in the calendar window. | |
141 The marking symbol is specified by the variable `calendar-holiday-marker'.") | |
142 | |
957 | 143 ;;;###autoload |
628 | 144 (defvar calendar-holiday-marker "*" |
145 "*The symbol used to mark notable dates in the calendar.") | |
146 | |
732 | 147 ;;;###autoload |
628 | 148 (defvar all-hebrew-calendar-holidays nil |
149 "*If nil, the holidays from the Hebrew calendar that are shown will | |
150 include only those days of such major interest as to appear on secular | |
151 calendars. If t, the holidays shown in the calendar will include all | |
152 special days that would be shown on a complete Hebrew calendar.") | |
153 | |
732 | 154 ;;;###autoload |
628 | 155 (defvar all-christian-calendar-holidays nil |
156 "*If nil, the holidays from the Christian calendar that are shown will | |
157 include only those days of such major interest as to appear on secular | |
158 calendars. If t, the holidays shown in the calendar will include all | |
159 special days that would be shown on a complete Christian calendar.") | |
160 | |
732 | 161 ;;;###autoload |
628 | 162 (defvar all-islamic-calendar-holidays nil |
163 "*If nil, the holidays from the Islamic calendar that are shown will | |
164 include only those days of such major interest as to appear on secular | |
165 calendars. If t, the holidays shown in the calendar will include all | |
166 special days that would be shown on a complete Islamic calendar.") | |
167 | |
957 | 168 ;;;###autoload |
169 (defvar calendar-load-hook nil | |
170 "*List of functions to be called after the calendar is first loaded. | |
171 This is the place to add key bindings to calendar-mode-map.") | |
172 | |
173 ;;;###autoload | |
628 | 174 (defvar initial-calendar-window-hook nil |
175 "*List of functions to be called when the calendar window is first opened. | |
176 The functions invoked are called after the calendar window is opened, but | |
177 once opened is never called again. Leaving the calendar with the `q' command | |
178 and reentering it will cause these functions to be called again.") | |
179 | |
957 | 180 ;;;###autoload |
628 | 181 (defvar today-visible-calendar-hook nil |
182 "*List of functions called whenever the current date is visible. | |
183 This can be used, for example, to replace today's date with asterisks; a | |
184 function `calendar-star-date' is included for this purpose: | |
185 (setq today-visible-calendar-hook 'calendar-star-date) | |
186 It could also be used to mark the current date with `='; a function is also | |
187 provided for this: | |
188 (setq today-visible-calendar-hook 'calendar-mark-today) | |
189 | |
190 The corresponding variable `today-invisible-calendar-hook' is the list of | |
191 functions called when the calendar function was called when the current | |
192 date is not visible in the window. | |
193 | |
194 Other than the use of the provided functions, the changing of any | |
195 characters in the calendar buffer by the hooks may cause the failure of the | |
196 functions that move by days and weeks.") | |
197 | |
957 | 198 ;;;###autoload |
628 | 199 (defvar today-invisible-calendar-hook nil |
200 "*List of functions called whenever the current date is not visible. | |
201 | |
202 The corresponding variable `today-visible-calendar-hook' is the list of | |
203 functions called when the calendar function was called when the current | |
204 date is visible in the window. | |
205 | |
206 Other than the use of the provided functions, the changing of any | |
207 characters in the calendar buffer by the hooks may cause the failure of the | |
208 functions that move by days and weeks.") | |
209 | |
957 | 210 ;;;###autoload |
628 | 211 (defvar diary-file "~/diary" |
212 "*Name of the file in which one's personal diary of dates is kept. | |
213 | |
214 The file's entries are lines in any of the forms | |
215 | |
216 MONTH/DAY | |
217 MONTH/DAY/YEAR | |
218 MONTHNAME DAY | |
219 MONTHNAME DAY, YEAR | |
220 DAYNAME | |
221 | |
222 at the beginning of the line; the remainder of the line is the diary entry | |
223 string for that date. MONTH and DAY are one or two digit numbers, YEAR is | |
224 a number and may be written in full or abbreviated to the final two digits. | |
225 If the date does not contain a year, it is generic and applies to any year. | |
226 DAYNAME entries apply to any date on which is on that day of the week. | |
227 MONTHNAME and DAYNAME can be spelled in full, abbreviated to three | |
228 characters (with or without a period), capitalized or not. Any of DAY, | |
229 MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year, | |
230 respectively. | |
231 | |
232 The European style (in which the day precedes the month) can be used | |
233 instead, if you execute `european-calendar' when in the calendar, or set | |
234 `european-calendar-style' to t in your .emacs file. The European forms are | |
235 | |
236 DAY/MONTH | |
237 DAY/MONTH/YEAR | |
238 DAY MONTHNAME | |
239 DAY MONTHNAME YEAR | |
240 DAYNAME | |
241 | |
242 To revert to the default American style from the European style, execute | |
243 `american-calendar' in the calendar. | |
244 | |
245 A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&') | |
246 to make that entry nonmarking--that is, it will not be marked on dates in | |
247 the calendar window but will appear in a diary window. | |
248 | |
249 Multiline diary entries are made by indenting lines after the first with | |
250 either a TAB or one or more spaces. | |
251 | |
252 Lines not in one the above formats are ignored. Here are some sample diary | |
253 entries (in the default American style): | |
254 | |
255 12/22/1988 Twentieth wedding anniversary!! | |
256 &1/1. Happy New Year! | |
257 10/22 Ruth's birthday. | |
258 21: Payday | |
259 Tuesday--weekly meeting with grad students at 10am | |
260 Supowit, Shen, Bitner, and Kapoor to attend. | |
261 1/13/89 Friday the thirteenth!! | |
262 &thu 4pm squash game with Lloyd. | |
263 mar 16 Dad's birthday | |
264 April 15, 1989 Income tax due. | |
265 &* 15 time cards due. | |
266 | |
267 If the first line of a diary entry consists only of the date or day name with | |
268 no trailing blanks or punctuation, then that line will not be displayed in the | |
269 diary window; only the continuation lines will be shown. For example, the | |
270 single diary entry | |
271 | |
272 02/11/1989 | |
273 Bill Blattner visits Princeton today | |
274 2pm Cognitive Studies Committee meeting | |
275 2:30-5:30 Lizzie at Lawrenceville for `Group Initiative' | |
276 4:00pm Jamie Tappenden | |
277 7:30pm Dinner at George and Ed's for Alan Ryan | |
278 7:30-10:00pm dance at Stewart Country Day School | |
279 | |
280 will appear in the diary window without the date line at the beginning. This | |
281 facility allows the diary window to look neater, but can cause confusion if | |
282 used with more than one day's entries displayed. | |
283 | |
284 Diary entries can be based on Lisp sexps. For example, the diary entry | |
285 | |
286 %%(diary-block 11 1 1990 11 10 1990) Vacation | |
287 | |
288 causes the diary entry \"Vacation\" to appear from November 1 through November | |
289 10, 1990. Other functions available are `diary-float', `diary-anniversary', | |
957 | 290 `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date', |
291 `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date', | |
292 `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon', | |
293 `diary-parasha', `diary-omer', `diary-rosh-hodesh', and | |
294 `diary-sabbath-candles'. See the documentation for the function | |
295 `list-sexp-diary-entries' for more details. | |
628 | 296 |
297 Diary entries based on the Hebrew and/or the Islamic calendar are also | |
298 possible, but because these are somewhat slow, they are ignored | |
299 unless you set the `nongregorian-diary-listing-hook' and the | |
300 `nongregorian-diary-marking-hook' appropriately. See the documentation | |
301 for these functions for details. | |
302 | |
303 Diary files can contain directives to include the contents of other files; for | |
304 details, see the documentation for the variable `list-diary-entries-hook'.") | |
305 | |
957 | 306 ;;;###autoload |
628 | 307 (defvar diary-nonmarking-symbol "&" |
308 "*The symbol used to indicate that a diary entry is not to be marked in the | |
309 calendar window.") | |
310 | |
957 | 311 ;;;###autoload |
628 | 312 (defvar hebrew-diary-entry-symbol "H" |
313 "*The symbol used to indicate that a diary entry is according to the | |
314 Hebrew calendar.") | |
315 | |
957 | 316 ;;;###autoload |
628 | 317 (defvar islamic-diary-entry-symbol "I" |
318 "*The symbol used to indicate that a diary entry is according to the | |
319 Islamic calendar.") | |
320 | |
957 | 321 ;;;###autoload |
628 | 322 (defvar diary-include-string "#include" |
323 "*The string used to indicate the inclusion of another file of diary entries | |
324 in diary-file. See the documentation for the function | |
325 `include-other-diary-files'.") | |
326 | |
957 | 327 ;;;###autoload |
628 | 328 (defvar sexp-diary-entry-symbol "%%" |
329 "*The string used to indicate a sexp diary entry in diary-file. | |
330 See the documentation for the function `list-sexp-diary-entries'.") | |
331 | |
957 | 332 ;;;###autoload |
628 | 333 (defvar abbreviated-calendar-year t |
334 "*Interpret a two-digit year DD in a diary entry as being either 19DD or | |
335 20DD, as appropriate, for the Gregorian calendar; similarly for the Hebrew and | |
336 Islamic calendars. If this variable is nil, years must be written in full.") | |
337 | |
957 | 338 ;;;###autoload |
628 | 339 (defvar european-calendar-style nil |
340 "*Use the European style of dates in the diary and in any displays. If this | |
341 variable is t, a date 1/2/1990 would be interpreted as February 1, 1990. | |
342 The accepted European date styles are | |
343 | |
344 DAY/MONTH | |
345 DAY/MONTH/YEAR | |
346 DAY MONTHNAME | |
347 DAY MONTHNAME YEAR | |
348 DAYNAME | |
349 | |
350 Names can be capitalized or not, written in full, or abbreviated to three | |
351 characters with or without a period.") | |
352 | |
957 | 353 ;;;###autoload |
628 | 354 (defvar american-date-diary-pattern |
355 '((month "/" day "[^/0-9]") | |
356 (month "/" day "/" year "[^0-9]") | |
357 (monthname " *" day "[^,0-9]") | |
358 (monthname " *" day ", *" year "[^0-9]") | |
359 (dayname "\\W")) | |
360 "*List of pseudo-patterns describing the American patterns of date used. | |
361 See the documentation of diary-date-forms for an explanantion.") | |
362 | |
957 | 363 ;;;###autoload |
628 | 364 (defvar european-date-diary-pattern |
365 '((day "/" month "[^/0-9]") | |
366 (day "/" month "/" year "[^0-9]") | |
367 (backup day " *" monthname "\\W+\\<[^*0-9]") | |
368 (day " *" monthname " *" year "[^0-9]") | |
369 (dayname "\\W")) | |
370 "*List of pseudo-patterns describing the European patterns of date used. | |
371 See the documentation of diary-date-forms for an explanantion.") | |
372 | |
957 | 373 ;;;###autoload |
628 | 374 (defvar diary-date-forms |
375 (if european-calendar-style | |
376 european-date-diary-pattern | |
377 american-date-diary-pattern) | |
378 "*List of pseudo-patterns describing the forms of date used in the diary. | |
379 The patterns on the list must be MUTUALLY EXCLUSIVE and must should not match | |
380 any portion of the diary entry itself, just the date component. | |
381 | |
382 A pseudo-pattern is a list of regular expressions and the keywords `month', | |
383 `day', `year', `monthname', and `dayname'. The keyword `monthname' will | |
384 match the name of the month, capitalized or not, or its three-letter | |
385 abbreviation, followed by a period or not; it will also match `*'. | |
386 Similarly, `dayname' will match the name of the day, capitalized or not, or | |
387 its three-letter abbreviation, followed by a period or not. The keywords | |
388 `month', `day', and `year' will match those numerical values, preceded by | |
389 arbitrarily many zeros; they will also match `*'. | |
390 | |
391 The matching of the diary entries with the date forms is done with the | |
392 standard syntax table from Fundamental mode, but with the `*' changed so | |
393 that it is a word constituent. | |
394 | |
395 If, to be mutually exclusive, a pseudo-pattern must match a portion of the | |
396 diary entry itself, the first element of the pattern MUST be `backup'. This | |
957 | 397 directive causes the date recognizer to back up to the beginning of the |
398 current word of the diary entry, so in no case can the pattern match more than | |
399 a portion of the first word of the diary entry.") | |
400 | |
401 ;;;###autoload | |
628 | 402 (defvar european-calendar-display-form |
957 | 403 '((if dayname (concat dayname ", ")) day " " monthname " " year) |
628 | 404 "*The pseudo-pattern that governs the way a Gregorian date is formatted |
405 in the European style. See the documentation of calendar-date-display-forms | |
406 for an explanantion.") | |
407 | |
957 | 408 ;;;###autoload |
628 | 409 (defvar american-calendar-display-form |
957 | 410 '((if dayname (concat dayname ", ")) monthname " " day ", " year) |
628 | 411 "*The pseudo-pattern that governs the way a Gregorian date is formatted |
412 in the American style. See the documentation of calendar-date-display-forms | |
413 for an explanantion.") | |
414 | |
957 | 415 ;;;###autoload |
628 | 416 (defvar calendar-date-display-form |
417 (if european-calendar-style | |
418 european-calendar-display-form | |
419 american-calendar-display-form) | |
420 "*The pseudo-pattern that governs the way a Gregorian date is formatted | |
421 as a string by the function `calendar-date-string'. A pseudo-pattern is a | |
422 list of expressions that can involve the keywords `month', `day', and | |
423 `year', all numbers in string form, and `monthname' and `dayname', both | |
424 alphabetic strings. For example, the ISO standard would use the pseudo- | |
425 pattern | |
426 | |
427 '(year \"-\" month \"-\" day) | |
428 | |
429 while a typical American form would be | |
430 | |
431 '(month \"/\" day \"/\" (substring year -2)) | |
432 | |
433 and | |
434 | |
435 '((format \"%9s, %9s %2s, %4s\" dayname monthname day year)) | |
436 | |
437 would give the usual American style in fixed-length fields. | |
438 | |
439 See the documentation of the function `calendar-date-string'.") | |
440 | |
957 | 441 ;;;###autoload |
442 (defvar calendar-time-display-form | |
443 '(12-hours ":" minutes am-pm | |
444 (if time-zone " (") time-zone (if time-zone ")")) | |
445 "*The pseudo-pattern that governs the way a time of day is formatted. | |
446 | |
447 A pseudo-pattern is a list of expressions that can involve the keywords | |
448 `12-hours', `24-hours', and `minutes', all numbers in string form, | |
449 and `am-pm' and `time-zone', both alphabetic strings. | |
450 | |
451 For example, the form | |
452 | |
453 '(24-hours \":\" minutes | |
454 (if time-zone \" (\") time-zone (if time-zone \")\")) | |
455 | |
456 would give military-style times like `21:07 (UT)'.") | |
457 | |
458 ;;;###autoload | |
459 (defvar calendar-latitude nil | |
460 "*Latitude of `calendar-location-name' in degrees, + north, - south. | |
461 For example, 40.7 for New York City.") | |
462 | |
463 ;;;###autoload | |
464 (defvar calendar-longitude nil | |
465 "*Longitude of `calendar-location-name' in degrees, + east, - west. | |
466 For example, -74.0 for New York City.") | |
467 | |
468 ;;;###autoload | |
469 (defvar calendar-location-name | |
470 '(let ((float-output-format "%.1f")) | |
471 (format "%s%s, %s%s" | |
472 (abs calendar-latitude) | |
473 (if (> calendar-latitude 0) "N" "S") | |
474 (abs calendar-longitude) | |
475 (if (> calendar-longitude 0) "E" "W"))) | |
476 "*An expression that evaluates to the name of the location at | |
477 `calendar-longitude', calendar-latitude'. Default value is just the latitude, | |
478 longitude pair.") | |
479 | |
480 ;;;###autoload | |
481 (defvar calendar-time-zone (car (current-time-zone)) | |
482 "*Number of minutes difference between local standard time at | |
483 `calendar-location-name' and Universal (Greenwich) Time. For example, -300 | |
484 for New York City, -480 for Los Angeles.") | |
485 | |
486 ;;;###autoload | |
487 (defvar calendar-standard-time-zone-name (car (nthcdr 2 (current-time-zone))) | |
488 "*Abbreviated name of standard time zone at `calendar-location-name'. | |
489 For example, \"EST\" in New York City, \"PST\" for Los Angeles.") | |
490 | |
491 ;;;###autoload | |
492 (defvar calendar-daylight-time-zone-name (car (nthcdr 3 (current-time-zone))) | |
493 "*Abbreviated name of daylight-savings time zone at `calendar-location-name'. | |
494 For example, \"EDT\" in New York City, \"PDT\" for Los Angeles.") | |
495 | |
496 ;;;###autoload | |
497 (defvar calendar-daylight-savings-starts | |
498 '(calendar-nth-named-day 1 0 4 year) | |
499 "*A sexp in the variable `year' that gives the Gregorian date, in the form | |
500 of a list (month day year), on which daylight savings time starts. This is | |
501 used to determine the starting date of daylight savings time for the holiday | |
502 list and for correcting times of day in the solar and lunar calculations. The | |
503 default value is the American rule of the first Sunday in April. | |
504 | |
505 For example, if daylight savings time is mandated to start on October 1, | |
506 you would set `calendar-daylight-savings-starts' to | |
507 | |
508 '(10 1 year) | |
509 | |
510 For a more complex example, if daylight savings time begins on the first of | |
511 Nisan on the Hebrew calendar, we would set `calendar-daylight-savings-starts' | |
512 to | |
513 | |
514 '(calendar-gregorian-from-absolute | |
515 (calendar-absolute-from-hebrew | |
516 (list 1 1 (+ year 3760)))) | |
517 | |
518 because Nisan is the first month in the Hebrew calendar.") | |
519 | |
520 ;;;###autoload | |
521 (defvar calendar-daylight-savings-ends | |
522 '(calendar-nth-named-day -1 0 10 year) | |
523 "*An expression in the variable `year' that gives the Gregorian date, in the | |
524 form of a list (month day year), on which daylight savings time ends. This | |
525 is used to determine the ending date of daylight savings time for the holiday | |
526 list and for correcting times of day in the solar and lunar calculations. | |
527 The default value is the American rule of the last Sunday in October. | |
528 See the documentation for `calendar-daylight-savings-starts' for other | |
529 examples.") | |
530 | |
628 | 531 (defun european-calendar () |
532 "Set the interpretation and display of dates to the European style." | |
533 (interactive) | |
534 (setq european-calendar-style t) | |
535 (setq calendar-date-display-form european-calendar-display-form) | |
536 (setq diary-date-forms european-date-diary-pattern) | |
537 (update-calendar-mode-line)) | |
538 | |
539 (defun american-calendar () | |
540 "Set the interpretation and display of dates to the American style." | |
541 (interactive) | |
542 (setq european-calendar-style nil) | |
543 (setq calendar-date-display-form american-calendar-display-form) | |
544 (setq diary-date-forms american-date-diary-pattern) | |
545 (update-calendar-mode-line)) | |
546 | |
957 | 547 ;;;###autoload |
548 (defvar print-diary-entries-hook 'lpr-buffer | |
549 "*List of functions to be called after a temporary buffer is prepared with | |
550 the diary entries currently visible in the diary buffer. The default just | |
551 does the printing. Other uses might include, for example, rearranging the | |
552 lines into order by day and time, saving the buffer instead of deleting it, or | |
553 changing the function used to do the printing.") | |
628 | 554 |
732 | 555 ;;;###autoload |
628 | 556 (defvar list-diary-entries-hook nil |
557 "*List of functions to be called after the diary file is culled for | |
558 relevant entries. It is to be used for diary entries that are not found in | |
559 the diary file. | |
560 | |
561 A function `include-other-diary-files' is provided for use as the value of | |
562 this hook. This function enables you to use shared diary files together | |
563 with your own. The files included are specified in the diary-file by lines | |
564 of the form | |
565 | |
566 #include \"filename\" | |
567 | |
568 This is recursive; that is, #include directives in files thus included are | |
569 obeyed. You can change the \"#include\" to some other string by changing | |
570 the variable `diary-include-string'. When you use `include-other-diary-files' | |
571 as part of the list-diary-entries-hook, you will probably also want to use the | |
572 function `mark-included-diary-files' as part of the mark-diary-entries-hook. | |
573 | |
574 For example, you could use | |
575 | |
576 (setq list-diary-entries-hook | |
957 | 577 '(include-other-diary-files sort-diary-entries)) |
628 | 578 (setq diary-display-hook 'fancy-diary-display) |
579 | |
580 in your .emacs file to cause the fancy diary buffer to be displayed with | |
581 diary entries from various included files, each day's entries sorted into | |
582 lexicographic order.") | |
583 | |
732 | 584 ;;;###autoload |
628 | 585 (defvar diary-display-hook 'simple-diary-display |
586 "*List of functions that handle the display of the diary. | |
587 | |
588 Ordinarily, this just displays the diary buffer (with holidays indicated in | |
589 the mode line), if there are any relevant entries. At the time these | |
590 functions are called, the variable `diary-entries-list' is a list, in order | |
591 by date, of all relevant diary entries in the form of ((MONTH DAY YEAR) | |
592 STRING), where string is the diary entry for the given date. This can be | |
593 used, for example, to handle appointment notification, prepare a different | |
594 buffer for display (perhaps combined with holidays), or produce hard copy | |
595 output. | |
596 | |
597 A function `fancy-diary-display' is provided as an alternative | |
598 choice for this hook; this function prepares a special noneditable diary | |
599 buffer with the relevant diary entries that has neat day-by-day arrangement | |
600 with headings. The fancy diary buffer will show the holidays unless the | |
601 variable `holidays-in-diary-buffer' is set to nil. Ordinarily, the fancy | |
602 diary buffer will not show days for which there are no diary entries, even | |
603 if that day is a holiday; if you want such days to be shown in the fancy | |
604 diary buffer, set the variable `diary-list-include-blanks' to t.") | |
605 | |
732 | 606 ;;;###autoload |
628 | 607 (defvar nongregorian-diary-listing-hook nil |
608 "*List of functions to be called for the diary file and included files as | |
609 they are processed for listing diary entries. You can use any or all of | |
957 | 610 `list-hebrew-diary-entries' and `list-islamic-diary-entries'. The |
611 documentation for these functions describes the style of such diary entries.") | |
612 | |
613 ;;;###autoload | |
628 | 614 (defvar mark-diary-entries-hook nil |
615 "*List of functions called after marking diary entries in the calendar. | |
616 | |
617 A function `mark-included-diary-files' is also provided for use as the | |
618 mark-diary-entries-hook; it enables you to use shared diary files together | |
619 with your own. The files included are specified in the diary-file by lines | |
620 of the form | |
621 #include \"filename\" | |
622 This is recursive; that is, #include directives in files thus included are | |
623 obeyed. You can change the \"#include\" to some other string by changing the | |
624 variable `diary-include-string'. When you use `mark-included-diary-files' as | |
625 part of the mark-diary-entries-hook, you will probably also want to use the | |
626 function `include-other-diary-files' as part of the list-diary-entries-hook.") | |
627 | |
732 | 628 ;;;###autoload |
628 | 629 (defvar nongregorian-diary-marking-hook nil |
630 "*List of functions to be called as the diary file and included files are | |
631 processed for marking diary entries. You can use either or both of | |
632 mark-hebrew-diary-entries and mark-islamic-diary-entries. The documentation | |
633 for these functions describes the style of such diary entries.") | |
634 | |
732 | 635 ;;;###autoload |
628 | 636 (defvar diary-list-include-blanks nil |
637 "*If nil, do not include days with no diary entry in the list of diary | |
638 entries. Such days will then not be shown in the the fancy diary buffer, | |
639 even if they are holidays.") | |
640 | |
957 | 641 ;;;###autoload |
628 | 642 (defvar holidays-in-diary-buffer t |
643 "*If t, the holidays will be indicated in the mode line of the diary buffer | |
644 (or in the fancy diary buffer next to the date). This slows down the diary | |
645 functions somewhat; setting it to nil will make the diary display faster.") | |
646 | |
957 | 647 ;;;###autoload |
648 (defvar general-holidays | |
649 '((fixed 1 1 "New Year's Day") | |
628 | 650 (float 1 1 3 "Martin Luther King Day") |
651 (fixed 2 2 "Ground Hog Day") | |
652 (fixed 2 14 "Valentine's Day") | |
653 (float 2 1 3 "President's Day") | |
654 (fixed 3 17 "St. Patrick's Day") | |
655 (fixed 4 1 "April Fool's Day") | |
656 (float 5 0 2 "Mother's Day") | |
657 (float 5 1 -1 "Memorial Day") | |
658 (fixed 6 14 "Flag Day") | |
659 (float 6 0 3 "Father's Day") | |
660 (fixed 7 4 "Independence Day") | |
661 (float 9 1 1 "Labor Day") | |
662 (float 10 1 2 "Columbus Day") | |
663 (fixed 10 31 "Halloween") | |
664 (fixed 11 11 "Veteran's Day") | |
957 | 665 (float 11 4 4 "Thanksgiving")) |
666 "*General holidays. Default value is for the United States. See the | |
667 documentation for `calendar-holidays' for details.") | |
668 | |
669 ;;;###autoload | |
670 (defvar local-holidays nil | |
671 "*Local holidays. | |
672 See the documentation for `calendar-holidays' for details.") | |
673 | |
674 ;;;###autoload | |
675 (defvar other-holidays nil | |
676 "*User defined holidays. | |
677 See the documentation for `calendar-holidays' for details.") | |
678 | |
679 ;;;###autoload | |
680 (defvar hebrew-holidays | |
681 '((rosh-hashanah-etc) | |
628 | 682 (if all-hebrew-calendar-holidays |
683 (julian 11 | |
684 (let* ((m displayed-month) | |
685 (y displayed-year) | |
686 (year)) | |
687 (increment-calendar-month m y -1) | |
688 (let ((year (extract-calendar-year | |
689 (calendar-julian-from-absolute | |
690 (calendar-absolute-from-gregorian | |
691 (list m 1 y)))))) | |
692 (if (zerop (% (1+ year) 4)) | |
693 22 | |
694 21))) "\"Tal Umatar\" (evening)")) | |
695 (if all-hebrew-calendar-holidays | |
696 (hanukkah) | |
697 (hebrew 9 25 "Hanukkah")) | |
698 (if all-hebrew-calendar-holidays | |
699 (hebrew 10 | |
700 (let ((h-year (extract-calendar-year | |
701 (calendar-hebrew-from-absolute | |
702 (calendar-absolute-from-gregorian | |
703 (list displayed-month 28 displayed-year)))))) | |
704 (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) | |
705 7) | |
706 6) | |
707 11 10)) | |
708 "Tzom Teveth")) | |
709 (if all-hebrew-calendar-holidays | |
710 (hebrew 11 15 "Tu B'Shevat")) | |
711 (if all-hebrew-calendar-holidays | |
712 (hebrew | |
713 11 | |
714 (let ((m displayed-month) | |
715 (y displayed-year)) | |
716 (increment-calendar-month m y 1) | |
717 (let* ((h-year (extract-calendar-year | |
718 (calendar-hebrew-from-absolute | |
719 (calendar-absolute-from-gregorian | |
720 (list m | |
721 (calendar-last-day-of-month m y) | |
722 y))))) | |
723 (s-s | |
724 (calendar-hebrew-from-absolute | |
725 (if (= | |
726 (% (calendar-absolute-from-hebrew | |
727 (list 7 1 h-year)) | |
728 7) | |
729 6) | |
730 (calendar-dayname-on-or-before | |
731 6 (calendar-absolute-from-hebrew | |
732 (list 11 17 h-year))) | |
733 (calendar-dayname-on-or-before | |
734 6 (calendar-absolute-from-hebrew | |
735 (list 11 16 h-year)))))) | |
736 (day (extract-calendar-day s-s))) | |
737 day)) | |
738 "Shabbat Shirah")) | |
739 (passover-etc) | |
740 (if (and all-hebrew-calendar-holidays | |
741 (let* ((m displayed-month) | |
742 (y displayed-year) | |
743 (year)) | |
744 (increment-calendar-month m y -1) | |
745 (let ((year (extract-calendar-year | |
746 (calendar-julian-from-absolute | |
747 (calendar-absolute-from-gregorian | |
748 (list m 1 y)))))) | |
749 (= 21 (% year 28))))) | |
750 (julian 3 26 "Kiddush HaHamah")) | |
751 (if all-hebrew-calendar-holidays | |
957 | 752 (tisha-b-av-etc))) |
753 "*Jewish holidays. | |
754 See the documentation for `calendar-holidays' for details.") | |
755 | |
756 ;;;###autoload | |
757 (defvar christian-holidays | |
758 '((if all-christian-calendar-holidays | |
759 (fixed 1 6 "Epiphany")) | |
760 (easter-etc) | |
761 (if all-christian-calendar-holidays | |
762 (greek-orthodox-easter)) | |
763 (if all-christian-calendar-holidays | |
764 (fixed 8 15 "Assumption")) | |
765 (if all-christian-calendar-holidays | |
766 (advent)) | |
767 (fixed 12 25 "Christmas") | |
768 (if all-christian-calendar-holidays | |
769 (julian 12 25 "Eastern Orthodox Christmas"))) | |
770 "*Christian holidays. | |
771 See the documentation for `calendar-holidays' for details.") | |
772 | |
773 ;;;###autoload | |
774 (defvar islamic-holidays | |
775 '((islamic 1 1 (format "Islamic New Year %d" | |
628 | 776 (let ((m displayed-month) |
777 (y displayed-year)) | |
778 (increment-calendar-month m y 1) | |
779 (extract-calendar-year | |
780 (calendar-islamic-from-absolute | |
781 (calendar-absolute-from-gregorian | |
782 (list m (calendar-last-day-of-month m y) y))))))) | |
783 (if all-islamic-calendar-holidays | |
784 (islamic 1 10 "Ashura")) | |
785 (if all-islamic-calendar-holidays | |
786 (islamic 3 12 "Mulad-al-Nabi")) | |
787 (if all-islamic-calendar-holidays | |
788 (islamic 7 26 "Shab-e-Mi'raj")) | |
789 (if all-islamic-calendar-holidays | |
790 (islamic 8 15 "Shab-e-Bara't")) | |
791 (islamic 9 1 "Ramadan Begins") | |
792 (if all-islamic-calendar-holidays | |
793 (islamic 9 27 "Shab-e Qadr")) | |
794 (if all-islamic-calendar-holidays | |
795 (islamic 10 1 "Id-al-Fitr")) | |
796 (if all-islamic-calendar-holidays | |
797 (islamic 12 10 "Id-al-Adha"))) | |
957 | 798 "*Islamic holidays. |
799 See the documentation for `calendar-holidays' for details.") | |
800 | |
801 ;;;###autoload | |
802 (defvar solar-holidays | |
803 '((if (fboundp 'atan) | |
804 (solar-equinoxes-solstices)) | |
805 (sexp (eval calendar-daylight-savings-starts) | |
806 "Daylight Savings Time Begins") | |
807 (sexp (eval calendar-daylight-savings-ends) | |
808 "Daylight Savings Time Ends")) | |
809 "*Sun-related holidays. | |
810 See the documentation for `calendar-holidays' for details.") | |
811 | |
812 ;;;###autoload | |
813 (defvar calendar-holidays | |
814 (append general-holidays local-holidays other-holidays | |
815 christian-holidays hebrew-holidays islamic-holidays | |
816 solar-holidays) | |
817 "*List of notable days for the command M-x holidays. | |
818 | |
819 Additional holidays are easy to add to the list, just put them in the list | |
820 `other-holidays' in your .emacs file. Similarly, by setting any of | |
821 `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays', | |
822 `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can | |
823 eliminate unwanted categories of holidays. The intention is that (in the US) | |
824 `local-holidays' be set in site-init.el and `other-holidays' be set by the | |
825 user. | |
826 | |
827 The possible holiday-forms are as follows: | |
628 | 828 |
829 (fixed MONTH DAY STRING) a fixed date on the Gregorian calendar | |
830 (float MONTH DAYNAME K STRING) the Kth DAYNAME in MONTH on the Gregorian | |
831 calendar (0 for Sunday, etc.); K<0 means | |
832 count back from the end of the month | |
833 (hebrew MONTH DAY STRING) a fixed date on the Hebrew calendar | |
834 (islamic MONTH DAY STRING) a fixed date on the Islamic calendar | |
835 (julian MONTH DAY STRING) a fixed date on the Julian calendar | |
957 | 836 (sexp SEXP STRING) SEXP is a Gregorian-date-valued expression |
837 in the variable `year'; if it evaluates to | |
838 a visible date, that's the holiday; if it | |
839 evaluates to nil, there's no holiday | |
628 | 840 (if BOOLEAN HOLIDAY-FORM &optional HOLIDAY-FORM) gives a choice between |
841 two holidays based on the value of BOOLEAN | |
842 (FUNCTION &optional ARGS) dates requiring special computation; ARGS, | |
843 if any, are passed in a list to the function | |
844 `calendar-holiday-function-FUNCTION' | |
845 | |
846 For example, to add Bastille Day, celebrated in France on July 14, add | |
847 | |
848 (fixed 7 14 \"Bastille Day\") | |
849 | |
850 to the list. To add Hurricane Supplication Day, celebrated in the Virgin | |
851 Islands on the fourth Monday in August, add | |
852 | |
853 (float 8 1 4 \"Hurricane Supplication Day\") | |
854 | |
855 to the list (the last Monday would be specified with `-1' instead of `4'). | |
957 | 856 To add the last day of Hanukkah to the list, use |
857 | |
858 (hebrew 10 2 \"Last day of Hanukkah\") | |
628 | 859 |
860 since the Hebrew months are numbered with 1 starting from Nisan, while to | |
861 add the Islamic feast celebrating Mohammed's birthday use | |
862 | |
863 (islamic 3 12 \"Mohammed's Birthday\") | |
864 | |
865 since the Islamic months are numbered from 1 starting with Muharram. To | |
866 add Thomas Jefferson's birthday, April 2, 1743 (Julian), use | |
867 | |
868 (julian 4 2 \"Jefferson's Birthday\") | |
869 | |
957 | 870 To include a holiday conditionally, use the if or the sexp form. For example, |
871 to include American presidential elections, which occur on the first Tuesday | |
628 | 872 after the first Monday in November of years divisble by 4, add |
873 | |
957 | 874 (sexp (if (zerop (% year 4)) |
875 (calendar-gregorian-from-absolute | |
876 (1+ (calendar-dayname-on-or-before | |
877 1 (+ 6 (calendar-absolute-from-gregorian | |
878 (list 11 1 year))))))) | |
879 \"US Presidential Election\") | |
880 | |
881 or | |
882 | |
628 | 883 (if (zerop (% displayed-year 4)) |
884 (fixed 11 | |
885 (extract-calendar-day | |
886 (calendar-gregorian-from-absolute | |
887 (1+ (calendar-dayname-on-or-before | |
888 1 (+ 6 (calendar-absolute-from-gregorian | |
889 (list 11 1 displayed-year))))))) | |
890 \"US Presidential Election\")) | |
891 | |
892 to the list. To include the phases of the moon, add | |
893 | |
894 (lunar-phases) | |
895 | |
896 to the holiday list, where `calendar-holiday-function-lunar-phases' is an | |
897 Emacs-Lisp function that you've written to return a (possibly empty) list of | |
898 the relevant VISIBLE dates with descriptive strings such as | |
899 | |
900 (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ) | |
901 | |
957 | 902 The fixed, float, hebrew, islamic, julian, sexp, and if forms are implemented |
903 by the inclusion of the functions `calendar-holiday-function-fixed', | |
628 | 904 `calendar-holiday-function-float', `calendar-holiday-function-hebrew', |
905 `calendar-holiday-function-islamic', `calendar-holiday-function-julian', | |
957 | 906 `calendar-holiday-function-sexp', and `calendar-holiday-function-if', |
907 respectively.") | |
628 | 908 |
909 (defconst calendar-buffer "*Calendar*" | |
910 "Name of the buffer used for the calendar.") | |
911 | |
912 (defconst holiday-buffer "*Holidays*" | |
913 "Name of the buffer used for the displaying the holidays.") | |
914 | |
915 (defconst fancy-diary-buffer "*Fancy Diary Entries*" | |
916 "Name of the buffer used for the optional fancy display of the diary.") | |
917 | |
918 (defmacro increment-calendar-month (mon yr n) | |
919 "Move the variables MON and YR to the month and year N months forward | |
920 if N is positive or backward if N is negative." | |
921 (` (let (( macro-y (+ (* (, yr) 12) (, mon) -1 (, n) ))) | |
922 (setq (, mon) (1+ (% macro-y 12) )) | |
923 (setq (, yr) (/ macro-y 12))))) | |
924 | |
925 (defmacro calendar-for-loop (var from init to final do &rest body) | |
926 "Execute a for loop." | |
927 (` (let (( (, var) (1- (, init)) )) | |
928 (while (>= (, final) (setq (, var) (1+ (, var)))) | |
929 (,@ body))))) | |
930 | |
931 (defmacro calendar-sum (index initial condition expression) | |
932 "For INDEX = INITIAL and successive integers, as long as CONDITION holds, | |
933 sum EXPRESSION." | |
934 (` (let (( (, index) (, initial)) | |
935 (sum 0)) | |
936 (while (, condition) | |
937 (setq sum (+ sum (, expression) )) | |
938 (setq (, index) (1+ (, index)))) | |
939 sum))) | |
940 | |
732 | 941 ;; The following macros are for speed; the code would be clearer if they |
942 ;; were functions, but they can be called thousands of times when | |
943 ;; looking up holidays or processing the diary. Here, for example, are the | |
944 ;; numbers of calls to calendar/diary/holiday functions in preparing the | |
945 ;; fancy diary display, for a moderately complex diary file, with functions | |
946 ;; used instead of macros. There were a total of 10000 such calls: | |
947 ;; | |
948 ;; 1934 extract-calendar-month | |
949 ;; 1852 extract-calendar-year | |
950 ;; 1819 extract-calendar-day | |
951 ;; 845 calendar-leap-year-p | |
952 ;; 837 calendar-day-number | |
953 ;; 775 calendar-absolute-from-gregorian | |
954 ;; 346 calendar-last-day-of-month | |
955 ;; 286 hebrew-calendar-last-day-of-month | |
956 ;; 188 hebrew-calendar-leap-year-p | |
957 ;; 180 hebrew-calendar-elapsed-days | |
958 ;; 163 hebrew-calendar-last-month-of-year | |
959 ;; 66 calendar-date-compare | |
960 ;; 65 hebrew-calendar-days-in-year | |
961 ;; 60 calendar-absolute-from-julian | |
962 ;; 50 calendar-absolute-from-hebrew | |
963 ;; 43 calendar-date-equal | |
964 ;; 38 calendar-gregorian-from-absolute | |
965 ;; . | |
966 ;; . | |
967 ;; . | |
968 ;; | |
969 ;; The use of these seven macros eliminates the overhead of 92% of the function | |
957 | 970 ;; calls; it's faster this way. For clarity, the defun form of each is given |
971 ;; in comments after the defmacro form. | |
732 | 972 |
628 | 973 (defmacro extract-calendar-month (date) |
974 "Extract the month part of DATE which has the form (month day year)." | |
975 (` (car (, date)))) | |
957 | 976 ;;(defun extract-calendar-month (date) |
977 ;; "Extract the month part of DATE which has the form (month day year)." | |
978 ;; (car date)) | |
628 | 979 |
980 (defmacro extract-calendar-day (date) | |
981 "Extract the day part of DATE which has the form (month day year)." | |
982 (` (car (cdr (, date))))) | |
957 | 983 ;;(defun extract-calendar-day (date) |
984 ;; "Extract the day part of DATE which has the form (month day year)." | |
985 ;; (car (cdr date))) | |
628 | 986 |
987 (defmacro extract-calendar-year (date) | |
988 "Extract the year part of DATE which has the form (month day year)." | |
989 (` (car (cdr (cdr (, date)))))) | |
957 | 990 ;;(defun extract-calendar-year (date) |
991 ;; "Extract the year part of DATE which has the form (month day year)." | |
992 ;; (car (cdr (cdr date)))) | |
628 | 993 |
732 | 994 (defmacro calendar-leap-year-p (year) |
995 "Returns t if YEAR is a Gregorian leap year." | |
996 (` (or | |
997 (and (= (% (, year) 4) 0) | |
998 (/= (% (, year) 100) 0)) | |
999 (= (% (, year) 400) 0)))) | |
957 | 1000 ;;(defun calendar-leap-year-p (year) |
1001 ;; "Returns t if YEAR is a Gregorian leap year." | |
1002 ;; (or | |
1003 ;; (and (= (% year 4) 0) | |
1004 ;; (/= (% year 100) 0)) | |
1005 ;; (= (% year 400) 0))) | |
732 | 1006 |
1007 (defmacro calendar-last-day-of-month (month year) | |
1008 "The last day in MONTH during YEAR." | |
1009 (` (if (and | |
1010 (, (macroexpand (` (calendar-leap-year-p (, year))))) | |
1011 (= (, month) 2)) | |
1012 29 | |
1013 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- (, month)))))) | |
957 | 1014 ;;(defun calendar-last-day-of-month (month year) |
1015 ;; "The last day in MONTH during YEAR." | |
1016 ;; (if (and (calendar-leap-year-p year) (= month 2)) | |
1017 ;; 29 | |
1018 ;; (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
732 | 1019 |
1020 (defmacro calendar-day-number (date) | |
1021 "Return the day number within the year of the date DATE. | |
1022 For example, (calendar-day-number '(1 1 1987)) returns the value 1, | |
1023 while (calendar-day-number '(12 31 1980)) returns 366." | |
1024 ;; | |
1025 ;; An explanation of the calculation can be found in PascAlgorithms by | |
1026 ;; Edward and Ruth Reingold, Scott-Foresman/Little, Brown, 1988. | |
1027 ;; | |
1028 (` (let* ((month (, (macroexpand (` (extract-calendar-month (, date)))))) | |
1029 (day (, (macroexpand (` (extract-calendar-day (, date)))))) | |
1030 (year (, (macroexpand (` (extract-calendar-year (, date)))))) | |
1031 (day-of-year (+ day (* 31 (1- month))))) | |
1032 (if (> month 2) | |
1033 (progn | |
1034 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10))) | |
1035 (if (, (macroexpand (` (calendar-leap-year-p year)))) | |
1036 (setq day-of-year (1+ day-of-year))))) | |
1037 day-of-year))) | |
957 | 1038 ;;(defun calendar-day-number (date) |
1039 ;; "Return the day number within the year of the date DATE. | |
1040 ;;For example, (calendar-day-number '(1 1 1987)) returns the value 1, | |
1041 ;;while (calendar-day-number '(12 31 1980)) returns 366." | |
1042 ;; (let* ((month (extract-calendar-month date)) | |
1043 ;; (day (extract-calendar-day date)) | |
1044 ;; (year (extract-calendar-year date)) | |
1045 ;; (day-of-year (+ day (* 31 (1- month))))) | |
1046 ;; (if (> month 2) | |
1047 ;; (progn | |
1048 ;; (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10))) | |
1049 ;; (if (calendar-leap-year-p year) | |
1050 ;; (setq day-of-year (1+ day-of-year))))) | |
1051 ;; day-of-year)) | |
732 | 1052 |
1053 (defmacro calendar-absolute-from-gregorian (date) | |
1054 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
1055 The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
1056 (` (let ((month (, (macroexpand (` (extract-calendar-month (, date)))))) | |
1057 (day (, (macroexpand (` (extract-calendar-day (, date)))))) | |
1058 (year (, (macroexpand (` (extract-calendar-year (, date))))))) | |
1059 (+ (, (macroexpand (` (calendar-day-number (, date)))));; Days this year | |
1060 (* 365 (1- year));; + Days in prior years | |
1061 (/ (1- year) 4);; + Julian leap years | |
1062 (- (/ (1- year) 100));; - century years | |
1063 (/ (1- year) 400)))));; + Gregorian leap years | |
957 | 1064 ;;(defun calendar-absolute-from-gregorian (date) |
1065 ;; "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
1066 ;;The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
1067 ;; (let ((month (extract-calendar-month date)) | |
1068 ;; (day (extract-calendar-day date)) | |
1069 ;; (year (extract-calendar-year date))) | |
1070 ;; (+ (calendar-day-number date);; Days this year | |
1071 ;; (* 365 (1- year));; + Days in prior years | |
1072 ;; (/ (1- year) 4);; + Julian leap years | |
1073 ;; (- (/ (1- year) 100));; - century years | |
1074 ;; (/ (1- year) 400))));; + Gregorian leap years | |
732 | 1075 |
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
1076 ;;;###autoload |
628 | 1077 (defun calendar (&optional arg) |
1078 "Display a three-month calendar in another window. | |
1079 The three months appear side by side, with the current month in the middle | |
1080 surrounded by the previous and next months. The cursor is put on today's date. | |
1081 | |
957 | 1082 If called with an optional prefix argument, prompts for month and year. |
1083 | |
628 | 1084 This function is suitable for execution in a .emacs file; appropriate setting |
1085 of the variable `view-diary-entries-initially' will cause the diary entries for | |
1086 the current date to be displayed in another window. The value of the variable | |
1087 `number-of-diary-entries' controls the number of days of diary entries | |
1088 displayed upon initial display of the calendar. | |
1089 | |
1090 An optional prefix argument ARG causes the calendar displayed to be ARG | |
1091 months in the future if ARG is positive or in the past if ARG is negative; | |
1092 in this case the cursor goes on the first day of the month. | |
1093 | |
1094 Once in the calendar window, future or past months can be moved into view. | |
1095 Arbitrary months can be displayed, or the calendar can be scrolled forward | |
1096 or backward. | |
1097 | |
1098 The cursor can be moved forward or backward by one day, one week, one month, | |
1099 or one year. All of these commands take prefix arguments which, when negative, | |
1100 cause movement in the opposite direction. For convenience, the digit keys | |
1101 and the minus sign are automatically prefixes. The window is replotted as | |
1102 necessary to display the desired date. | |
1103 | |
1104 Diary entries can be marked on the calendar or displayed in another window. | |
1105 | |
1106 Use M-x describe-mode for details of the key bindings in the calendar window. | |
1107 | |
1108 The Gregorian calendar is assumed. | |
1109 | |
957 | 1110 After loading the calendar, the hooks given by the variable |
1111 `calendar-load-hook' are run. This the place to add key bindings to the | |
1112 calendar-mode-map. | |
1113 | |
628 | 1114 After preparing the calendar window initially, the hooks given by the variable |
1115 `initial-calendar-window-hook' are run. | |
1116 | |
1117 The hooks given by the variable `today-visible-calendar-hook' are run | |
1118 everytime the calendar window gets scrolled, if the current date is visible | |
1119 in the window. If it is not visible, the hooks given by the variable | |
1120 `today-invisible-calendar-hook' are run. Thus, for example, setting | |
1121 `today-visible-calendar-hook' to 'calendar-star-date will cause today's date | |
1122 to be replaced by asterisks to highlight it whenever it is in the window." | |
1123 (interactive "P") | |
1124 (set-buffer (get-buffer-create calendar-buffer)) | |
1125 (calendar-mode) | |
1126 (setq calendar-window-configuration (current-window-configuration)) | |
957 | 1127 (let* ((completion-ignore-case t) |
1128 (pop-up-windows t) | |
1129 (split-height-threshold 1000) | |
1130 (date (calendar-current-date)) | |
1131 (month | |
1132 (if arg | |
1133 (cdr (assoc | |
1134 (capitalize | |
1135 (completing-read | |
1136 "Month name: " | |
1137 (mapcar 'list (append calendar-month-name-array nil)) | |
1138 nil t)) | |
1139 (calendar-make-alist calendar-month-name-array))) | |
1140 (extract-calendar-month date))) | |
1141 (year | |
1142 (if arg | |
1143 (calendar-read | |
1144 "Year (>0): " | |
1145 '(lambda (x) (> x 0)) | |
1146 (int-to-string (extract-calendar-year date))) | |
1147 (extract-calendar-year date)))) | |
628 | 1148 (pop-to-buffer calendar-buffer) |
957 | 1149 (generate-calendar-window month year) |
1150 (if (and view-diary-entries-initially (calendar-date-is-visible-p date)) | |
1151 (view-diary-entries | |
1152 (if (vectorp number-of-diary-entries) | |
1153 (aref number-of-diary-entries (calendar-day-of-week date)) | |
1154 number-of-diary-entries)))) | |
1155 (let* ((diary-buffer (get-file-buffer diary-file)) | |
1156 (diary-window (if diary-buffer (get-buffer-window diary-buffer))) | |
1157 (split-height-threshold (if diary-window 2 1000))) | |
1158 (if view-calendar-holidays-initially | |
1159 (list-calendar-holidays))) | |
628 | 1160 (run-hooks 'initial-calendar-window-hook)) |
1161 | |
1162 (autoload 'view-diary-entries "diary" | |
1163 "Prepare and display a buffer with diary entries. | |
1164 Searches the file diary-file for entries that match ARG days starting with | |
1165 the date indicated by the cursor position in the displayed three-month | |
1166 calendar." | |
1167 t) | |
1168 | |
957 | 1169 (autoload 'calendar-sunrise-sunset "solar" |
1170 "Local time of sunrise and sunset for date under cursor." | |
1171 t) | |
1172 | |
1173 (autoload 'calendar-phases-of-moon "lunar" | |
1174 "Create a buffer of the phases of the moon for the current calendar window." | |
1175 t) | |
1176 | |
1177 (autoload 'calendar-print-french-date "cal-french" | |
1178 "Show the French Revolutionary calendar equivalent of the date under the | |
1179 cursor." | |
1180 t) | |
1181 | |
1182 (autoload 'calendar-goto-french-date "cal-french" | |
1183 "Move cursor to French Revolutionary date." | |
1184 t) | |
1185 | |
1186 (autoload 'calendar-print-mayan-date "cal-mayan" | |
1187 "Show the Mayan long count, Tzolkin, and Haab equivalents of the date | |
1188 under the cursor." | |
1189 t) | |
1190 | |
1191 (autoload 'calendar-goto-mayan-long-count-date "cal-mayan" | |
1192 "Move cursor to Mayan long count date." | |
1193 t) | |
1194 | |
1195 (autoload 'calendar-next-haab-date "cal-mayan" | |
1196 "Move cursor to next instance of Mayan Haab date." | |
1197 t) | |
1198 | |
1199 (autoload 'calendar-previous-haab-date "cal-mayan" | |
1200 "Move cursor to previous instance of Mayan Haab date." | |
1201 t) | |
1202 | |
1203 (autoload 'calendar-next-tzolkin-date "cal-mayan" | |
1204 "Move cursor to next instance of Mayan Tzolkin date." | |
1205 t) | |
1206 | |
1207 (autoload 'calendar-previous-tzolkin-date "cal-mayan" | |
1208 "Move cursor to previous instance of Mayan Tzolkin date." | |
1209 t) | |
1210 | |
1211 (autoload 'calendar-next-calendar-round-date "cal-mayan" | |
1212 "Move cursor to next instance of Mayan Haab/Tzoklin combination." | |
1213 t) | |
1214 | |
1215 (autoload 'calendar-previous-calendar-round-date "cal-mayan" | |
1216 "Move cursor to previous instance of Mayan Haab/Tzoklin combination." | |
1217 t) | |
1218 | |
628 | 1219 (autoload 'show-all-diary-entries "diary" |
1220 "Show all of the diary entries in the diary-file. | |
1221 This function gets rid of the selective display of the diary-file so that | |
1222 all entries, not just some, are visible. If there is no diary buffer, one | |
1223 is created." | |
1224 t) | |
1225 | |
1226 (autoload 'mark-diary-entries "diary" | |
1227 "Mark days in the calendar window that have diary entries. | |
1228 Each entry in diary-file visible in the calendar window is marked." | |
1229 t) | |
1230 | |
957 | 1231 (autoload 'insert-diary-entry "diary-insert" |
628 | 1232 "Insert a diary entry for the date indicated by point." |
1233 t) | |
1234 | |
957 | 1235 (autoload 'insert-weekly-diary-entry "diary-insert" |
628 | 1236 "Insert a weekly diary entry for the day of the week indicated by point." |
1237 t) | |
1238 | |
957 | 1239 (autoload 'insert-monthly-diary-entry "diary-insert" |
628 | 1240 "Insert a monthly diary entry for the day of the month indicated by point." |
1241 t) | |
1242 | |
957 | 1243 (autoload 'insert-yearly-diary-entry "diary-insert" |
628 | 1244 "Insert an annual diary entry for the day of the year indicated by point." |
1245 t) | |
1246 | |
957 | 1247 (autoload 'insert-anniversary-diary-entry "diary-insert" |
628 | 1248 "Insert an anniversary diary entry for the date indicated by point." |
1249 t) | |
1250 | |
957 | 1251 (autoload 'insert-block-diary-entry "diary-insert" |
628 | 1252 "Insert a block diary entry for the dates indicated by point and mark." |
1253 t) | |
1254 | |
957 | 1255 (autoload 'insert-cyclic-diary-entry "diary-insert" |
628 | 1256 "Insert a cyclic diary entry starting at the date indicated by point." |
1257 t) | |
1258 | |
957 | 1259 (autoload 'insert-hebrew-diary-entry "diary-insert" |
628 | 1260 "Insert a diary entry for the Hebrew date corresponding to the date |
1261 indicated by point." | |
1262 t) | |
1263 | |
957 | 1264 (autoload 'insert-monthly-hebrew-diary-entry "diary-insert" |
628 | 1265 "Insert a monthly diary entry for the day of the Hebrew month corresponding |
1266 to the date indicated by point." | |
1267 t) | |
1268 | |
957 | 1269 (autoload 'insert-yearly-hebrew-diary-entry "diary-insert" |
628 | 1270 "Insert an annual diary entry for the day of the Hebrew year corresponding |
1271 to the date indicated by point." | |
1272 t) | |
1273 | |
957 | 1274 (autoload 'insert-islamic-diary-entry "diary-insert" |
628 | 1275 "Insert a diary entry for the Islamic date corresponding to the date |
1276 indicated by point." | |
1277 t) | |
1278 | |
957 | 1279 (autoload 'insert-monthly-islamic-diary-entry "diary-insert" |
628 | 1280 "Insert a monthly diary entry for the day of the Islamic month corresponding |
1281 to the date indicated by point." | |
1282 t) | |
1283 | |
957 | 1284 (autoload 'insert-yearly-islamic-diary-entry "diary-insert" |
628 | 1285 "Insert an annual diary entry for the day of the Islamic year corresponding |
1286 to the date indicated by point." | |
1287 t) | |
1288 | |
1289 (autoload 'list-calendar-holidays "holidays" | |
1290 "Create a buffer containing the holidays for the current calendar window. | |
1291 The holidays are those in the list `calendar-notable-days'. Returns t if any | |
1292 holidays are found, nil if not." | |
1293 t) | |
1294 | |
1295 (autoload 'mark-calendar-holidays "holidays" | |
1296 "Mark notable days in the calendar window." | |
1297 t) | |
1298 | |
1299 (autoload 'calendar-cursor-holidays "holidays" | |
1300 "Find holidays for the date specified by the cursor in the calendar window." | |
1301 t) | |
1302 | |
957 | 1303 (defun generate-calendar-window (&optional mon yr) |
1304 "Generate the calendar window for the current date. | |
1305 Or, for optional MON, YR." | |
628 | 1306 (let* ((buffer-read-only nil) |
1307 (today (calendar-current-date)) | |
1308 (month (extract-calendar-month today)) | |
1309 (day (extract-calendar-day today)) | |
1310 (year (extract-calendar-year today)) | |
957 | 1311 (today-visible |
1312 (or (not mon) | |
1313 (let ((offset (calendar-interval mon yr month year))) | |
1314 (and (<= offset 1) (>= offset -1))))) | |
628 | 1315 (day-in-week (calendar-day-of-week today))) |
1316 (update-calendar-mode-line) | |
957 | 1317 (if mon |
1318 (generate-calendar mon yr) | |
1319 (generate-calendar month year)) | |
628 | 1320 (calendar-cursor-to-visible-date |
1321 (if today-visible today (list displayed-month 1 displayed-year))) | |
1322 (set-buffer-modified-p nil) | |
1323 (or (one-window-p t) | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
1324 (/= (frame-width) (window-width)) |
628 | 1325 (shrink-window (- (window-height) 9))) |
1326 (sit-for 0) | |
1327 (and mark-holidays-in-calendar | |
1328 (mark-calendar-holidays) | |
1329 (sit-for 0)) | |
1330 (unwind-protect | |
1331 (if mark-diary-entries-in-calendar (mark-diary-entries)) | |
1332 (if today-visible | |
1333 (run-hooks 'today-visible-calendar-hook) | |
1334 (run-hooks 'today-invisible-calendar-hook))))) | |
1335 | |
1336 (defun generate-calendar (month year) | |
1337 "Generate a three-month Gregorian calendar centered around MONTH, YEAR." | |
1338 (if (< (+ month (* 12 (1- year))) 2) | |
1339 (error "Months before February, 1 AD are not available.")) | |
1340 (setq displayed-month month) | |
1341 (setq displayed-year year) | |
1342 (erase-buffer) | |
1343 (increment-calendar-month month year -1) | |
1344 (calendar-for-loop i from 0 to 2 do | |
1345 (generate-calendar-month month year (+ 5 (* 25 i))) | |
1346 (increment-calendar-month month year 1))) | |
1347 | |
1348 (defun generate-calendar-month (month year indent) | |
1349 "Produce a calendar for MONTH, YEAR on the Gregorian calendar. | |
1350 The calendar is inserted in the buffer starting at the line on which point | |
1351 is currently located, but indented INDENT spaces. The indentation is done | |
1352 from the first character on the line and does not disturb the first INDENT | |
1353 characters on the line." | |
1354 (let* ((first-day-of-month (calendar-day-of-week (list month 1 year))) | |
1355 (first-saturday (- 7 first-day-of-month)) | |
732 | 1356 (last (calendar-last-day-of-month month year)) |
1357 (heading (format "%s %d" (calendar-month-name month) year))) | |
628 | 1358 (goto-char (point-min)) |
1359 (calendar-insert-indented | |
732 | 1360 heading (+ indent (/ (- 20 (length heading)) 2)) t) |
628 | 1361 (calendar-insert-indented " S M Tu W Th F S" indent t) |
1362 (calendar-insert-indented "" indent);; Move to appropriate spot on line | |
1363 ;; Add blank days before the first of the month | |
1364 (calendar-for-loop i from 1 to first-day-of-month do | |
1365 (insert " ")) | |
1366 ;; Put in the days of the month | |
1367 (calendar-for-loop i from 1 to last do | |
1368 (insert (format "%2d " i)) | |
1369 (and (= (% i 7) (% first-saturday 7)) | |
1370 (/= i last) | |
1371 (calendar-insert-indented "" 0 t) ;; Force onto following line | |
1372 (calendar-insert-indented "" indent)))));; Go to proper spot | |
1373 | |
1374 (defun calendar-insert-indented (string indent &optional newline) | |
1375 "Insert STRING at column INDENT. | |
1376 If the optional parameter NEWLINE is t, leave point at start of next line, | |
1377 inserting a newline if there was no next line; otherwise, leave point after | |
1378 the inserted text. Value is always t." | |
1379 ;; Try to move to that column. | |
1380 (move-to-column indent) | |
1381 ;; If line is too short, indent out to that column. | |
1382 (if (< (current-column) indent) | |
1383 (indent-to indent)) | |
1384 (insert string) | |
1385 ;; Advance to next line, if requested. | |
1386 (if newline | |
1387 (progn | |
1388 (end-of-line) | |
1389 (if (eobp) | |
1390 (newline) | |
1391 (forward-line 1)))) | |
1392 t) | |
1393 | |
1394 (defun redraw-calendar () | |
1395 "Redraw the calendar display." | |
1396 (interactive) | |
1397 (let ((cursor-date (calendar-cursor-to-date))) | |
957 | 1398 (generate-calendar-window displayed-month displayed-year) |
628 | 1399 (calendar-cursor-to-visible-date cursor-date))) |
1400 | |
1401 (defvar calendar-mode-map nil) | |
1402 (if calendar-mode-map | |
1403 nil | |
1404 (setq calendar-mode-map (make-sparse-keymap)) | |
1405 (calendar-for-loop i from 0 to 9 do | |
1406 (define-key calendar-mode-map (int-to-string i) 'digit-argument)) | |
1407 (let ((l (list 'narrow-to-region 'mark-word 'mark-sexp 'mark-paragraph | |
1408 'mark-defun 'mark-whole-buffer 'mark-page 'kill-region | |
1409 'copy-region-as-kill 'downcase-region 'upcase-region | |
1410 'capitalize-region 'write-region))) | |
1411 (while (car l) | |
1412 (let ((k (where-is-internal (car l)))) | |
1413 (while (car k) | |
1414 (define-key calendar-mode-map (car k) 'calendar-not-implemented) | |
1415 (setq k (cdr k))) | |
1416 (setq l (cdr l))))) | |
1417 (define-key calendar-mode-map "-" 'negative-argument) | |
1418 (define-key calendar-mode-map "\C-x>" 'scroll-calendar-right) | |
1419 (define-key calendar-mode-map "\ev" 'scroll-calendar-right-three-months) | |
1420 (define-key calendar-mode-map "\C-x<" 'scroll-calendar-left) | |
1421 (define-key calendar-mode-map "\C-v" 'scroll-calendar-left-three-months) | |
1422 (define-key calendar-mode-map "\C-b" 'calendar-backward-day) | |
1423 (define-key calendar-mode-map "\C-p" 'calendar-backward-week) | |
957 | 1424 (define-key calendar-mode-map "\e{" 'calendar-backward-month) |
628 | 1425 (define-key calendar-mode-map "\C-x[" 'calendar-backward-year) |
1426 (define-key calendar-mode-map "\C-f" 'calendar-forward-day) | |
1427 (define-key calendar-mode-map "\C-n" 'calendar-forward-week) | |
957 | 1428 (define-key calendar-mode-map "\e}" 'calendar-forward-month) |
628 | 1429 (define-key calendar-mode-map "\C-x]" 'calendar-forward-year) |
1430 (define-key calendar-mode-map "\C-a" 'calendar-beginning-of-week) | |
1431 (define-key calendar-mode-map "\C-e" 'calendar-end-of-week) | |
1432 (define-key calendar-mode-map "\ea" 'calendar-beginning-of-month) | |
1433 (define-key calendar-mode-map "\ee" 'calendar-end-of-month) | |
1434 (define-key calendar-mode-map "\e<" 'calendar-beginning-of-year) | |
1435 (define-key calendar-mode-map "\e>" 'calendar-end-of-year) | |
1436 (define-key calendar-mode-map "\C-@" 'calendar-set-mark) | |
1437 (define-key calendar-mode-map "\C-x\C-x" 'calendar-exchange-point-and-mark) | |
957 | 1438 (define-key calendar-mode-map "\e=" 'calendar-count-days-region) |
1439 (define-key calendar-mode-map "gd" 'calendar-goto-date) | |
1440 (define-key calendar-mode-map "gj" 'calendar-goto-julian-date) | |
1441 (define-key calendar-mode-map "ga" 'calendar-goto-astro-day-number) | |
1442 (define-key calendar-mode-map "gh" 'calendar-goto-hebrew-date) | |
1443 (define-key calendar-mode-map "gi" 'calendar-goto-islamic-date) | |
1444 (define-key calendar-mode-map "gc" 'calendar-goto-iso-date) | |
1445 (define-key calendar-mode-map "gf" 'calendar-goto-french-date) | |
1446 (define-key calendar-mode-map "gml" 'calendar-goto-mayan-long-count-date) | |
1447 (define-key calendar-mode-map "gmpc" 'calendar-previous-calendar-round-date) | |
1448 (define-key calendar-mode-map "gmnc" 'calendar-next-calendar-round-date) | |
1449 (define-key calendar-mode-map "gmph" 'calendar-previous-haab-date) | |
1450 (define-key calendar-mode-map "gmnh" 'calendar-next-haab-date) | |
1451 (define-key calendar-mode-map "gmpt" 'calendar-previous-tzolkin-date) | |
1452 (define-key calendar-mode-map "gmnt" 'calendar-next-tzolkin-date) | |
1453 (define-key calendar-mode-map "S" 'calendar-sunrise-sunset) | |
1454 (define-key calendar-mode-map "M" 'calendar-phases-of-moon) | |
1455 (define-key calendar-mode-map " " 'scroll-other-window) | |
628 | 1456 (define-key calendar-mode-map "\C-c\C-l" 'redraw-calendar) |
957 | 1457 (define-key calendar-mode-map "." 'calendar-current-month) |
1458 (define-key calendar-mode-map "o" 'calendar-other-month) | |
1459 (define-key calendar-mode-map "q" 'exit-calendar) | |
1460 (define-key calendar-mode-map "a" 'list-calendar-holidays) | |
1461 (define-key calendar-mode-map "h" 'calendar-cursor-holidays) | |
1462 (define-key calendar-mode-map "x" 'mark-calendar-holidays) | |
1463 (define-key calendar-mode-map "u" 'calendar-unmark) | |
1464 (define-key calendar-mode-map "m" 'mark-diary-entries) | |
1465 (define-key calendar-mode-map "d" 'view-diary-entries) | |
1466 (define-key calendar-mode-map "s" 'show-all-diary-entries) | |
1467 (define-key calendar-mode-map "pd" 'calendar-print-day-of-year) | |
1468 (define-key calendar-mode-map "pc" 'calendar-print-iso-date) | |
1469 (define-key calendar-mode-map "pj" 'calendar-print-julian-date) | |
1470 (define-key calendar-mode-map "pa" 'calendar-print-astro-day-number) | |
1471 (define-key calendar-mode-map "ph" 'calendar-print-hebrew-date) | |
1472 (define-key calendar-mode-map "pi" 'calendar-print-islamic-date) | |
1473 (define-key calendar-mode-map "pf" 'calendar-print-french-date) | |
1474 (define-key calendar-mode-map "pm" 'calendar-print-mayan-date) | |
1475 (define-key calendar-mode-map "id" 'insert-diary-entry) | |
1476 (define-key calendar-mode-map "iw" 'insert-weekly-diary-entry) | |
1477 (define-key calendar-mode-map "im" 'insert-monthly-diary-entry) | |
1478 (define-key calendar-mode-map "iy" 'insert-yearly-diary-entry) | |
1479 (define-key calendar-mode-map "ia" 'insert-anniversary-diary-entry) | |
1480 (define-key calendar-mode-map "ib" 'insert-block-diary-entry) | |
1481 (define-key calendar-mode-map "ic" 'insert-cyclic-diary-entry) | |
1482 (define-key calendar-mode-map "ihd" 'insert-hebrew-diary-entry) | |
1483 (define-key calendar-mode-map "ihm" 'insert-monthly-hebrew-diary-entry) | |
1484 (define-key calendar-mode-map "ihy" 'insert-yearly-hebrew-diary-entry) | |
1485 (define-key calendar-mode-map "iid" 'insert-islamic-diary-entry) | |
1486 (define-key calendar-mode-map "iim" 'insert-monthly-islamic-diary-entry) | |
1487 (define-key calendar-mode-map "iiy" 'insert-yearly-islamic-diary-entry) | |
1488 (define-key calendar-mode-map "?" 'describe-calendar-mode)) | |
628 | 1489 |
1490 (defun describe-calendar-mode () | |
1491 "Create a help buffer with a brief description of the calendar-mode." | |
1492 (interactive) | |
1493 (with-output-to-temp-buffer "*Help*" | |
1494 (princ | |
1495 (format | |
1496 "Calendar Mode:\nFor a complete description, type %s\n%s\n" | |
1497 (substitute-command-keys | |
1498 "\\<calendar-mode-map>\\[describe-mode] from within the calendar") | |
1499 (substitute-command-keys "\\{calendar-mode-map}"))) | |
1500 (print-help-return-message))) | |
1501 | |
1502 ;; Calendar mode is suitable only for specially formatted data. | |
1503 (put 'calendar-mode 'mode-class 'special) | |
1504 | |
1505 (defvar calendar-mode-line-format | |
957 | 1506 (list |
1507 (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-left]") | |
1508 "Calendar" | |
1509 (substitute-command-keys "\\<calendar-mode-map>\\[describe-calendar-mode] help/\\[calendar-other-month] other/\\[calendar-current-month] current") | |
1510 '(calendar-date-string (calendar-current-date) t) | |
1511 (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-right]")) | |
628 | 1512 "The mode line of the calendar buffer.") |
1513 | |
1514 (defun calendar-mode () | |
957 | 1515 "A major mode for the calendar window. |
628 | 1516 |
1517 The commands for cursor movement are:\\<calendar-mode-map> | |
1518 | |
1519 \\[calendar-forward-day] one day forward \\[calendar-backward-day] one day backward | |
1520 \\[calendar-forward-week] one week forward \\[calendar-backward-week] one week backward | |
1521 \\[calendar-forward-month] one month forward \\[calendar-backward-month] one month backward | |
1522 \\[calendar-forward-year] one year forward \\[calendar-backward-year] one year backward | |
1523 \\[calendar-beginning-of-week] beginning of week \\[calendar-end-of-week] end of week | |
1524 \\[calendar-beginning-of-month] beginning of month \\[calendar-end-of-month] end of month | |
1525 \\[calendar-beginning-of-year] beginning of year \\[calendar-end-of-year] end of year | |
957 | 1526 |
1527 \\[calendar-goto-date] go to date | |
1528 | |
1529 \\[calendar-goto-julian-date] go to Julian date \\[calendar-goto-astro-day-number] go to astronomical (Julian) day number | |
628 | 1530 \\[calendar-goto-hebrew-date] go to Hebrew date \\[calendar-goto-islamic-date] go to Islamic date |
957 | 1531 \\[calendar-goto-iso-date] go to ISO date \\[calendar-goto-french-date] go to French Revolutionary date |
1532 | |
1533 \\[calendar-goto-mayan-long-count-date] go to Mayan Long Count date | |
1534 \\[calendar-next-haab-date] go to next occurrence of Mayan Haab date | |
1535 \\[calendar-previous-haab-date] go to previous occurrence of Mayan Haab date | |
1536 \\[calendar-next-tzolkin-date] go to next occurrence of Mayan Tzolkin date | |
1537 \\[calendar-previous-tzolkin-date] go to previous occurrence of Mayan Tzolkin date | |
1538 \\[calendar-next-calendar-round-date] go to next occurrence of Mayan Calendar Round date | |
1539 \\[calendar-previous-calendar-round-date] go to previous occurrence of Mayan Calendar Round date | |
628 | 1540 |
1541 You can mark a date in the calendar and switch the point and mark: | |
957 | 1542 |
628 | 1543 \\[calendar-set-mark] mark date \\[calendar-exchange-point-and-mark] exchange point and mark |
957 | 1544 |
628 | 1545 You can determine the number of days (inclusive) between the point and mark by |
957 | 1546 |
628 | 1547 \\[calendar-count-days-region] count days in the region |
1548 | |
1549 The commands for calendar movement are: | |
1550 | |
1551 \\[scroll-calendar-right] scroll one month right \\[scroll-calendar-left] scroll one month left | |
1552 \\[scroll-calendar-right-three-months] scroll 3 months right \\[scroll-calendar-left-three-months] scroll 3 months left | |
1553 \\[calendar-current-month] display current month \\[calendar-other-month] display another month | |
1554 | |
1555 Whenever it makes sense, the above commands take prefix arguments that | |
1556 multiply their affect. For convenience, the digit keys and the minus sign | |
1557 are bound to digit-argument, so they need not be prefixed with ESC. | |
1558 | |
1559 If the calendar window somehow becomes corrupted, it can be regenerated with | |
1560 | |
1561 \\[redraw-calendar] redraw the calendar | |
1562 | |
1563 The following commands deal with holidays and other notable days: | |
1564 | |
1565 \\[calendar-cursor-holidays] give holidays for the date specified by the cursor | |
1566 \\[mark-calendar-holidays] mark notable days | |
1567 \\[calendar-unmark] unmark dates | |
1568 \\[list-calendar-holidays] display notable days | |
1569 | |
1570 The command M-x holidays causes the notable dates for the current month, and | |
1571 the preceding and succeeding months, to be displayed, independently of the | |
1572 calendar. | |
1573 | |
1574 The following commands control the diary: | |
1575 | |
1576 \\[mark-diary-entries] mark diary entries \\[calendar-unmark] unmark dates | |
1577 \\[view-diary-entries] display diary entries \\[show-all-diary-entries] show all diary entries | |
1578 \\[print-diary-entries] print diary entries | |
1579 | |
1580 Displaying the diary entries causes the diary entries from the diary-file | |
1581 (for the date indicated by the cursor in the calendar window) to be | |
1582 displayed in another window. This function takes an integer argument that | |
1583 specifies the number of days of calendar entries to be displayed, starting | |
1584 with the date indicated by the cursor. | |
1585 | |
1586 The command \\[print-diary-entries] prints the diary buffer (as it appears) | |
1587 on the line printer. | |
1588 | |
1589 The command M-x diary causes the diary entries for the current date to be | |
1590 displayed, independently of the calendar. The number of days of entries is | |
1591 governed by number-of-diary-entries. | |
1592 | |
1593 The format of the entries in the diary file is described in the | |
1594 documentation string for the variable diary-file. | |
1595 | |
1596 When diary entries are in view in the window, they can be edited. It is | |
1597 important to keep in mind that the buffer displayed contains the entire | |
1598 diary file, but with portions of it concealed from view. This means, for | |
1599 instance, that the forward-char command can put the cursor at what appears | |
1600 to be the end of the line, but what is in reality the middle of some | |
1601 concealed line. BE CAREFUL WHEN EDITING THE DIARY ENTRIES! (Inserting | |
1602 additional lines or adding/deleting characters in the middle of a visible | |
1603 line will not cause problems; watch out for end-of-line, however--it may | |
1604 put you at the end of a concealed line far from where the cursor appears to | |
1605 be!) BEFORE EDITING THE DIARY IT IS BEST TO DISPLAY THE ENTIRE FILE WITH | |
1606 show-all-diary-entries. BE SURE TO WRITE THE FILE BEFORE EXITING FROM THE | |
1607 CALENDAR. | |
1608 | |
1609 The following commands assist in making diary entries: | |
1610 | |
1611 \\[insert-diary-entry] insert a diary entry for the selected date | |
1612 \\[insert-weekly-diary-entry] insert a diary entry for the selected day of the week | |
1613 \\[insert-monthly-diary-entry] insert a diary entry for the selected day of the month | |
1614 \\[insert-yearly-diary-entry] insert a diary entry for the selected day of the year | |
1615 \\[insert-block-diary-entry] insert a diary entry for the block days between point and mark | |
1616 \\[insert-anniversary-diary-entry] insert an anniversary diary entry for the selected date | |
1617 \\[insert-cyclic-diary-entry] insert a cyclic diary entry | |
1618 | |
1619 There are corresponding commands to assist in making Hebrew- or Islamic-date | |
1620 diary entries: | |
1621 | |
1622 \\[insert-hebrew-diary-entry] insert a diary entry for the Hebrew date corresponding | |
1623 to the selected date | |
1624 \\[insert-monthly-hebrew-diary-entry] insert a diary entry for the day of the Hebrew month | |
1625 corresponding to the selected day | |
1626 \\[insert-yearly-hebrew-diary-entry] insert a diary entry for the day of the Hebrew year | |
1627 corresponding to the selected day | |
1628 \\[insert-islamic-diary-entry] insert a diary entry for the Islamic date corresponding | |
1629 to the selected date | |
1630 \\[insert-monthly-islamic-diary-entry] insert a diary entry for the day of the Islamic month | |
1631 corresponding to the selected day | |
1632 \\[insert-yearly-islamic-diary-entry] insert a diary entry for the day of the Islamic year | |
1633 corresponding to the selected day | |
1634 | |
1635 All of the diary entry commands make nonmarking entries when given a prefix | |
1636 argument; with no prefix argument, the diary entries are marking. | |
1637 | |
1638 The day number in the year and the number of days remaining in the year can be | |
1639 determined by | |
1640 | |
957 | 1641 \\[calendar-print-day-of-year] show day number and the number of days remaining in the year |
1642 | |
1643 Equivalent dates on the ISO commercial, Julian, Hebrew, Islamic, French | |
1644 Revolutionary, and Mayan calendars can be determined by | |
1645 | |
1646 \\[calendar-print-iso-date] show equivalent date on the ISO commercial calendar | |
1647 \\[calendar-print-julian-date] show equivalent date on the Julian calendar | |
1648 \\[calendar-print-hebrew-date] show equivalent date on the Hebrew calendar | |
1649 \\[calendar-print-islamic-date] show equivalent date on the Islamic calendar | |
1650 \\[calendar-print-french-date] show equivalent date on the French Revolutionary calendar | |
1651 \\[calendar-print-mayan-date] show equivalent date on the Mayan calendar | |
1652 | |
1653 The astromonical (Julian) day number of a date is found with | |
1654 | |
1655 \\[calendar-print-astro-day-number] show equivalent astronomical (Julian) day number | |
1656 | |
1657 To find the times of sunrise and sunset and lunar phases use | |
1658 | |
1659 \\[calendar-sunrise-sunset] show times of sunrise and sunset | |
1660 \\[calendar-phases-of-moon] show times of quarters of the moon | |
1661 | |
1662 The times given will be at latitude `solar-latitude', longitude | |
1663 `solar-longitude' in time zone `solar-time-zone'. These variables, and the | |
1664 variables `solar-location-name', `solar-standard-time-zone-name', | |
1665 `solar-daylight-time-zone-name', `solar-daylight-savings-starts', and | |
1666 `solar-daylight-savings-ends', should be set for your location. | |
628 | 1667 |
1668 To exit from the calendar use | |
1669 | |
1670 \\[exit-calendar] exit from calendar | |
1671 | |
1672 The variable `view-diary-entries-initially', whose default is nil, can be | |
1673 set to to t cause diary entries for the current date will be displayed in | |
1674 another window when the calendar is first displayed, if the current date is | |
1675 visible. The variable `number-of-diary-entries' controls number of days of | |
1676 diary entries that will be displayed initially or with the command M-x | |
1677 diary. For example, if the default value 1 is used, then only the current | |
1678 day's diary entries will be displayed. If the value 2 is used, both the | |
1679 current day's and the next day's entries will be displayed. The value can | |
1680 also be a vector: If the value is [0 2 2 2 2 4 1] then no diary entries | |
1681 will be displayed on Sunday, the current date's and the next day's diary | |
1682 entries will be displayed Monday through Thursday, Friday through Monday's | |
1683 entries will be displayed on Friday, while on Saturday only that day's | |
1684 entries will be displayed. | |
1685 | |
957 | 1686 The variable `view-calendar-holidays-initially' can be set to t to cause the |
1687 holidays for the current three month period will be displayed on entry to the | |
1688 calendar. The holidays are displayed in another window. | |
628 | 1689 |
1690 The variable `mark-diary-entries-in-calendar' can be set to t to cause any | |
957 | 1691 dates visible with calendar entries to be marked with the symbol specified by |
1692 the variable `diary-entry-marker', normally a plus sign. | |
1693 | |
1694 The variable `calendar-load-hook', whose default value is nil, is list of | |
1695 functions to be called when the calendar is first loaded. | |
1696 | |
1697 The variable `initial-calendar-window-hook', whose default value is nil, is | |
1698 list of functions to be called when the calendar window is first opened. The | |
1699 functions invoked are called after the calendar window is opened, but once | |
1700 opened is never called again. Leaving the calendar with the `q' command and | |
1701 reentering it will cause these functions to be called again. | |
1702 | |
1703 The variable `today-visible-calendar-hook', whose default value is nil, is the | |
1704 list of functions called after the calendar buffer has been prepared with the | |
1705 calendar when the current date is visible in the window. This can be used, | |
1706 for example, to replace today's date with asterisks; a function | |
1707 calendar-star-date is included for this purpose: (setq | |
1708 today-visible-calendar-hook 'calendar-star-date) It could also be used to mark | |
1709 the current date with `*'; a function is also provided for this: (setq | |
1710 today-visible-calendar-hook 'calendar-mark-today) | |
1711 | |
1712 The variable `today-invisible-calendar-hook', whose default value is nil, is | |
1713 the list of functions called after the calendar buffer has been prepared with | |
1714 the calendar when the current date is not visible in the window. | |
1715 | |
1716 The variable `diary-display-hook' is the list of functions called after the | |
1717 diary buffer is prepared. The default value simply displays the diary file | |
1718 using selective-display to conceal irrelevant diary entries. An alternative | |
1719 function `fancy-diary-display' is provided that, when used as the | |
1720 `diary-display-hook', causes a noneditable buffer to be prepared with a neatly | |
1721 organized day-by-day listing of relevant diary entries, together with any | |
1722 known holidays. The inclusion of the holidays slows this fancy display of the | |
1723 diary; to speed it up, set the variable `holidays-in-diary-buffer' to nil. | |
1724 | |
1725 The variable `print-diary-entries-hook' is the list of functions called after | |
1726 a temporary buffer is prepared with the diary entries currently visible in the | |
1727 diary buffer. The default value of this hook adds a heading (composed from | |
1728 the diary buffer's mode line), does the printing with the command lpr-buffer, | |
1729 and kills the temporary buffer. Other uses might include, for example, | |
1730 rearranging the lines into order by day and time. | |
628 | 1731 |
1732 The Gregorian calendar is assumed." | |
1733 | |
1734 (kill-all-local-variables) | |
1735 (setq major-mode 'calendar-mode) | |
1736 (setq mode-name "Calendar") | |
1737 (use-local-map calendar-mode-map) | |
1738 (setq buffer-read-only t) | |
1739 (setq indent-tabs-mode nil) | |
957 | 1740 (update-calendar-mode-line) |
628 | 1741 (make-local-variable 'calendar-window-configuration);; Windows on entry. |
1742 (make-local-variable 'calendar-mark-ring) | |
1743 (make-local-variable 'displayed-month);; Month in middle of window. | |
1744 (make-local-variable 'displayed-year));; Year in middle of window. | |
1745 | |
957 | 1746 (defun calendar-string-spread (strings char length) |
1747 "A list of STRINGS is concatenated separated by copies of CHAR so that it | |
1748 fills LENGTH; there must be at least 2 strings. The effect is like mapconcat | |
1749 but the separating pieces are as balanced as possible. Each item of STRINGS | |
1750 is evaluated before concatenation so it can actually be an expression that | |
1751 evaluates to a string. If LENGTH is too short, the STRINGS are just | |
1752 concatenated and the result truncated." | |
1753 ;; The algorithm is based on equation (3.25) on page 85 of Concrete | |
1754 ;; Mathematics by Ronald L. Graham, Donald E. Knuth, and Oren Patashnik, | |
1755 ;; Addison-Wesley, Reading, MA, 1989 | |
1756 (let* ((strings (mapcar 'eval strings)) | |
1757 (n (- length (length (apply 'concat strings)))) | |
1758 (m (1- (length strings))) | |
1759 (s (car strings)) | |
1760 (strings (cdr strings)) | |
1761 (i 0)) | |
1762 (while strings | |
1763 (setq s (concat s | |
1764 (make-string (max 0 (/ (+ n i) m)) char) | |
1765 (car strings))) | |
1766 (setq i (1+ i)) | |
1767 (setq strings (cdr strings))) | |
1768 (substring s 0 length))) | |
1769 | |
628 | 1770 (defun update-calendar-mode-line () |
1771 "Update the calendar mode line with the current date and date style." | |
1772 (if (bufferp (get-buffer calendar-buffer)) | |
1773 (save-excursion | |
1774 (set-buffer calendar-buffer) | |
1775 (setq mode-line-format | |
957 | 1776 (calendar-string-spread |
1777 calendar-mode-line-format ? (frame-width)))))) | |
628 | 1778 |
1779 (defun exit-calendar () | |
957 | 1780 "Get out of the calendar window and bury it and related buffers." |
628 | 1781 (interactive) |
1782 (let ((diary-buffer (get-file-buffer diary-file)) | |
1783 (d-buffer (get-buffer fancy-diary-buffer)) | |
1784 (h-buffer (get-buffer holiday-buffer))) | |
1785 (if (not diary-buffer) | |
1786 (progn | |
1787 (set-window-configuration calendar-window-configuration) | |
957 | 1788 (bury-buffer calendar-buffer) |
1789 (if d-buffer (bury-buffer d-buffer)) | |
1790 (if h-buffer (bury-buffer h-buffer))) | |
628 | 1791 (if (or (not (buffer-modified-p diary-buffer)) |
1792 (yes-or-no-p "Diary modified; do you really want to exit the calendar? ")) | |
1793 (progn | |
1794 (set-window-configuration calendar-window-configuration) | |
957 | 1795 (bury-buffer calendar-buffer) |
1796 (if d-buffer (bury-buffer d-buffer)) | |
1797 (if h-buffer (bury-buffer h-buffer)) | |
628 | 1798 (set-buffer diary-buffer) |
1799 (set-buffer-modified-p nil) | |
957 | 1800 (bury-buffer diary-buffer)))))) |
628 | 1801 |
1802 (defun calendar-current-month () | |
1803 "Reposition the calendar window so the current date is visible." | |
1804 (interactive) | |
1805 (let ((today (calendar-current-date)));; The date might have changed. | |
1806 (if (not (calendar-date-is-visible-p today)) | |
957 | 1807 (generate-calendar-window) |
628 | 1808 (update-calendar-mode-line) |
1809 (calendar-cursor-to-visible-date today)))) | |
1810 | |
1811 (defun calendar-forward-month (arg) | |
1812 "Move the cursor forward ARG months. | |
1813 Movement is backward if ARG is negative." | |
1814 (interactive "p") | |
1815 (calendar-cursor-to-nearest-date) | |
1816 (let* ((cursor-date (or (calendar-cursor-to-date) | |
1817 (error "Cursor is not on a date!"))) | |
1818 (month (extract-calendar-month cursor-date)) | |
1819 (day (extract-calendar-day cursor-date)) | |
1820 (year (extract-calendar-year cursor-date))) | |
1821 (increment-calendar-month month year arg) | |
1822 (let ((last (calendar-last-day-of-month month year))) | |
1823 (if (< last day) | |
1824 (setq day last))) | |
1825 ;; Put the new month on the screen, if needed, and go to the new date. | |
1826 (let ((new-cursor-date (list month day year))) | |
1827 (if (not (calendar-date-is-visible-p new-cursor-date)) | |
1828 (calendar-other-month month year)) | |
1829 (calendar-cursor-to-visible-date new-cursor-date)))) | |
1830 | |
1831 (defun calendar-forward-year (arg) | |
1832 "Move the cursor forward by ARG years. | |
1833 Movement is backward if ARG is negative." | |
1834 (interactive "p") | |
1835 (calendar-forward-month (* 12 arg))) | |
1836 | |
1837 (defun calendar-backward-month (arg) | |
1838 "Move the cursor backward by ARG months. | |
1839 Movement is forward if ARG is negative." | |
1840 (interactive "p") | |
1841 (calendar-forward-month (- arg))) | |
1842 | |
1843 (defun calendar-backward-year (arg) | |
1844 "Move the cursor backward ARG years. | |
1845 Movement is forward is ARG is negative." | |
1846 (interactive "p") | |
1847 (calendar-forward-month (* -12 arg))) | |
1848 | |
1849 (defun scroll-calendar-left (arg) | |
1850 "Scroll the displayed calendar left by ARG months. | |
1851 If ARG is negative the calendar is scrolled right. Maintains the relative | |
1852 position of the cursor with respect to the calendar as well as possible." | |
1853 (interactive "p") | |
1854 (calendar-cursor-to-nearest-date) | |
1855 (let ((old-date (calendar-cursor-to-date)) | |
1856 (today (calendar-current-date))) | |
1857 (if (/= arg 0) | |
1858 (progn | |
957 | 1859 (increment-calendar-month displayed-month displayed-year arg) |
1860 (generate-calendar-window displayed-month displayed-year) | |
628 | 1861 (calendar-cursor-to-visible-date |
1862 (cond | |
1863 ((calendar-date-is-visible-p old-date) old-date) | |
1864 ((calendar-date-is-visible-p today) today) | |
1865 (t (list displayed-month 1 displayed-year)))))))) | |
1866 | |
1867 (defun scroll-calendar-right (arg) | |
1868 "Scroll the displayed calendar window right by ARG months. | |
1869 If ARG is negative the calendar is scrolled left. Maintains the relative | |
1870 position of the cursor with respect to the calendar as well as possible." | |
1871 (interactive "p") | |
1872 (scroll-calendar-left (- arg))) | |
1873 | |
1874 (defun scroll-calendar-left-three-months (arg) | |
1875 "Scroll the displayed calendar window left by 3*ARG months. | |
1876 If ARG is negative the calendar is scrolled right. Maintains the relative | |
1877 position of the cursor with respect to the calendar as well as possible." | |
1878 (interactive "p") | |
1879 (scroll-calendar-left (* 3 arg))) | |
1880 | |
1881 (defun scroll-calendar-right-three-months (arg) | |
1882 "Scroll the displayed calendar window right by 3*ARG months. | |
1883 If ARG is negative the calendar is scrolled left. Maintains the relative | |
1884 position of the cursor with respect to the calendar as well as possible." | |
1885 (interactive "p") | |
1886 (scroll-calendar-left (* -3 arg))) | |
1887 | |
1888 (defun calendar-current-date () | |
1889 "Returns the current date in a list (month day year). | |
1890 If in the calendar buffer, also sets the current date local variables." | |
1891 (let* ((date (current-time-string)) | |
1892 (garbage | |
1893 (string-match | |
1894 "^\\([A-Z][a-z]*\\) *\\([A-Z][a-z]*\\) *\\([0-9]*\\) .* \\([0-9]*\\)$" | |
1895 date)) | |
1896 (month | |
1897 (cdr (assoc | |
1898 (substring date (match-beginning 2) (match-end 2)) | |
1899 (calendar-make-alist | |
1900 calendar-month-name-array | |
1901 1 | |
1902 '(lambda (x) (substring x 0 3)))))) | |
1903 (day | |
1904 (string-to-int (substring date (match-beginning 3) (match-end 3)))) | |
1905 (year | |
1906 (string-to-int (substring date (match-beginning 4) (match-end 4))))) | |
1907 (list month day year))) | |
1908 | |
1909 (defun calendar-cursor-to-date () | |
1910 "Returns a list of the month, day, and year of current cursor position. | |
1911 Returns nil if the cursor is not on a specific day." | |
1912 (if (and (looking-at "[*0-9]") | |
1913 (< 2 (count-lines (point-min) (point)))) | |
1914 (save-excursion | |
1915 (re-search-backward "[^0-9]") | |
1916 (forward-char 1) | |
1917 (let* | |
1918 ((day (string-to-int (buffer-substring (point) (+ 3 (point))))) | |
957 | 1919 (day (if (= 0 day) starred-day day)) |
628 | 1920 (segment (/ (current-column) 25)) |
1921 (month (% (+ displayed-month segment -1) 12)) | |
1922 (month (if (= 0 month) 12 month)) | |
1923 (year | |
1924 (cond | |
1925 ((and (= 12 month) (= segment 0)) (1- displayed-year)) | |
1926 ((and (= 1 month) (= segment 2)) (1+ displayed-year)) | |
1927 (t displayed-year)))) | |
1928 (list month day year))))) | |
1929 | |
1930 (defun calendar-cursor-to-nearest-date () | |
1931 "Move the cursor to the closest date. | |
1932 The position of the cursor is unchanged if it is already on a date. | |
1933 Returns the list (month day year) giving the cursor position." | |
1934 (let ((date (calendar-cursor-to-date)) | |
1935 (column (current-column))) | |
1936 (if date | |
1937 date | |
1938 (if (> 3 (count-lines (point-min) (point))) | |
1939 (progn | |
1940 (goto-line 3) | |
1941 (move-to-column column))) | |
1942 (if (not (looking-at "[0-9]")) | |
1943 (if (and (not (looking-at " *$")) | |
1944 (or (< column 25) | |
1945 (and (> column 27) | |
1946 (< column 50)) | |
1947 (and (> column 52) | |
1948 (< column 75)))) | |
1949 (progn | |
1950 (re-search-forward "[0-9]" nil t) | |
1951 (backward-char 1)) | |
1952 (re-search-backward "[0-9]" nil t))) | |
1953 (calendar-cursor-to-date)))) | |
1954 | |
1955 (defun calendar-forward-day (arg) | |
1956 "Move the cursor forward ARG days. | |
1957 Moves backward if ARG is negative." | |
1958 (interactive "p") | |
1959 (if (/= 0 arg) | |
1960 (let* | |
1961 ((cursor-date (calendar-cursor-to-date)) | |
1962 (cursor-date (if cursor-date | |
1963 cursor-date | |
1964 (if (> arg 0) (setq arg (1- arg))) | |
1965 (calendar-cursor-to-nearest-date))) | |
1966 (new-cursor-date | |
1967 (calendar-gregorian-from-absolute | |
1968 (+ (calendar-absolute-from-gregorian cursor-date) arg))) | |
1969 (new-display-month (extract-calendar-month new-cursor-date)) | |
1970 (new-display-year (extract-calendar-year new-cursor-date))) | |
1971 ;; Put the new month on the screen, if needed, and go to the new date. | |
1972 (if (not (calendar-date-is-visible-p new-cursor-date)) | |
1973 (calendar-other-month new-display-month new-display-year)) | |
1974 (calendar-cursor-to-visible-date new-cursor-date)))) | |
1975 | |
1976 (defun calendar-backward-day (arg) | |
1977 "Move the cursor back ARG days. | |
1978 Moves forward if ARG is negative." | |
1979 (interactive "p") | |
1980 (calendar-forward-day (- arg))) | |
1981 | |
1982 (defun calendar-forward-week (arg) | |
1983 "Move the cursor forward ARG weeks. | |
1984 Moves backward if ARG is negative." | |
1985 (interactive "p") | |
1986 (calendar-forward-day (* arg 7))) | |
1987 | |
1988 (defun calendar-backward-week (arg) | |
1989 "Move the cursor back ARG weeks. | |
1990 Moves forward if ARG is negative." | |
1991 (interactive "p") | |
1992 (calendar-forward-day (* arg -7))) | |
1993 | |
1994 (defun calendar-beginning-of-week (arg) | |
1995 "Move the cursor back ARG Sundays." | |
1996 (interactive "p") | |
1997 (calendar-cursor-to-nearest-date) | |
1998 (let ((day (calendar-day-of-week (calendar-cursor-to-date)))) | |
1999 (calendar-backward-day | |
2000 (if (= day 0) (* 7 arg) (+ day (* 7 (1- arg))))))) | |
2001 | |
2002 (defun calendar-end-of-week (arg) | |
2003 "Move the cursor forward ARG Saturdays." | |
2004 (interactive "p") | |
2005 (calendar-cursor-to-nearest-date) | |
2006 (let ((day (calendar-day-of-week (calendar-cursor-to-date)))) | |
2007 (calendar-forward-day | |
2008 (if (= day 6) (* 7 arg) (+ (- 6 day) (* 7 (1- arg))))))) | |
2009 | |
2010 (defun calendar-beginning-of-month (arg) | |
2011 "Move the cursor backward ARG month beginnings." | |
2012 (interactive "p") | |
2013 (calendar-cursor-to-nearest-date) | |
2014 (let* ((date (calendar-cursor-to-date)) | |
2015 (month (extract-calendar-month date)) | |
2016 (day (extract-calendar-day date)) | |
2017 (year (extract-calendar-year date))) | |
2018 (if (= day 1) | |
2019 (calendar-backward-month arg) | |
2020 (calendar-cursor-to-visible-date (list month 1 year)) | |
2021 (calendar-backward-month (1- arg))))) | |
2022 | |
2023 (defun calendar-end-of-month (arg) | |
2024 "Move the cursor forward ARG month ends." | |
2025 (interactive "p") | |
2026 (calendar-cursor-to-nearest-date) | |
2027 (let* ((date (calendar-cursor-to-date)) | |
2028 (month (extract-calendar-month date)) | |
2029 (day (extract-calendar-day date)) | |
2030 (year (extract-calendar-year date)) | |
2031 (last-day (calendar-last-day-of-month month year))) | |
2032 (if (/= day last-day) | |
2033 (progn | |
2034 (calendar-cursor-to-visible-date (list month last-day year)) | |
2035 (setq arg (1- arg)))) | |
2036 (increment-calendar-month month year arg) | |
2037 (let ((last-day (list | |
2038 month | |
2039 (calendar-last-day-of-month month year) | |
2040 year))) | |
2041 (if (not (calendar-date-is-visible-p last-day)) | |
2042 (calendar-other-month month year) | |
2043 (calendar-cursor-to-visible-date last-day))))) | |
2044 | |
2045 (defun calendar-beginning-of-year (arg) | |
2046 "Move the cursor backward ARG year beginnings." | |
2047 (interactive "p") | |
2048 (calendar-cursor-to-nearest-date) | |
2049 (let* ((date (calendar-cursor-to-date)) | |
2050 (month (extract-calendar-month date)) | |
2051 (day (extract-calendar-day date)) | |
2052 (year (extract-calendar-year date)) | |
2053 (jan-first (list 1 1 year))) | |
2054 (if (and (= day 1) (= 1 month)) | |
2055 (calendar-backward-month (* 12 arg)) | |
2056 (if (and (= arg 1) | |
2057 (calendar-date-is-visible-p jan-first)) | |
2058 (calendar-cursor-to-visible-date jan-first) | |
2059 (calendar-other-month 1 (- year (1- arg))))))) | |
2060 | |
2061 (defun calendar-end-of-year (arg) | |
2062 "Move the cursor forward ARG year beginnings." | |
2063 (interactive "p") | |
2064 (calendar-cursor-to-nearest-date) | |
2065 (let* ((date (calendar-cursor-to-date)) | |
2066 (month (extract-calendar-month date)) | |
2067 (day (extract-calendar-day date)) | |
2068 (year (extract-calendar-year date)) | |
2069 (dec-31 (list 12 31 year))) | |
2070 (if (and (= day 31) (= 12 month)) | |
2071 (calendar-forward-month (* 12 arg)) | |
2072 (if (and (= arg 1) | |
2073 (calendar-date-is-visible-p dec-31)) | |
2074 (calendar-cursor-to-visible-date dec-31) | |
2075 (calendar-other-month 12 (- year (1- arg))) | |
2076 (calendar-cursor-to-visible-date (list 12 31 displayed-year)))))) | |
2077 | |
2078 (defun calendar-gregorian-from-absolute (date) | |
2079 "Compute the list (month day year) corresponding to the absolute DATE. | |
2080 The absolute date is the number of days elapsed since the (imaginary) | |
2081 Gregorian date Sunday, December 31, 1 BC." | |
2082 (let* ((approx (/ date 366));; Approximation from below. | |
2083 (year ;; Search forward from the approximation. | |
2084 (+ approx | |
2085 (calendar-sum y approx | |
2086 (>= date (calendar-absolute-from-gregorian (list 1 1 (1+ y)))) | |
2087 1))) | |
2088 (month ;; Search forward from January. | |
2089 (1+ (calendar-sum m 1 | |
2090 (> date | |
2091 (calendar-absolute-from-gregorian | |
2092 (list m (calendar-last-day-of-month m year) year))) | |
2093 1))) | |
2094 (day ;; Calculate the day by subtraction. | |
2095 (- date | |
2096 (1- (calendar-absolute-from-gregorian (list month 1 year)))))) | |
2097 (list month day year))) | |
2098 | |
2099 (defun calendar-cursor-to-visible-date (date) | |
2100 "Move the cursor to DATE that is on the screen." | |
2101 (let ((month (extract-calendar-month date)) | |
2102 (day (extract-calendar-day date)) | |
2103 (year (extract-calendar-year date))) | |
2104 (goto-line (+ 3 | |
2105 (/ (+ day -1 | |
2106 (calendar-day-of-week (list month 1 year))) | |
2107 7))) | |
2108 (move-to-column (+ 6 | |
2109 (* 25 | |
2110 (1+ (calendar-interval | |
2111 displayed-month displayed-year month year))) | |
2112 (* 3 (calendar-day-of-week date)))))) | |
2113 | |
2114 (defun calendar-other-month (month year) | |
2115 "Display a three-month calendar centered around MONTH and YEAR." | |
2116 (interactive | |
2117 (let* ((completion-ignore-case t) | |
2118 (month (cdr (assoc | |
2119 (capitalize | |
2120 (completing-read | |
2121 "Month name: " | |
2122 (mapcar 'list (append calendar-month-name-array nil)) | |
2123 nil t)) | |
2124 (calendar-make-alist calendar-month-name-array)))) | |
2125 (year (calendar-read | |
2126 "Year (>0): " | |
2127 '(lambda (x) (> x 0)) | |
957 | 2128 (int-to-string |
2129 (extract-calendar-year (calendar-current-date)))))) | |
628 | 2130 (list month year))) |
2131 (if (and (= month displayed-month) | |
2132 (= year displayed-year)) | |
2133 nil | |
2134 (let ((old-date (calendar-cursor-to-date)) | |
2135 (today (calendar-current-date))) | |
957 | 2136 (generate-calendar-window month year) |
628 | 2137 (calendar-cursor-to-visible-date |
2138 (cond | |
2139 ((calendar-date-is-visible-p old-date) old-date) | |
2140 ((calendar-date-is-visible-p today) today) | |
2141 (t (list month 1 year))))))) | |
2142 | |
2143 (defun calendar-set-mark (arg) | |
2144 "Mark the date under the cursor, or jump to marked date. | |
2145 With no prefix argument, push current date onto marked date ring. | |
2146 With argument, jump to mark, pop it, and put point at end of ring." | |
2147 (interactive "P") | |
2148 (let ((date (or (calendar-cursor-to-date) | |
2149 (error "Cursor is not on a date!")))) | |
2150 (if (null arg) | |
2151 (progn | |
2152 (setq calendar-mark-ring (cons date calendar-mark-ring)) | |
2153 ;; Since the top of the mark ring is the marked date in the | |
2154 ;; calendar, the mark ring in the calendar is one longer than | |
2155 ;; in other buffers to get the same effect. | |
2156 (if (> (length calendar-mark-ring) (1+ mark-ring-max)) | |
2157 (setcdr (nthcdr mark-ring-max calendar-mark-ring) nil)) | |
2158 (message "Mark set")) | |
2159 (if (null calendar-mark-ring) | |
2160 (error "No mark set in this buffer") | |
2161 (calendar-goto-date (car calendar-mark-ring)) | |
2162 (setq calendar-mark-ring | |
2163 (cdr (nconc calendar-mark-ring (list date)))))))) | |
2164 | |
2165 (defun calendar-exchange-point-and-mark () | |
2166 "Exchange the current cursor position with the marked date." | |
2167 (interactive) | |
2168 (let ((mark (car calendar-mark-ring)) | |
2169 (date (or (calendar-cursor-to-date) | |
2170 (error "Cursor is not on a date!")))) | |
2171 (if (null mark) | |
2172 (error "No mark set in this buffer") | |
2173 (setq calendar-mark-ring (cons date (cdr calendar-mark-ring))) | |
2174 (calendar-goto-date mark)))) | |
2175 | |
2176 (defun calendar-count-days-region () | |
2177 "Count the number of days (inclusive) between point and the mark." | |
2178 (interactive) | |
2179 (let* ((days (- (calendar-absolute-from-gregorian | |
2180 (or (calendar-cursor-to-date) | |
2181 (error "Cursor is not on a date!"))) | |
2182 (calendar-absolute-from-gregorian | |
2183 (or (car calendar-mark-ring) | |
2184 (error "No mark set in this buffer"))))) | |
2185 (days (1+ (if (> days 0) days (- days))))) | |
2186 (message "Region has %d day%s (inclusive)" | |
2187 days (if (> days 1) "s" "")))) | |
2188 | |
2189 (defun calendar-not-implemented () | |
2190 "Not implemented." | |
2191 (interactive) | |
2192 (error "%s not available in the calendar" | |
2193 (global-key-binding (this-command-keys)))) | |
2194 | |
2195 (defun calendar-read (prompt acceptable &optional initial-contents) | |
2196 "Return an object read from the minibuffer. | |
2197 Prompt with the string PROMPT and use the function ACCEPTABLE to decide if | |
2198 entered item is acceptable. If non-nil, optional third arg INITIAL-CONTENTS | |
2199 is a string to insert in the minibuffer before reading." | |
2200 (let ((value (read-minibuffer prompt initial-contents))) | |
2201 (while (not (funcall acceptable value)) | |
2202 (setq value (read-minibuffer prompt initial-contents))) | |
2203 value)) | |
2204 | |
957 | 2205 (defun calendar-read-date () |
2206 "Prompt for Gregorian date. Returns a list (month day year)." | |
2207 (let* ((year (calendar-read | |
2208 "Year (>0): " | |
2209 '(lambda (x) (> x 0)) | |
2210 (int-to-string (extract-calendar-year | |
2211 (calendar-current-date))))) | |
2212 (month-array calendar-month-name-array) | |
2213 (completion-ignore-case t) | |
2214 (month (cdr (assoc | |
2215 (capitalize | |
2216 (completing-read | |
2217 "Month name: " | |
2218 (mapcar 'list (append month-array nil)) | |
2219 nil t)) | |
2220 (calendar-make-alist month-array 1 'capitalize)))) | |
2221 (last (calendar-last-day-of-month month year)) | |
2222 (day (calendar-read | |
2223 (format "Day (1-%d): " last) | |
2224 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
2225 (list month day year))) | |
2226 | |
628 | 2227 (defun calendar-goto-date (date) |
2228 "Move cursor to DATE." | |
957 | 2229 (interactive (list (calendar-read-date))) |
628 | 2230 (let ((month (extract-calendar-month date)) |
2231 (year (extract-calendar-year date))) | |
2232 (if (not (calendar-date-is-visible-p date)) | |
2233 (calendar-other-month | |
2234 (if (and (= month 1) (= year 1)) | |
2235 2 | |
2236 month) | |
2237 year))) | |
2238 (calendar-cursor-to-visible-date date)) | |
2239 | |
2240 (defun calendar-goto-julian-date (date &optional noecho) | |
2241 "Move cursor to Julian DATE; echo Julian date unless NOECHO is t." | |
2242 (interactive | |
957 | 2243 (let* ((today (calendar-current-date)) |
2244 (year (calendar-read | |
628 | 2245 "Julian calendar year (>0): " |
2246 '(lambda (x) (> x 0)) | |
2247 (int-to-string | |
2248 (extract-calendar-year | |
2249 (calendar-julian-from-absolute | |
2250 (calendar-absolute-from-gregorian | |
957 | 2251 today)))))) |
628 | 2252 (month-array calendar-month-name-array) |
2253 (completion-ignore-case t) | |
2254 (month (cdr (assoc | |
2255 (capitalize | |
2256 (completing-read | |
2257 "Julian calendar month name: " | |
2258 (mapcar 'list (append month-array nil)) | |
2259 nil t)) | |
2260 (calendar-make-alist month-array 1 'capitalize)))) | |
2261 (last | |
2262 (if (and (zerop (% year 4)) (= month 2)) | |
2263 29 | |
2264 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
2265 (day (calendar-read | |
2266 (format "Julian calendar day (%d-%d): " | |
2267 (if (and (= year 1) (= month 1)) 3 1) last) | |
2268 '(lambda (x) | |
2269 (and (< (if (and (= year 1) (= month 1)) 2 0) x) | |
2270 (<= x last)))))) | |
2271 (list (list month day year)))) | |
2272 (calendar-goto-date (calendar-gregorian-from-absolute | |
2273 (calendar-absolute-from-julian date))) | |
957 | 2274 (or noecho (calendar-print-julian-date))) |
628 | 2275 |
2276 (defun calendar-goto-hebrew-date (date &optional noecho) | |
2277 "Move cursor to Hebrew DATE; echo Hebrew date unless NOECHO is t." | |
2278 (interactive | |
957 | 2279 (let* ((today (calendar-current-date)) |
2280 (year (calendar-read | |
628 | 2281 "Hebrew calendar year (>3760): " |
2282 '(lambda (x) (> x 3760)) | |
2283 (int-to-string | |
2284 (extract-calendar-year | |
2285 (calendar-hebrew-from-absolute | |
957 | 2286 (calendar-absolute-from-gregorian today)))))) |
628 | 2287 (month-array (if (hebrew-calendar-leap-year-p year) |
2288 calendar-hebrew-month-name-array-leap-year | |
2289 calendar-hebrew-month-name-array-common-year)) | |
2290 (completion-ignore-case t) | |
2291 (month (cdr (assoc | |
2292 (capitalize | |
2293 (completing-read | |
2294 "Hebrew calendar month name: " | |
2295 (mapcar 'list (append month-array nil)) | |
2296 (if (= year 3761) | |
2297 '(lambda (x) | |
2298 (let ((m (cdr | |
2299 (assoc | |
2300 (car x) | |
2301 (calendar-make-alist | |
2302 month-array))))) | |
2303 (< 0 | |
2304 (calendar-absolute-from-hebrew | |
2305 (list m | |
2306 (hebrew-calendar-last-day-of-month | |
2307 m year) | |
2308 year)))))) | |
2309 | |
2310 t)) | |
2311 (calendar-make-alist month-array 1 'capitalize)))) | |
2312 (last (hebrew-calendar-last-day-of-month month year)) | |
2313 (first (if (and (= year 3761) (= month 10)) | |
2314 18 1)) | |
2315 (day (calendar-read | |
2316 (format "Hebrew calendar day (%d-%d): " | |
2317 first last) | |
2318 '(lambda (x) (and (<= first x) (<= x last)))))) | |
2319 (list (list month day year)))) | |
2320 (calendar-goto-date (calendar-gregorian-from-absolute | |
2321 (calendar-absolute-from-hebrew date))) | |
957 | 2322 (or noecho (calendar-print-hebrew-date))) |
628 | 2323 |
2324 (defun calendar-goto-islamic-date (date &optional noecho) | |
2325 "Move cursor to Islamic DATE; echo Islamic date unless NOECHO is t." | |
2326 (interactive | |
957 | 2327 (let* ((today (calendar-current-date)) |
2328 (year (calendar-read | |
628 | 2329 "Islamic calendar year (>0): " |
2330 '(lambda (x) (> x 0)) | |
2331 (int-to-string | |
2332 (extract-calendar-year | |
2333 (calendar-islamic-from-absolute | |
957 | 2334 (calendar-absolute-from-gregorian today)))))) |
628 | 2335 (month-array calendar-islamic-month-name-array) |
2336 (completion-ignore-case t) | |
2337 (month (cdr (assoc | |
2338 (capitalize | |
2339 (completing-read | |
2340 "Islamic calendar month name: " | |
2341 (mapcar 'list (append month-array nil)) | |
2342 nil t)) | |
2343 (calendar-make-alist month-array 1 'capitalize)))) | |
2344 (last (islamic-calendar-last-day-of-month month year)) | |
2345 (day (calendar-read | |
2346 (format "Islamic calendar day (1-%d): " last) | |
2347 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
2348 (list (list month day year)))) | |
2349 (calendar-goto-date (calendar-gregorian-from-absolute | |
2350 (calendar-absolute-from-islamic date))) | |
957 | 2351 (or noecho (calendar-print-islamic-date))) |
628 | 2352 |
2353 (defun calendar-goto-iso-date (date &optional noecho) | |
2354 "Move cursor to ISO DATE; echo ISO date unless NOECHO is t." | |
2355 (interactive | |
957 | 2356 (let* ((today (calendar-current-date)) |
2357 (year (calendar-read | |
628 | 2358 "ISO calendar year (>0): " |
2359 '(lambda (x) (> x 0)) | |
957 | 2360 (int-to-string (extract-calendar-year today)))) |
628 | 2361 (no-weeks (extract-calendar-month |
2362 (calendar-iso-from-absolute | |
2363 (1- | |
2364 (calendar-dayname-on-or-before | |
2365 1 (calendar-absolute-from-gregorian | |
2366 (list 1 4 (1+ year)))))))) | |
2367 (week (calendar-read | |
2368 (format "ISO calendar week (1-%d): " no-weeks) | |
2369 '(lambda (x) (and (> x 0) (<= x no-weeks))))) | |
2370 (day (calendar-read | |
2371 "ISO day (1-7): " | |
2372 '(lambda (x) (and (<= 1 x) (<= x 7)))))) | |
2373 (list (list week day year)))) | |
2374 (calendar-goto-date (calendar-gregorian-from-absolute | |
2375 (calendar-absolute-from-iso date))) | |
957 | 2376 (or noecho (calendar-print-iso-date))) |
628 | 2377 |
2378 (defun calendar-interval (mon1 yr1 mon2 yr2) | |
957 | 2379 "The number of months difference between MON1, YR1 and MON2, YR2." |
628 | 2380 (+ (* 12 (- yr2 yr1)) |
2381 (- mon2 mon1))) | |
2382 | |
2383 (defun calendar-day-name (date) | |
2384 "Returns a string with the name of the day of the week of DATE." | |
2385 (aref calendar-day-name-array (calendar-day-of-week date))) | |
2386 | |
2387 (defconst calendar-day-name-array | |
2388 ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"]) | |
2389 | |
2390 (defconst calendar-month-name-array | |
2391 ["January" "February" "March" "April" "May" "June" | |
2392 "July" "August" "September" "October" "November" "December"]) | |
2393 | |
2394 (defun calendar-make-alist (sequence &optional start-index filter) | |
2395 "Make an assoc list corresponding to SEQUENCE. | |
2396 Start at index 1, unless optional START-INDEX is provided. | |
2397 If FILTER is provided, apply it to each item in the list." | |
2398 (let ((index (if start-index (1- start-index) 0))) | |
2399 (mapcar | |
2400 '(lambda (x) | |
2401 (setq index (1+ index)) | |
2402 (cons (if filter (funcall filter x) x) | |
2403 index)) | |
2404 (append sequence nil)))) | |
2405 | |
2406 (defun calendar-month-name (month) | |
2407 "The name of MONTH." | |
2408 (aref calendar-month-name-array (1- month))) | |
2409 | |
2410 (defun calendar-day-of-week (date) | |
2411 "Returns the day-of-the-week index of DATE, 0 for Sunday, 1 for Monday, etc." | |
2412 (% (calendar-absolute-from-gregorian date) 7)) | |
2413 | |
2414 (defun calendar-unmark () | |
2415 "Delete the diary and holiday marks from the calendar." | |
2416 (interactive) | |
2417 (setq mark-diary-entries-in-calendar nil) | |
2418 (setq mark-holidays-in-calendar nil) | |
2419 (save-excursion | |
2420 (goto-line 3) | |
2421 (beginning-of-line) | |
2422 (let ((buffer-read-only nil) | |
2423 (start (point)) | |
2424 (star-date (search-forward "**" nil t)) | |
2425 (star-point (point))) | |
2426 (if star-date | |
2427 (progn ;; Don't delete today as left by calendar-star-date | |
2428 (subst-char-in-region start (- star-point 2) | |
2429 (string-to-char diary-entry-marker) ? t) | |
2430 (subst-char-in-region start (- star-point 2) | |
2431 (string-to-char calendar-holiday-marker) ? t) | |
2432 (subst-char-in-region star-point (point-max) | |
2433 (string-to-char diary-entry-marker) ? t) | |
2434 (subst-char-in-region star-point (point-max) | |
2435 (string-to-char calendar-holiday-marker) ? t)) | |
2436 (subst-char-in-region start (point-max) | |
2437 (string-to-char diary-entry-marker) ? t) | |
2438 (subst-char-in-region start (point-max) | |
2439 (string-to-char calendar-holiday-marker) ? t)) | |
2440 (set-buffer-modified-p nil)))) | |
2441 | |
2442 (defun calendar-date-is-visible-p (date) | |
2443 "Returns t if DATE is legal and is visible in the calendar window." | |
2444 (let ((gap (calendar-interval | |
2445 displayed-month displayed-year | |
2446 (extract-calendar-month date) (extract-calendar-year date)))) | |
2447 (and (calendar-date-is-legal-p date) (> 2 gap) (< -2 gap)))) | |
2448 | |
2449 (defun calendar-date-is-legal-p (date) | |
2450 "Returns t if DATE is a legal date." | |
2451 (let ((month (extract-calendar-month date)) | |
2452 (day (extract-calendar-day date)) | |
2453 (year (extract-calendar-year date))) | |
2454 (and (<= 1 month) (<= month 12) | |
2455 (<= 1 day) (<= day (calendar-last-day-of-month month year)) | |
2456 (<= 1 year)))) | |
2457 | |
2458 (defun calendar-date-equal (date1 date2) | |
2459 "Returns t if the DATE1 and DATE2 are the same." | |
2460 (and | |
2461 (= (extract-calendar-month date1) (extract-calendar-month date2)) | |
2462 (= (extract-calendar-day date1) (extract-calendar-day date2)) | |
2463 (= (extract-calendar-year date1) (extract-calendar-year date2)))) | |
2464 | |
2465 (defun mark-visible-calendar-date (date &optional mark) | |
2466 "Leave mark DATE with MARK. MARK defaults to diary-entry-marker." | |
2467 (if (calendar-date-is-legal-p date) | |
2468 (save-excursion | |
2469 (set-buffer calendar-buffer) | |
2470 (calendar-cursor-to-visible-date date) | |
2471 (forward-char 1) | |
2472 (let ((buffer-read-only nil)) | |
2473 (delete-char 1) | |
2474 (insert (if mark mark diary-entry-marker)) | |
2475 (forward-char -2)) | |
2476 (set-buffer-modified-p nil)))) | |
2477 | |
2478 (defun calendar-star-date () | |
2479 "Replace the date under the cursor in the calendar window with asterisks. | |
2480 This function can be used with the today-visible-calendar-hook run after the | |
2481 calendar window has been prepared." | |
2482 (let ((buffer-read-only nil)) | |
957 | 2483 (make-variable-buffer-local 'starred-day) |
628 | 2484 (forward-char 1) |
957 | 2485 (setq starred-day |
2486 (string-to-int | |
2487 (buffer-substring (point) (- (point) 2)))) | |
628 | 2488 (delete-char -2) |
2489 (insert "**") | |
2490 (backward-char 1) | |
2491 (set-buffer-modified-p nil))) | |
2492 | |
2493 (defun calendar-mark-today () | |
2494 "Mark the date under the cursor in the calendar window with an equal sign. | |
2495 This function can be used with the today-visible-calendar-hook run after the | |
2496 calendar window has been prepared." | |
2497 (let ((buffer-read-only nil)) | |
2498 (forward-char 1) | |
2499 (delete-char 1) | |
2500 (insert "=") | |
2501 (backward-char 2) | |
2502 (set-buffer-modified-p nil))) | |
2503 | |
2504 (defun calendar-date-compare (date1 date2) | |
2505 "Returns t if DATE1 is before DATE2, nil otherwise. | |
2506 The actual dates are in the car of DATE1 and DATE2." | |
2507 (< (calendar-absolute-from-gregorian (car date1)) | |
2508 (calendar-absolute-from-gregorian (car date2)))) | |
2509 | |
2510 (defun calendar-date-string (date &optional abbreviate nodayname) | |
2511 "A string form of DATE, driven by the variable `calendar-date-display-form'. | |
2512 An optional parameter ABBREVIATE, when t, causes the month and day names to be | |
2513 abbreviated to three characters. An optional parameter NODAYNAME, when t, | |
2514 omits the name of the day of the week." | |
2515 (let* ((dayname | |
2516 (if nodayname | |
957 | 2517 nil |
628 | 2518 (if abbreviate |
2519 (substring (calendar-day-name date) 0 3) | |
2520 (calendar-day-name date)))) | |
2521 (month (extract-calendar-month date)) | |
2522 (monthname | |
2523 (if abbreviate | |
2524 (substring | |
2525 (calendar-month-name month) 0 3) | |
2526 (calendar-month-name month))) | |
2527 (day (int-to-string (extract-calendar-day date))) | |
2528 (month (int-to-string month)) | |
2529 (year (int-to-string (extract-calendar-year date)))) | |
2530 (mapconcat 'eval calendar-date-display-form ""))) | |
2531 | |
2532 (defun calendar-dayname-on-or-before (dayname date) | |
2533 "Returns the absolute date of the DAYNAME on or before absolute DATE. | |
2534 DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on. | |
2535 | |
2536 Note: Applying this function to d+6 gives us the DAYNAME on or after an | |
2537 absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to | |
2538 absolute date d, applying it to d-1 gives the DAYNAME previous to absolute | |
2539 date d, and applying it to d+7 gives the DAYNAME following absolute date d." | |
2540 (- date (% (- date dayname) 7))) | |
2541 | |
2542 (defun calendar-nth-named-day (n dayname month year) | |
2543 "Returns the date of the Nth DAYNAME in MONTH, YEAR. | |
2544 A DAYNAME of 0 means Sunday, 1 means Monday, and so on. If N<0, the | |
2545 date returned is the Nth DAYNAME from the end of MONTH, YEAR (that is, -1 is | |
2546 the last DAYNAME, -2 is the penultimate DAYNAME, and so on." | |
2547 (calendar-gregorian-from-absolute | |
2548 (if (> n 0) | |
2549 (+ (calendar-dayname-on-or-before | |
2550 dayname (calendar-absolute-from-gregorian (list month 7 year))) | |
2551 (* 7 (1- n))) | |
2552 (+ (calendar-dayname-on-or-before | |
2553 dayname | |
2554 (calendar-absolute-from-gregorian | |
2555 (list month (calendar-last-day-of-month month year) year))) | |
2556 (* 7 (1+ n)))))) | |
2557 | |
957 | 2558 (defun calendar-print-day-of-year () |
628 | 2559 "Show the day number in the year and the number of days remaining in the |
2560 year for the date under the cursor." | |
2561 (interactive) | |
2562 (let* ((date (or (calendar-cursor-to-date) | |
2563 (error "Cursor is not on a date!"))) | |
2564 (year (extract-calendar-year date)) | |
2565 (day (calendar-day-number date)) | |
2566 (days-remaining (- (calendar-day-number (list 12 31 year)) day))) | |
2567 (message "Day %d of %d; %d day%s remaining in the year" | |
2568 day year days-remaining (if (= days-remaining 1) "" "s")))) | |
2569 | |
2570 (defun calendar-absolute-from-iso (date) | |
2571 "The number of days elapsed between the Gregorian date 12/31/1 BC and | |
2572 DATE. The `ISO year' corresponds approximately to the Gregorian year, but | |
2573 weeks start on Monday and end on Sunday. The first week of the ISO year is | |
2574 the first such week in which at least 4 days are in a year. The ISO | |
2575 commercial DATE has the form (week day year) in which week is in the range | |
2576 1..52 and day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 = | |
2577 Sunday). The The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
2578 (let* ((week (extract-calendar-month date)) | |
2579 (day (extract-calendar-day date)) | |
2580 (year (extract-calendar-year date))) | |
2581 (+ (calendar-dayname-on-or-before | |
2582 1 (+ 3 (calendar-absolute-from-gregorian (list 1 1 year)))) | |
2583 (* 7 (1- week)) | |
2584 (if (= day 0) 6 (1- day))))) | |
2585 | |
2586 (defun calendar-iso-from-absolute (date) | |
2587 "Compute the `ISO commercial date' corresponding to the absolute DATE. | |
2588 The ISO year corresponds approximately to the Gregorian year, but weeks | |
2589 start on Monday and end on Sunday. The first week of the ISO year is the | |
2590 first such week in which at least 4 days are in a year. The ISO commercial | |
2591 date has the form (week day year) in which week is in the range 1..52 and | |
2592 day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 = Sunday). The | |
2593 absolute date is the number of days elapsed since the (imaginary) Gregorian | |
2594 date Sunday, December 31, 1 BC." | |
2595 (let* ((approx (extract-calendar-year | |
2596 (calendar-gregorian-from-absolute (- date 3)))) | |
2597 (year (+ approx | |
2598 (calendar-sum y approx | |
2599 (>= date (calendar-absolute-from-iso (list 1 1 (1+ y)))) | |
2600 1)))) | |
2601 (list | |
2602 (1+ (/ (- date (calendar-absolute-from-iso (list 1 1 year))) 7)) | |
2603 (% date 7) | |
2604 year))) | |
2605 | |
957 | 2606 (defun calendar-print-iso-date () |
628 | 2607 "Show the equivalent date on the `ISO commercial calendar' for the date |
2608 under the cursor." | |
2609 (interactive) | |
2610 (let* ((greg-date | |
2611 (or (calendar-cursor-to-date) | |
2612 (error "Cursor is not on a date!"))) | |
2613 (day (% (calendar-absolute-from-gregorian greg-date) 7)) | |
2614 (iso-date (calendar-iso-from-absolute | |
2615 (calendar-absolute-from-gregorian greg-date)))) | |
2616 (message "ISO date: Day %s of week %d of %d." | |
2617 (if (zerop day) 7 day) | |
2618 (extract-calendar-month iso-date) | |
2619 (extract-calendar-year iso-date)))) | |
2620 | |
2621 (defun calendar-julian-from-absolute (date) | |
2622 "Compute the Julian (month day year) corresponding to the absolute DATE. | |
2623 The absolute date is the number of days elapsed since the (imaginary) | |
2624 Gregorian date Sunday, December 31, 1 BC." | |
2625 (let* ((approx (/ (+ date 2) 366));; Approximation from below. | |
2626 (year ;; Search forward from the approximation. | |
2627 (+ approx | |
2628 (calendar-sum y approx | |
2629 (>= date (calendar-absolute-from-julian (list 1 1 (1+ y)))) | |
2630 1))) | |
2631 (month ;; Search forward from January. | |
2632 (1+ (calendar-sum m 1 | |
2633 (> date | |
2634 (calendar-absolute-from-julian | |
2635 (list m | |
2636 (if (and (= m 2) (= (% year 4) 0)) | |
2637 29 | |
2638 (aref [31 28 31 30 31 30 31 31 30 31 30 31] | |
2639 (1- m))) | |
2640 year))) | |
2641 1))) | |
2642 (day ;; Calculate the day by subtraction. | |
2643 (- date (1- (calendar-absolute-from-julian (list month 1 year)))))) | |
2644 (list month day year))) | |
2645 | |
2646 (defun calendar-absolute-from-julian (date) | |
2647 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. | |
2648 The Gregorian date Sunday, December 31, 1 BC is imaginary." | |
2649 (let ((month (extract-calendar-month date)) | |
2650 (day (extract-calendar-day date)) | |
2651 (year (extract-calendar-year date))) | |
2652 (+ (calendar-day-number date) | |
2653 (if (and (= (% year 100) 0) | |
2654 (/= (% year 400) 0) | |
2655 (> month 2)) | |
2656 1 0);; Correct for Julian but not Gregorian leap year. | |
2657 (* 365 (1- year)) | |
2658 (/ (1- year) 4) | |
2659 -2))) | |
2660 | |
957 | 2661 (defun calendar-print-julian-date () |
628 | 2662 "Show the Julian calendar equivalent of the date under the cursor." |
2663 (interactive) | |
957 | 2664 (message "Julian date: %s" |
2665 (calendar-date-string | |
2666 (calendar-julian-from-absolute | |
2667 (calendar-absolute-from-gregorian | |
2668 (or (calendar-cursor-to-date) | |
2669 (error "Cursor is not on a date!")))) | |
2670 nil t))) | |
628 | 2671 |
2672 (defun islamic-calendar-leap-year-p (year) | |
2673 "Returns t if YEAR is a leap year on the Islamic calendar." | |
2674 (memq (% year 30) | |
2675 (list 2 5 7 10 13 16 18 21 24 26 29))) | |
2676 | |
2677 (defun islamic-calendar-last-day-of-month (month year) | |
2678 "The last day in MONTH during YEAR on the Islamic calendar." | |
2679 (cond | |
2680 ((memq month (list 1 3 5 7 9 11)) 30) | |
2681 ((memq month (list 2 4 6 8 10)) 29) | |
2682 (t (if (islamic-calendar-leap-year-p year) 30 29)))) | |
2683 | |
2684 (defun islamic-calendar-day-number (date) | |
2685 "Return the day number within the year of the Islamic date DATE." | |
2686 (let* ((month (extract-calendar-month date)) | |
2687 (day (extract-calendar-day date))) | |
2688 (+ (* 30 (/ month 2)) | |
2689 (* 29 (/ (1- month) 2)) | |
2690 day))) | |
2691 | |
2692 (defun calendar-absolute-from-islamic (date) | |
2693 "Absolute date of Islamic DATE. | |
2694 The absolute date is the number of days elapsed since the (imaginary) | |
2695 Gregorian date Sunday, December 31, 1 BC." | |
2696 (let* ((month (extract-calendar-month date)) | |
2697 (day (extract-calendar-day date)) | |
2698 (year (extract-calendar-year date)) | |
2699 (y (% year 30)) | |
2700 (leap-years-in-cycle | |
2701 (cond | |
2702 ((< y 3) 0) ((< y 6) 1) ((< y 8) 2) ((< y 11) 3) ((< y 14) 4) | |
2703 ((< y 17) 5) ((< y 19) 6) ((< y 22) 7) ((< y 25) 8) ((< y 27) 9) | |
2704 (t 10)))) | |
2705 (+ (islamic-calendar-day-number date);; days so far this year | |
2706 (* (1- year) 354) ;; days in all non-leap years | |
2707 (* 11 (/ year 30)) ;; leap days in complete cycles | |
2708 leap-years-in-cycle ;; leap days this cycle | |
2709 227014))) ;; days before start of calendar | |
2710 | |
2711 (defun calendar-islamic-from-absolute (date) | |
2712 "Compute the Islamic date (month day year) corresponding to absolute DATE. | |
2713 The absolute date is the number of days elapsed since the (imaginary) | |
2714 Gregorian date Sunday, December 31, 1 BC." | |
2715 (if (< date 227015) | |
2716 (list 0 0 0);; pre-Islamic date | |
2717 (let* ((approx (/ (- date 227014) 355));; Approximation from below. | |
2718 (year ;; Search forward from the approximation. | |
2719 (+ approx | |
2720 (calendar-sum y approx | |
2721 (>= date (calendar-absolute-from-islamic | |
2722 (list 1 1 (1+ y)))) | |
2723 1))) | |
2724 (month ;; Search forward from Muharram. | |
2725 (1+ (calendar-sum m 1 | |
2726 (> date | |
2727 (calendar-absolute-from-islamic | |
2728 (list m | |
2729 (islamic-calendar-last-day-of-month | |
2730 m year) | |
2731 year))) | |
2732 1))) | |
2733 (day ;; Calculate the day by subtraction. | |
2734 (- date | |
2735 (1- (calendar-absolute-from-islamic (list month 1 year)))))) | |
2736 (list month day year)))) | |
2737 | |
2738 (defconst calendar-islamic-month-name-array | |
2739 ["Muharram" "Safar" "Rabi I" "Rabi II" "Jumada I" "Jumada II" | |
2740 "Rajab" "Sha'ban" "Ramadan" "Shawwal" "Dhu al-Qada" "Dhu al-Hijjah"]) | |
2741 | |
957 | 2742 (defun calendar-print-islamic-date () |
628 | 2743 "Show the Islamic calendar equivalent of the date under the cursor." |
2744 (interactive) | |
957 | 2745 (let ((calendar-month-name-array calendar-islamic-month-name-array) |
628 | 2746 (islamic-date (calendar-islamic-from-absolute |
2747 (calendar-absolute-from-gregorian | |
2748 (or (calendar-cursor-to-date) | |
2749 (error "Cursor is not on a date!")))))) | |
2750 (if (< (extract-calendar-year islamic-date) 1) | |
2751 (message "Date is pre-Islamic") | |
957 | 2752 (message "Islamic date (until sunset): %s" |
2753 (calendar-date-string islamic-date nil t))))) | |
628 | 2754 |
2755 (defun calendar-hebrew-from-absolute (date) | |
2756 "Compute the Hebrew date (month day year) corresponding to absolute DATE. | |
2757 The absolute date is the number of days elapsed since the (imaginary) | |
2758 Gregorian date Sunday, December 31, 1 BC." | |
2759 (let* ((greg-date (calendar-gregorian-from-absolute date)) | |
2760 (month (aref [9 10 11 12 1 2 3 4 7 7 7 8] | |
2761 (1- (extract-calendar-month greg-date)))) | |
2762 (day) | |
2763 (year (+ 3760 (extract-calendar-year greg-date)))) | |
2764 (while (>= date (calendar-absolute-from-hebrew (list 7 1 (1+ year)))) | |
2765 (setq year (1+ year))) | |
2766 (let ((length (hebrew-calendar-last-month-of-year year))) | |
2767 (while (> date | |
2768 (calendar-absolute-from-hebrew | |
2769 (list month | |
2770 (hebrew-calendar-last-day-of-month month year) | |
2771 year))) | |
2772 (setq month (1+ (% month length))))) | |
2773 (setq day (1+ | |
2774 (- date (calendar-absolute-from-hebrew (list month 1 year))))) | |
2775 (list month day year))) | |
2776 | |
2777 (defun hebrew-calendar-leap-year-p (year) | |
2778 "t if YEAR is a Hebrew calendar leap year." | |
2779 (< (% (1+ (* 7 year)) 19) 7)) | |
2780 | |
2781 (defun hebrew-calendar-last-month-of-year (year) | |
2782 "The last month of the Hebrew calendar YEAR." | |
2783 (if (hebrew-calendar-leap-year-p year) | |
2784 13 | |
2785 12)) | |
2786 | |
2787 (defun hebrew-calendar-last-day-of-month (month year) | |
2788 "The last day of MONTH in YEAR." | |
2789 (if (or (memq month (list 2 4 6 10 13)) | |
2790 (and (= month 12) (not (hebrew-calendar-leap-year-p year))) | |
2791 (and (= month 8) (not (hebrew-calendar-long-heshvan-p year))) | |
2792 (and (= month 9) (hebrew-calendar-short-kislev-p year))) | |
2793 29 | |
2794 30)) | |
2795 | |
2796 (defun hebrew-calendar-elapsed-days (year) | |
2797 "Number of days elapsed from the Sunday prior to the start of the Hebrew | |
2798 calendar to the mean conjunction of Tishri of Hebrew YEAR." | |
2799 (let* ((months-elapsed | |
2800 (+ (* 235 (/ (1- year) 19));; Months in complete cycles so far. | |
2801 (* 12 (% (1- year) 19)) ;; Regular months in this cycle | |
2802 (/ (1+ (* 7 (% (1- year) 19))) 19)));; Leap months this cycle | |
2803 (parts-elapsed (+ 204 (* 793 (% months-elapsed 1080)))) | |
2804 (hours-elapsed (+ 5 | |
2805 (* 12 months-elapsed) | |
2806 (* 793 (/ months-elapsed 1080)) | |
2807 (/ parts-elapsed 1080))) | |
2808 (parts ;; Conjunction parts | |
2809 (+ (* 1080 (% hours-elapsed 24)) (% parts-elapsed 1080))) | |
2810 (day ;; Conjunction day | |
2811 (+ 1 (* 29 months-elapsed) (/ hours-elapsed 24))) | |
2812 (alternative-day | |
2813 (if (or (>= parts 19440) ;; If the new moon is at or after midday, | |
2814 (and (= (% day 7) 2);; ...or is on a Tuesday... | |
2815 (>= parts 9924) ;; at 9 hours, 204 parts or later... | |
2816 (not (hebrew-calendar-leap-year-p year)));; of a | |
2817 ;; common year, | |
2818 (and (= (% day 7) 1);; ...or is on a Monday... | |
2819 (>= parts 16789) ;; at 15 hours, 589 parts or later... | |
2820 (hebrew-calendar-leap-year-p (1- year))));; at the end | |
2821 ;; of a leap year | |
2822 ;; Then postpone Rosh HaShanah one day | |
2823 (1+ day) | |
2824 ;; Else | |
2825 day))) | |
2826 (if ;; If Rosh HaShanah would occur on Sunday, Wednesday, or Friday | |
2827 (memq (% alternative-day 7) (list 0 3 5)) | |
2828 ;; Then postpone it one (more) day and return | |
2829 (1+ alternative-day) | |
2830 ;; Else return | |
2831 alternative-day))) | |
2832 | |
2833 (defun hebrew-calendar-days-in-year (year) | |
2834 "Number of days in Hebrew YEAR." | |
2835 (- (hebrew-calendar-elapsed-days (1+ year)) | |
2836 (hebrew-calendar-elapsed-days year))) | |
2837 | |
2838 (defun hebrew-calendar-long-heshvan-p (year) | |
2839 "t if Heshvan is long in Hebrew YEAR." | |
2840 (= (% (hebrew-calendar-days-in-year year) 10) 5)) | |
2841 | |
2842 (defun hebrew-calendar-short-kislev-p (year) | |
2843 "t if Kislev is short in Hebrew YEAR." | |
2844 (= (% (hebrew-calendar-days-in-year year) 10) 3)) | |
2845 | |
2846 (defun calendar-absolute-from-hebrew (date) | |
2847 "Absolute date of Hebrew DATE. | |
2848 The absolute date is the number of days elapsed since the (imaginary) | |
2849 Gregorian date Sunday, December 31, 1 BC." | |
2850 (let* ((month (extract-calendar-month date)) | |
2851 (day (extract-calendar-day date)) | |
2852 (year (extract-calendar-year date))) | |
2853 (+ day ;; Days so far this month. | |
2854 (if (< month 7);; before Tishri | |
2855 ;; Then add days in prior months this year before and after Nisan | |
2856 (+ (calendar-sum | |
2857 m 7 (<= m (hebrew-calendar-last-month-of-year year)) | |
2858 (hebrew-calendar-last-day-of-month m year)) | |
2859 (calendar-sum | |
2860 m 1 (< m month) | |
2861 (hebrew-calendar-last-day-of-month m year))) | |
2862 ;; Else add days in prior months this year | |
2863 (calendar-sum | |
2864 m 7 (< m month) | |
2865 (hebrew-calendar-last-day-of-month m year))) | |
2866 (hebrew-calendar-elapsed-days year);; Days in prior years. | |
2867 -1373429))) ;; Days elapsed before absolute date 1. | |
2868 | |
2869 (defconst calendar-hebrew-month-name-array-common-year | |
2870 ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri" | |
2871 "Heshvan" "Kislev" "Teveth" "Shevat" "Adar"]) | |
2872 | |
2873 (defconst calendar-hebrew-month-name-array-leap-year | |
2874 ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri" | |
2875 "Heshvan" "Kislev" "Teveth" "Shevat" "Adar I" "Adar II"]) | |
2876 | |
957 | 2877 (defun calendar-print-hebrew-date () |
628 | 2878 "Show the Hebrew calendar equivalent of the date under the cursor." |
2879 (interactive) | |
957 | 2880 (let* ((hebrew-date (calendar-hebrew-from-absolute |
628 | 2881 (calendar-absolute-from-gregorian |
2882 (or (calendar-cursor-to-date) | |
2883 (error "Cursor is not on a date!"))))) | |
2884 (calendar-month-name-array | |
2885 (if (hebrew-calendar-leap-year-p (extract-calendar-year hebrew-date)) | |
2886 calendar-hebrew-month-name-array-leap-year | |
2887 calendar-hebrew-month-name-array-common-year))) | |
957 | 2888 (message "Hebrew date (until sunset): %s" |
2889 (calendar-date-string hebrew-date nil t)))) | |
628 | 2890 |
732 | 2891 (defun hebrew-calendar-yahrzeit (death-date year) |
2892 "Absolute date of the anniversary of Hebrew DEATH-DATE in Hebrew YEAR." | |
2893 (let* ((death-day (extract-calendar-day death-date)) | |
2894 (death-month (extract-calendar-month death-date)) | |
2895 (death-year (extract-calendar-year death-date))) | |
2896 (cond | |
2897 ;; If it's Heshvan 30 it depends on the first anniversary; if | |
2898 ;; that was not Heshvan 30, use the day before Kislev 1. | |
2899 ((and (= death-month 8) | |
2900 (= death-day 30) | |
2901 (not (hebrew-calendar-long-heshvan-p (1+ death-year)))) | |
2902 (1- (calendar-absolute-from-hebrew (list 9 1 year)))) | |
2903 ;; If it's Kislev 30 it depends on the first anniversary; if | |
2904 ;; that was not Kislev 30, use the day before Teveth 1. | |
2905 ((and (= death-month 9) | |
2906 (= death-day 30) | |
2907 (hebrew-calendar-short-kislev-p (1+ death-year))) | |
2908 (1- (calendar-absolute-from-hebrew (list 10 1 year)))) | |
2909 ;; If it's Adar II, use the same day in last month of | |
2910 ;; year (Adar or Adar II). | |
2911 ((= death-month 13) | |
2912 (calendar-absolute-from-hebrew | |
2913 (list (last-month-of-hebrew-year year) death-day year))) | |
2914 ;; If it's the 30th in Adar I and $year$ is not a leap year | |
2915 ;; (so Adar has only 29 days), use the last day in Shevat. | |
2916 ((and (= death-day 30) | |
2917 (= death-month 12) | |
2918 (not (hebrew-calendar-leap-year-p death-year))) | |
2919 (calendar-absolute-from-hebrew (list 11 30 year))) | |
2920 ;; In all other cases, use the normal anniversary of the date of death. | |
2921 (t (calendar-absolute-from-hebrew | |
2922 (list death-month death-day year)))))) | |
2923 | |
957 | 2924 (defun calendar-set-mode-line (str) |
2925 "Set mode line to STR, centered, surrounded by dashes." | |
2926 (setq mode-line-format | |
2927 (calendar-string-spread (list "" str "") ?- (frame-width)))) | |
2928 | |
2929 ;;;###autoload | |
732 | 2930 (defun list-yahrzeit-dates (death-date start-year end-year) |
957 | 2931 "List of Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to |
2932 END-YEAR. When called interactively from the calendar window, | |
2933 the date of death is taken from the cursor position." | |
732 | 2934 (interactive |
957 | 2935 (let* ((death-date |
2936 (if (equal (current-buffer) (get-buffer calendar-buffer)) | |
2937 (calendar-cursor-to-date) | |
2938 (let* ((today (calendar-current-date)) | |
2939 (year (calendar-read | |
2940 "Year of death (>0): " | |
2941 '(lambda (x) (> x 0)) | |
2942 (int-to-string (extract-calendar-year today)))) | |
2943 (month-array calendar-month-name-array) | |
2944 (completion-ignore-case t) | |
2945 (month (cdr (assoc | |
2946 (capitalize | |
2947 (completing-read | |
2948 "Month of death (name): " | |
2949 (mapcar 'list (append month-array nil)) | |
2950 nil t)) | |
2951 (calendar-make-alist | |
2952 month-array 1 'capitalize)))) | |
2953 (last (calendar-last-day-of-month month year)) | |
2954 (day (calendar-read | |
2955 (format "Day of death (1-%d): " last) | |
2956 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
2957 (list month day year)))) | |
732 | 2958 (death-year (extract-calendar-year death-date)) |
2959 (start-year (calendar-read | |
2960 (format "Starting year of Yahrzeit table (>%d): " | |
2961 death-year) | |
2962 '(lambda (x) (> x death-year)) | |
2963 (int-to-string (1+ death-year)))) | |
2964 (end-year (calendar-read | |
2965 (format "Ending year of Yahrzeit table (>=%d): " | |
2966 start-year) | |
2967 '(lambda (x) (>= x start-year))))) | |
2968 (list death-date start-year end-year))) | |
2969 (message "Computing yahrzeits...") | |
2970 (let* ((yahrzeit-buffer "*Yahrzeits*") | |
2971 (h-date (calendar-hebrew-from-absolute | |
2972 (calendar-absolute-from-gregorian death-date))) | |
2973 (h-month (extract-calendar-month h-date)) | |
2974 (h-day (extract-calendar-day h-date)) | |
2975 (h-year (extract-calendar-year h-date))) | |
2976 (set-buffer (get-buffer-create yahrzeit-buffer)) | |
2977 (setq buffer-read-only nil) | |
957 | 2978 (calendar-set-mode-line |
2979 (format "Yahrzeit dates for %s = %s" | |
732 | 2980 (calendar-date-string death-date) |
2981 (let ((calendar-month-name-array | |
2982 (if (hebrew-calendar-leap-year-p h-year) | |
2983 calendar-hebrew-month-name-array-leap-year | |
957 | 2984 calendar-hebrew-month-name-array-common-year))) |
732 | 2985 (calendar-date-string h-date nil t)))) |
2986 (erase-buffer) | |
2987 (goto-char (point-min)) | |
2988 (calendar-for-loop i from start-year to end-year do | |
2989 (insert | |
2990 (calendar-date-string | |
2991 (calendar-gregorian-from-absolute | |
2992 (hebrew-calendar-yahrzeit | |
2993 h-date | |
2994 (extract-calendar-year | |
2995 (calendar-hebrew-from-absolute | |
2996 (calendar-absolute-from-gregorian (list 1 1 i))))))) "\n")) | |
2997 (goto-char (point-min)) | |
2998 (set-buffer-modified-p nil) | |
2999 (setq buffer-read-only t) | |
3000 (display-buffer yahrzeit-buffer) | |
3001 (message "Computing yahrzeits...done"))) | |
3002 | |
957 | 3003 (defun calendar-print-astro-day-number () |
3004 "Show the astronomical (Julian) day number of afternoon on date | |
3005 shown by cursor." | |
628 | 3006 (interactive) |
957 | 3007 (message |
3008 "Astromonical (Julian) day number after noon Universal Time: %d" | |
3009 (+ 1721425 | |
3010 (calendar-absolute-from-gregorian | |
3011 (or (calendar-cursor-to-date) | |
3012 (error "Cursor is not on a date!")))))) | |
3013 | |
3014 (defun calendar-goto-astro-day-number (daynumber &optional noecho) | |
3015 "Move cursor to astronomical (Julian) DAYNUMBER. | |
3016 Echo astronomical (Julian) day number unless NOECHO is t." | |
3017 (interactive (list (calendar-read | |
3018 "Astromonical (Julian) day number (>1721425): " | |
3019 '(lambda (x) (> x 1721425))))) | |
3020 (calendar-goto-date (calendar-gregorian-from-absolute (- daynumber 1721425))) | |
3021 (or noecho (calendar-print-astro-day-number))) | |
3022 | |
3023 (run-hooks 'calendar-load-hook) | |
628 | 3024 |
3025 (provide 'calendar) | |
3026 | |
675
85fd29f25c75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
628
diff
changeset
|
3027 ;;; calendar.el ends here |