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