Mercurial > emacs
annotate lisp/calendar/cal-persia.el @ 83369:d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
* lisp/xt-mouse.el (xterm-mouse-x, xterm-mouse-y): Convert to terminal parameters.
(xterm-mouse-position-function, xterm-mouse-event): Update.
(xterm-mouse-mode): Don't depend on current value of window-system.
(turn-on-xterm-mouse-tracking, turn-off-xterm-mouse-tracking): Update
for multi-tty.
(turn-on-xterm-mouse-tracking-on-terminal)
(turn-off-xterm-mouse-tracking-on-terminal)
(xterm-mouse-handle-delete-frame): New functions.
(delete-frame-functions, after-make-frame-functions)
(suspend-tty-functions, resume-tty-functions): Install extra hooks for multi-tty.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-409
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 11 Sep 2005 03:06:33 +0000 |
parents | ac895e21e622 |
children | a55ee709ec8d a3716f7538f2 |
rev | line source |
---|---|
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
24186
diff
changeset
|
1 ;;; cal-persia.el --- calendar functions for the Persian calendar |
14914 | 2 |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
17382
diff
changeset
|
3 ;; Copyright (C) 1996, 1997 Free Software Foundation, Inc. |
14914 | 4 |
5 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | |
6 ;; Keywords: calendar | |
7 ;; Human-Keywords: Persian calendar, calendar, diary | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
15070
ec84bec5804e
Update some comments.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
14914
diff
changeset
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
14914 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This collection of functions implements the features of calendar.el and | |
29 ;; diary.el that deal with the Persian calendar. | |
30 | |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
17382
diff
changeset
|
31 ;; 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:
52401
diff
changeset
|
32 ;; ``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:
52401
diff
changeset
|
33 ;; and Nachum Dershowitz, Cambridge University Press (2001). |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
17382
diff
changeset
|
34 |
14914 | 35 ;; Comments, corrections, and improvements should be sent to |
36 ;; Edward M. Reingold Department of Computer Science | |
37 ;; (217) 333-6733 University of Illinois at Urbana-Champaign | |
38 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue | |
39 ;; Urbana, Illinois 61801 | |
40 | |
41 ;;; Code: | |
42 | |
65145
ac895e21e622
(date): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
43 (defvar date) |
ac895e21e622
(date): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
44 |
14914 | 45 (require 'cal-julian) |
46 | |
47 (defvar persian-calendar-month-name-array | |
48 ["Farvardin" "Ordibehest" "Xordad" "Tir" "Mordad" "Sahrivar" "Mehr" "Aban" | |
49 "Azar" "Dey" "Bahman" "Esfand"]) | |
50 | |
51 (defvar persian-calendar-epoch (calendar-absolute-from-julian '(3 19 622)) | |
52 "Absolute date of start of Persian calendar = March 19, 622 A.D. (Julian).") | |
53 | |
54 (defun persian-calendar-leap-year-p (year) | |
55 "True if YEAR is a leap year on the Persian calendar." | |
56 (< (mod (* (mod (mod (if (<= 0 year) | |
57 ; No year zero | |
58 (+ year 2346) | |
59 (+ year 2347)) | |
60 2820) | |
61 768) | |
62 683) | |
63 2820) | |
64 683)) | |
65 | |
66 (defun persian-calendar-last-day-of-month (month year) | |
67 "Return last day of MONTH, YEAR on the Persian calendar." | |
68 (cond | |
69 ((< month 7) 31) | |
70 ((or (< month 12) (persian-calendar-leap-year-p year)) 30) | |
71 (t 29))) | |
72 | |
73 (defun calendar-absolute-from-persian (date) | |
74 "Compute absolute date from Persian date DATE. | |
75 The absolute date is the number of days elapsed since the (imaginary) | |
76 Gregorian date Sunday, December 31, 1 BC." | |
77 (let ((month (extract-calendar-month date)) | |
78 (day (extract-calendar-day date)) | |
79 (year (extract-calendar-year date))) | |
80 (if (< year 0) | |
81 (+ (calendar-absolute-from-persian | |
82 (list month day (1+ (mod year 2820)))) | |
83 (* 1029983 (floor year 2820))) | |
84 (+ (1- persian-calendar-epoch); Days before epoch | |
85 (* 365 (1- year)) ; Days in prior years. | |
86 (* 683 ; Leap days in prior 2820-year cycles | |
87 (floor (+ year 2345) 2820)) | |
88 (* 186 ; Leap days in prior 768 year cycles | |
89 (floor (mod (+ year 2345) 2820) 768)) | |
90 (floor; Leap years in current 768 or 516 year cycle | |
91 (* 683 (mod (mod (+ year 2345) 2820) 768)) | |
92 2820) | |
93 -568 ; Leap years in Persian years -2345...-1 | |
94 (calendar-sum ; Days in prior months this year. | |
95 m 1 (< m month) | |
96 (persian-calendar-last-day-of-month m year)) | |
97 day)))) ; Days so far this month. | |
98 | |
99 (defun calendar-persian-year-from-absolute (date) | |
100 "Persian year corresponding to the absolute DATE." | |
101 (let* ((d0 ; Prior days since start of 2820 cycles | |
102 (- date (calendar-absolute-from-persian (list 1 1 -2345)))) | |
103 (n2820 ; Completed 2820-year cycles | |
104 (floor d0 1029983)) | |
105 (d1 ; Prior days not in n2820 | |
106 (mod d0 1029983)) | |
107 (n768 ; 768-year cycles not in n2820 | |
108 (floor d1 280506)) | |
109 (d2 ; Prior days not in n2820 or n768 | |
110 (mod d1 280506)) | |
111 (n1 ; Years not in n2820 or n768 | |
112 ; we want is | |
113 ; (floor (+ (* 2820 d2) (* 2820 366)) 1029983)) | |
114 ; but that causes overflow, so we use | |
115 (let ((a (floor d2 366)); we use 366 as the divisor because | |
116 ; (2820*366 mod 1029983) is small | |
117 (b (mod d2 366))) | |
118 (+ 1 a (floor (+ (* 2137 a) (* 2820 b) 2137) 1029983)))) | |
119 (year (+ (* 2820 n2820); Complete 2820 year cycles | |
120 (* 768 n768) ; Complete 768 year cycles | |
121 (if ; Remaining years | |
122 ; Last day of 2820 year cycle | |
123 (= d1 1029617) | |
124 (1- n1) | |
125 n1) | |
126 -2345))) ; Years before year 1 | |
127 (if (< year 1) | |
128 (1- year); No year zero | |
129 year))) | |
130 | |
131 (defun calendar-persian-from-absolute (date) | |
132 "Compute the Persian equivalent for absolute date DATE. | |
133 The result is a list of the form (MONTH DAY YEAR). | |
134 The absolute date is the number of days elapsed since the imaginary | |
135 Gregorian date Sunday, December 31, 1 BC." | |
136 (let* ((year (calendar-persian-year-from-absolute date)) | |
137 (month ; Search forward from Farvardin | |
138 (1+ (calendar-sum m 1 | |
139 (> date | |
140 (calendar-absolute-from-persian | |
141 (list | |
142 m | |
143 (persian-calendar-last-day-of-month m year) | |
144 year))) | |
145 1))) | |
146 (day ; Calculate the day by subtraction | |
147 (- date (1- (calendar-absolute-from-persian | |
148 (list month 1 year)))))) | |
149 (list month day year))) | |
150 | |
151 (defun calendar-persian-date-string (&optional date) | |
152 "String of Persian date of Gregorian DATE. | |
153 Defaults to today's date if DATE is not given." | |
154 (let* ((persian-date (calendar-persian-from-absolute | |
155 (calendar-absolute-from-gregorian | |
156 (or date (calendar-current-date))))) | |
157 (y (extract-calendar-year persian-date)) | |
158 (m (extract-calendar-month persian-date))) | |
159 (let ((monthname (aref persian-calendar-month-name-array (1- m))) | |
160 (day (int-to-string (extract-calendar-day persian-date))) | |
161 (dayname nil) | |
162 (month (int-to-string m)) | |
163 (year (int-to-string y))) | |
164 (mapconcat 'eval calendar-date-display-form "")))) | |
165 | |
166 (defun calendar-print-persian-date () | |
167 "Show the Persian calendar equivalent of the selected date." | |
168 (interactive) | |
169 (message "Persian date: %s" | |
170 (calendar-persian-date-string (calendar-cursor-to-date t)))) | |
171 | |
172 (defun calendar-goto-persian-date (date &optional noecho) | |
173 "Move cursor to Persian date DATE. | |
174 Echo Persian date unless NOECHO is t." | |
175 (interactive (persian-prompt-for-date)) | |
176 (calendar-goto-date (calendar-gregorian-from-absolute | |
177 (calendar-absolute-from-persian date))) | |
178 (or noecho (calendar-print-persian-date))) | |
179 | |
180 (defun persian-prompt-for-date () | |
181 "Ask for a Persian date." | |
182 (let* ((today (calendar-current-date)) | |
183 (year (calendar-read | |
184 "Persian calendar year (not 0): " | |
185 '(lambda (x) (/= x 0)) | |
186 (int-to-string | |
187 (extract-calendar-year | |
188 (calendar-persian-from-absolute | |
189 (calendar-absolute-from-gregorian today)))))) | |
190 (completion-ignore-case t) | |
191 (month (cdr (assoc | |
192 (completing-read | |
193 "Persian calendar month name: " | |
194 (mapcar 'list | |
195 (append persian-calendar-month-name-array nil)) | |
24186
8aae7db1922c
(persian-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
196 nil t) |
14914 | 197 (calendar-make-alist persian-calendar-month-name-array |
24186
8aae7db1922c
(persian-prompt-for-date): Use assoc-ignore-case and do not capitalize
Richard M. Stallman <rms@gnu.org>
parents:
20462
diff
changeset
|
198 1)))) |
14914 | 199 (last (persian-calendar-last-day-of-month month year)) |
200 (day (calendar-read | |
201 (format "Persian calendar day (1-%d): " last) | |
202 '(lambda (x) (and (< 0 x) (<= x last)))))) | |
203 (list (list month day year)))) | |
204 | |
205 (defun diary-persian-date () | |
206 "Persian calendar equivalent of date diary entry." | |
17382
41db5b776fe4
(diary-persian-date): Use `date'.
Richard M. Stallman <rms@gnu.org>
parents:
15259
diff
changeset
|
207 (format "Persian date: %s" (calendar-persian-date-string date))) |
14914 | 208 |
15259
984ea4011d7e
Renamed from cal-persian.el to avoid 14-character limitation.
Karl Heuer <kwzh@gnu.org>
parents:
15070
diff
changeset
|
209 (provide 'cal-persia) |
14914 | 210 |
52401 | 211 ;;; arch-tag: 2832383c-e4b4-4dc2-8ee9-cfbdd53e5e2d |
15259
984ea4011d7e
Renamed from cal-persian.el to avoid 14-character limitation.
Karl Heuer <kwzh@gnu.org>
parents:
15070
diff
changeset
|
212 ;;; cal-persia.el ends here |