Mercurial > emacs
annotate lisp/calendar/cal-coptic.el @ 92973:122f4beea537
(diary-face-attrs, diary-glob-file-regexp-prefix, diary-selective-display)
(number-of-diary-entries, diary-list-entries, diary-goto-entry):
(list-sexp-diary-entries, diary-date, diary-block, diary-float)
(diary-anniversary, diary-cyclic)
(diary-fancy-font-lock-fontify-region-function): Doc fixes.
(diary-header-line-format): Change wording.
(diary-list-entries): Set `date-start' in let.
(include-other-diary-files, mark-included-diary-files): Use format.
(simple-diary-display, fancy-diary-display): Use cadr, unless.
(mark-diary-entries): Use 1+.
(mark-sexp-diary-entries, list-sexp-diary-entries): Use when.
(mark-calendar-month): Use dotimes.
(diary-list-entries-1, diary-mark-entries-1): New functions.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 15 Mar 2008 03:02:16 +0000 |
parents | 446f7aee7bf1 |
children | 6011e8a7280f |
rev | line source |
---|---|
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
24190
diff
changeset
|
1 ;;; cal-coptic.el --- calendar functions for the Coptic/Ethiopic calendars |
13053 | 2 |
92966
446f7aee7bf1
(coptic-calendar-epoch): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
92897
diff
changeset
|
3 ;; Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
446f7aee7bf1
(coptic-calendar-epoch): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
92897
diff
changeset
|
4 ;; 2008 Free Software Foundation, Inc. |
13053 | 5 |
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | |
67465
a55ee709ec8d
Update copyright pending Emacs 22.
Glenn Morris <rgm@gnu.org>
parents:
65145
diff
changeset
|
7 ;; Maintainer: Glenn Morris <rgm@gnu.org> |
13053 | 8 ;; Keywords: calendar |
9 ;; Human-Keywords: Coptic calendar, Ethiopic calendar, calendar, diary | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
78216
93e11478c954
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77279
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
13053 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
14169 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
13053 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; This collection of functions implements the features of calendar.el and | |
31 ;; diary.el that deal with the Coptic and Ethiopic calendars. | |
32 | |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
20209
diff
changeset
|
33 ;; Technical details of all the calendrical calculations can be found in |
61148
7f7db25577d9
Update reference to "Calendrical Calculations" book; there's a new edition.
Paul Eggert <eggert@twinsun.com>
parents:
54072
diff
changeset
|
34 ;; ``Calendrical Calculations: The Millennium Edition'' by Edward M. Reingold |
7f7db25577d9
Update reference to "Calendrical Calculations" book; there's a new edition.
Paul Eggert <eggert@twinsun.com>
parents:
54072
diff
changeset
|
35 ;; and Nachum Dershowitz, Cambridge University Press (2001). |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
20209
diff
changeset
|
36 |
13053 | 37 ;;; Code: |
38 | |
92613
28583a8ab749
(coptic-name): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
92580
diff
changeset
|
39 (require 'cal-julian) |
65145
ac895e21e622
(date): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
40 |
92613
28583a8ab749
(coptic-name): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
92580
diff
changeset
|
41 ;; Not constants because they get let-bound. |
13053 | 42 |
43 (defvar coptic-calendar-month-name-array | |
14568
60730f9e6b80
Coorect Ethiopic epoch and some spelling errors.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
44 ["Tut" "Babah" "Hatur" "Kiyahk" "Tubah" "Amshir" "Baramhat" "Barmundah" |
92897 | 45 "Bashans" "Baunah" "Abib" "Misra" "al-Nasi"] |
46 "Array of the month names in the Coptic calendar.") | |
13053 | 47 |
48 (defvar coptic-calendar-epoch (calendar-absolute-from-julian '(8 29 284)) | |
92966
446f7aee7bf1
(coptic-calendar-epoch): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
92897
diff
changeset
|
49 "Absolute date of start of Coptic calendar = August 29, 284 AD (Julian).") |
13053 | 50 |
92613
28583a8ab749
(coptic-name): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
92580
diff
changeset
|
51 (defvar coptic-name "Coptic" |
28583a8ab749
(coptic-name): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
92580
diff
changeset
|
52 "Used in some message strings.") |
13053 | 53 |
54 (defun coptic-calendar-leap-year-p (year) | |
55 "True if YEAR is a leap year on the Coptic calendar." | |
56 (zerop (mod (1+ year) 4))) | |
57 | |
58 (defun coptic-calendar-last-day-of-month (month year) | |
59 "Return last day of MONTH, YEAR on the Coptic calendar. | |
60 The 13th month is not really a month, but the 5 (6 in leap years) day period of | |
92627 | 61 Nisi (Kebus) at the end of the year." |
13053 | 62 (if (< month 13) |
63 30 | |
64 (if (coptic-calendar-leap-year-p year) | |
65 6 | |
66 5))) | |
67 | |
68 (defun calendar-absolute-from-coptic (date) | |
69 "Compute absolute date from Coptic date DATE. | |
70 The absolute date is the number of days elapsed since the (imaginary) | |
71 Gregorian date Sunday, December 31, 1 BC." | |
72 (let ((month (extract-calendar-month date)) | |
73 (day (extract-calendar-day date)) | |
74 (year (extract-calendar-year date))) | |
92897 | 75 (+ (1- coptic-calendar-epoch) ; days before start of calendar |
76 (* 365 (1- year)) ; days in prior years | |
77 (/ year 4) ; leap days in prior years | |
78 (* 30 (1- month)) ; days in prior months this year | |
79 day))) ; days so far this month | |
13053 | 80 |
81 (defun calendar-coptic-from-absolute (date) | |
82 "Compute the Coptic equivalent for absolute date DATE. | |
83 The result is a list of the form (MONTH DAY YEAR). | |
84 The absolute date is the number of days elapsed since the imaginary | |
85 Gregorian date Sunday, December 31, 1 BC." | |
86 (if (< date coptic-calendar-epoch) | |
92627 | 87 (list 0 0 0) ; pre-Coptic date |
13053 | 88 (let* ((approx (/ (- date coptic-calendar-epoch) |
92897 | 89 366)) ; approximation from below |
90 (year ; search forward from the approximation | |
13053 | 91 (+ approx |
92 (calendar-sum y approx | |
92897 | 93 (>= date (calendar-absolute-from-coptic |
94 (list 1 1 (1+ y)))) | |
95 1))) | |
92627 | 96 (month ; search forward from Tot |
13053 | 97 (1+ (calendar-sum m 1 |
92897 | 98 (> date |
99 (calendar-absolute-from-coptic | |
100 (list m | |
101 (coptic-calendar-last-day-of-month m | |
102 year) | |
103 year))) | |
104 1))) | |
92627 | 105 (day ; calculate the day by subtraction |
13053 | 106 (- date |
107 (1- (calendar-absolute-from-coptic (list month 1 year)))))) | |
92897 | 108 (list month day year)))) |
13053 | 109 |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
110 ;;;###cal-autoload |
13053 | 111 (defun calendar-coptic-date-string (&optional date) |
112 "String of Coptic date of Gregorian DATE. | |
113 Returns the empty string if DATE is pre-Coptic calendar. | |
114 Defaults to today's date if DATE is not given." | |
115 (let* ((coptic-date (calendar-coptic-from-absolute | |
116 (calendar-absolute-from-gregorian | |
117 (or date (calendar-current-date))))) | |
118 (y (extract-calendar-year coptic-date)) | |
119 (m (extract-calendar-month coptic-date))) | |
120 (if (< y 1) | |
121 "" | |
122 (let ((monthname (aref coptic-calendar-month-name-array (1- m))) | |
123 (day (int-to-string (extract-calendar-day coptic-date))) | |
124 (dayname nil) | |
125 (month (int-to-string m)) | |
126 (year (int-to-string y))) | |
127 (mapconcat 'eval calendar-date-display-form ""))))) | |
128 | |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
129 ;;;###cal-autoload |
13053 | 130 (defun calendar-print-coptic-date () |
131 "Show the Coptic calendar equivalent of the selected date." | |
132 (interactive) | |
133 (let ((f (calendar-coptic-date-string (calendar-cursor-to-date t)))) | |
134 (if (string-equal f "") | |
135 (message "Date is pre-%s calendar" coptic-name) | |
17571
e4c551837753
(calendar-print-coptic-date): Label Coptic/Ethiopic date in echo area.
Richard M. Stallman <rms@gnu.org>
parents:
17383
diff
changeset
|
136 (message "%s date: %s" coptic-name f)))) |
13053 | 137 |
138 (defun coptic-prompt-for-date () | |
139 "Ask for a Coptic date." | |
140 (let* ((today (calendar-current-date)) | |
141 (year (calendar-read | |
142 (format "%s calendar year (>0): " coptic-name) | |
92580
2a9b05a547d4
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
143 (lambda (x) (> x 0)) |
13053 | 144 (int-to-string |
145 (extract-calendar-year | |
146 (calendar-coptic-from-absolute | |
147 (calendar-absolute-from-gregorian today)))))) | |
148 (completion-ignore-case t) | |
54072
7cd960d120ba
(coptic-prompt-for-date): Use assoc-string instead of assoc-ignore-case.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
149 (month (cdr (assoc-string |
24190
77853cf5a2e5
(coptic-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
150 (completing-read |
77853cf5a2e5
(coptic-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
151 (format "%s calendar month name: " coptic-name) |
77853cf5a2e5
(coptic-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
152 (mapcar 'list |
77853cf5a2e5
(coptic-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
153 (append coptic-calendar-month-name-array nil)) |
77853cf5a2e5
(coptic-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
154 nil t) |
13053 | 155 (calendar-make-alist coptic-calendar-month-name-array |
54072
7cd960d120ba
(coptic-prompt-for-date): Use assoc-string instead of assoc-ignore-case.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
156 1) t))) |
13053 | 157 (last (coptic-calendar-last-day-of-month month year)) |
158 (day (calendar-read | |
159 (format "%s calendar day (1-%d): " coptic-name last) | |
92580
2a9b05a547d4
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
160 (lambda (x) (and (< 0 x) (<= x last)))))) |
13053 | 161 (list (list month day year)))) |
162 | |
92897 | 163 ;;;###cal-autoload |
164 (defun calendar-goto-coptic-date (date &optional noecho) | |
165 "Move cursor to Coptic date DATE. | |
166 Echo Coptic date unless NOECHO is t." | |
167 (interactive (coptic-prompt-for-date)) | |
168 (calendar-goto-date (calendar-gregorian-from-absolute | |
169 (calendar-absolute-from-coptic date))) | |
170 (or noecho (calendar-print-coptic-date))) | |
171 | |
92622 | 172 (defvar date) |
173 | |
174 ;; To be called from list-sexp-diary-entries, where DATE is bound. | |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
175 ;;;###diary-autoload |
13053 | 176 (defun diary-coptic-date () |
177 "Coptic calendar equivalent of date diary entry." | |
17383
dade44f8a6b0
(diary-coptic-date): Use `date'.
Richard M. Stallman <rms@gnu.org>
parents:
14568
diff
changeset
|
178 (let ((f (calendar-coptic-date-string date))) |
13053 | 179 (if (string-equal f "") |
180 (format "Date is pre-%s calendar" coptic-name) | |
17383
dade44f8a6b0
(diary-coptic-date): Use `date'.
Richard M. Stallman <rms@gnu.org>
parents:
14568
diff
changeset
|
181 (format "%s date: %s" coptic-name f)))) |
13053 | 182 |
183 (defconst ethiopic-calendar-month-name-array | |
14568
60730f9e6b80
Coorect Ethiopic epoch and some spelling errors.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14169
diff
changeset
|
184 ["Maskaram" "Teqemt" "Khedar" "Takhsas" "Ter" "Yakatit" "Magabit" "Miyazya" |
92897 | 185 "Genbot" "Sane" "Hamle" "Nahas" "Paguem"] |
186 "Array of the month names in the Ethiopic calendar.") | |
13053 | 187 |
20209
fd00ceeb06c6
(ethiopic-calendar-epoch): Correct to 8 CE.
Karl Heuer <kwzh@gnu.org>
parents:
17571
diff
changeset
|
188 (defconst ethiopic-calendar-epoch 2796 |
fd00ceeb06c6
(ethiopic-calendar-epoch): Correct to 8 CE.
Karl Heuer <kwzh@gnu.org>
parents:
17571
diff
changeset
|
189 "Absolute date of start of Ethiopic calendar = August 29, 8 C.E. (Julian).") |
13053 | 190 |
92897 | 191 (defconst ethiopic-name "Ethiopic" |
192 "Used in some message strings.") | |
13053 | 193 |
194 (defun calendar-absolute-from-ethiopic (date) | |
195 "Compute absolute date from Ethiopic date DATE. | |
196 The absolute date is the number of days elapsed since the (imaginary) | |
197 Gregorian date Sunday, December 31, 1 BC." | |
198 (let ((coptic-calendar-epoch ethiopic-calendar-epoch)) | |
199 (calendar-absolute-from-coptic date))) | |
200 | |
201 (defun calendar-ethiopic-from-absolute (date) | |
202 "Compute the Ethiopic equivalent for absolute date DATE. | |
203 The result is a list of the form (MONTH DAY YEAR). | |
204 The absolute date is the number of days elapsed since the imaginary | |
205 Gregorian date Sunday, December 31, 1 BC." | |
206 (let ((coptic-calendar-epoch ethiopic-calendar-epoch)) | |
207 (calendar-coptic-from-absolute date))) | |
208 | |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
209 ;;;###cal-autoload |
13053 | 210 (defun calendar-ethiopic-date-string (&optional date) |
211 "String of Ethiopic date of Gregorian DATE. | |
212 Returns the empty string if DATE is pre-Ethiopic calendar. | |
213 Defaults to today's date if DATE is not given." | |
214 (let ((coptic-calendar-epoch ethiopic-calendar-epoch) | |
215 (coptic-name ethiopic-name) | |
216 (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) | |
217 (calendar-coptic-date-string date))) | |
218 | |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
219 ;;;###cal-autoload |
13053 | 220 (defun calendar-print-ethiopic-date () |
221 "Show the Ethiopic calendar equivalent of the selected date." | |
222 (interactive) | |
223 (let ((coptic-calendar-epoch ethiopic-calendar-epoch) | |
224 (coptic-name ethiopic-name) | |
225 (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) | |
226 (call-interactively 'calendar-print-coptic-date))) | |
227 | |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
228 ;;;###cal-autoload |
13053 | 229 (defun calendar-goto-ethiopic-date (date &optional noecho) |
230 "Move cursor to Ethiopic date DATE. | |
231 Echo Ethiopic date unless NOECHO is t." | |
232 (interactive | |
233 (let ((coptic-calendar-epoch ethiopic-calendar-epoch) | |
234 (coptic-name ethiopic-name) | |
235 (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) | |
236 (coptic-prompt-for-date))) | |
237 (calendar-goto-date (calendar-gregorian-from-absolute | |
238 (calendar-absolute-from-ethiopic date))) | |
239 (or noecho (calendar-print-ethiopic-date))) | |
240 | |
92613
28583a8ab749
(coptic-name): Add doc string.
Glenn Morris <rgm@gnu.org>
parents:
92580
diff
changeset
|
241 ;; To be called from list-sexp-diary-entries, where DATE is bound. |
92828
5d415a63a344
(generated-autoload-file): Don't set, instead use different values of
Glenn Morris <rgm@gnu.org>
parents:
92627
diff
changeset
|
242 ;;;###diary-autoload |
13053 | 243 (defun diary-ethiopic-date () |
244 "Ethiopic calendar equivalent of date diary entry." | |
245 (let ((coptic-calendar-epoch ethiopic-calendar-epoch) | |
246 (coptic-name ethiopic-name) | |
247 (coptic-calendar-month-name-array ethiopic-calendar-month-name-array)) | |
248 (diary-coptic-date))) | |
249 | |
250 (provide 'cal-coptic) | |
251 | |
92580
2a9b05a547d4
Unquote lambda functions. Add autoload cookies to functions formerly
Glenn Morris <rgm@gnu.org>
parents:
79703
diff
changeset
|
252 ;; arch-tag: 72d49161-25df-4072-9312-b182cdca7627 |
13053 | 253 ;;; cal-coptic.el ends here |