Mercurial > emacs
annotate lisp/timezone.el @ 27368:d1ae4740c8db
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 19 Jan 2000 16:26:37 +0000 |
parents | 8a541d5c62c0 |
children | 005bb11b61bb |
rev | line source |
---|---|
13337 | 1 ;;; timezone.el --- time zone package for GNU Emacs |
2908 | 2 |
25552
fbfe59033eaf
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
25383
diff
changeset
|
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 1996, 1999 Free Software Foundation, Inc. |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
4 |
13337 | 5 ;; Author: Masanobu Umeda |
6 ;; Maintainer: umerin@mse.kyutech.ac.jp | |
7 ;; Keywords: news | |
2908 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
2908 | 25 |
26 ;;; Code: | |
27 | |
28 (defvar timezone-world-timezones | |
29 '(("PST" . -800) | |
30 ("PDT" . -700) | |
31 ("MST" . -700) | |
32 ("MDT" . -600) | |
33 ("CST" . -600) | |
34 ("CDT" . -500) | |
35 ("EST" . -500) | |
36 ("EDT" . -400) | |
37 ("AST" . -400) ;by <clamen@CS.CMU.EDU> | |
38 ("NST" . -330) ;by <clamen@CS.CMU.EDU> | |
9770
9b9006f58e48
(timezone-world-timezones): Add "UT" -> +000.
Richard M. Stallman <rms@gnu.org>
parents:
9503
diff
changeset
|
39 ("UT" . +000) |
2908 | 40 ("GMT" . +000) |
41 ("BST" . +100) | |
42 ("MET" . +100) | |
43 ("EET" . +200) | |
44 ("JST" . +900) | |
45 ("GMT+1" . +100) ("GMT+2" . +200) ("GMT+3" . +300) | |
46 ("GMT+4" . +400) ("GMT+5" . +500) ("GMT+6" . +600) | |
47 ("GMT+7" . +700) ("GMT+8" . +800) ("GMT+9" . +900) | |
48 ("GMT+10" . +1000) ("GMT+11" . +1100) ("GMT+12" . +1200) ("GMT+13" . +1300) | |
49 ("GMT-1" . -100) ("GMT-2" . -200) ("GMT-3" . -300) | |
50 ("GMT-4" . -400) ("GMT-5" . -500) ("GMT-6" . -600) | |
51 ("GMT-7" . -700) ("GMT-8" . -800) ("GMT-9" . -900) | |
52 ("GMT-10" . -1000) ("GMT-11" . -1100) ("GMT-12" . -1200)) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
53 "*Time differentials of timezone from GMT in +-HHMM form. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
54 This list is obsolescent, and is present only for backwards compatibility, |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
55 because time zone names are ambiguous in practice. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
56 Use `current-time-zone' instead.") |
2908 | 57 |
58 (defvar timezone-months-assoc | |
59 '(("JAN" . 1)("FEB" . 2)("MAR" . 3) | |
60 ("APR" . 4)("MAY" . 5)("JUN" . 6) | |
61 ("JUL" . 7)("AUG" . 8)("SEP" . 9) | |
62 ("OCT" . 10)("NOV" . 11)("DEC" . 12)) | |
63 "Alist of first three letters of a month and its numerical representation.") | |
64 | |
65 (defun timezone-make-date-arpa-standard (date &optional local timezone) | |
66 "Convert DATE to an arpanet standard date. | |
24305
85040d56fb60
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
Dave Love <fx@gnu.org>
parents:
19190
diff
changeset
|
67 Optional 2nd argument LOCAL specifies the default local timezone of the DATE; |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
68 if nil, GMT is assumed. |
24305
85040d56fb60
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
Dave Love <fx@gnu.org>
parents:
19190
diff
changeset
|
69 Optional 3rd argument TIMEZONE specifies a time zone to be represented in; |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
70 if nil, the local time zone is assumed." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
71 (let ((new (timezone-fix-time date local timezone))) |
2908 | 72 (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2) |
73 (timezone-make-time-string | |
74 (aref new 3) (aref new 4) (aref new 5)) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
75 (aref new 6)) |
2908 | 76 )) |
77 | |
78 (defun timezone-make-date-sortable (date &optional local timezone) | |
79 "Convert DATE to a sortable date string. | |
24305
85040d56fb60
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
Dave Love <fx@gnu.org>
parents:
19190
diff
changeset
|
80 Optional 2nd argument LOCAL specifies the default local timezone of the DATE; |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
81 if nil, GMT is assumed. |
24305
85040d56fb60
(timezone-make-date-sortable, timezone-make-date-arpa-standard): Doc fix.
Dave Love <fx@gnu.org>
parents:
19190
diff
changeset
|
82 Optional 3rd argument TIMEZONE specifies a timezone to be represented in; |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
83 if nil, the local time zone is assumed." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
84 (let ((new (timezone-fix-time date local timezone))) |
2908 | 85 (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2) |
86 (timezone-make-time-string | |
87 (aref new 3) (aref new 4) (aref new 5))) | |
88 )) | |
89 | |
90 | |
91 ;; | |
92 ;; Parsers and Constructors of Date and Time | |
93 ;; | |
94 | |
95 (defun timezone-make-arpa-date (year month day time &optional timezone) | |
96 "Make arpanet standard date string from YEAR, MONTH, DAY, and TIME. | |
97 Optional argument TIMEZONE specifies a time zone." | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
98 (let ((zone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
99 (if (listp timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
100 (let* ((m (timezone-zone-to-minute timezone)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
101 (absm (if (< m 0) (- m) m))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
102 (format "%c%02d%02d" |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
103 (if (< m 0) ?- ?+) (/ absm 60) (% absm 60))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
104 timezone))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
105 (format "%02d %s %04d %s %s" |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
106 day |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
107 (capitalize (car (rassq month timezone-months-assoc))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
108 year |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
109 time |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
110 zone))) |
2908 | 111 |
112 (defun timezone-make-sortable-date (year month day time) | |
113 "Make sortable date string from YEAR, MONTH, DAY, and TIME." | |
114 (format "%4d%02d%02d%s" | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
115 year month day time)) |
2908 | 116 |
117 (defun timezone-make-time-string (hour minute second) | |
118 "Make time string from HOUR, MINUTE, and SECOND." | |
119 (format "%02d:%02d:%02d" hour minute second)) | |
120 | |
121 (defun timezone-parse-date (date) | |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
122 "Parse DATE and return a vector [YEAR MONTH DAY TIME TIMEZONE]. |
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
123 19 is prepended to year if necessary. Timezone may be nil if nothing. |
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
124 Understands the following styles: |
2908 | 125 (1) 14 Apr 89 03:20[:12] [GMT] |
126 (2) Fri, 17 Mar 89 4:01[:33] [GMT] | |
127 (3) Mon Jan 16 16:12[:37] [GMT] 1989 | |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
128 (4) 6 May 1992 1641-JST (Wednesday) |
9988
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
129 (5) 22-AUG-1993 10:59:12.82 |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
130 (6) Thu, 11 Apr 16:17:12 91 [MET] |
15632
b7fddad951a0
(timezone-parse-date): Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents:
15614
diff
changeset
|
131 (7) Mon, 6 Jul 16:47:20 T 1992 [MET] |
19190
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
132 (8) 1996-06-24 21:13:12 [GMT] |
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
133 (9) 1996-06-24 21:13-ZONE" |
15614
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
134 ;; Get rid of any text properties. |
12482
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
135 (and (stringp date) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
136 (or (text-properties-at 0 date) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
137 (next-property-change 0 date)) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
138 (setq date (copy-sequence date)) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
139 (set-text-properties 0 (length date) nil date)) |
2908 | 140 (let ((date (or date "")) |
141 (year nil) | |
142 (month nil) | |
143 (day nil) | |
144 (time nil) | |
145 (zone nil)) ;This may be nil. | |
146 (cond ((string-match | |
17627
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
147 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
148 ;; Styles: (1) and (2) with timezone and buggy timezone |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
149 ;; This is most common in mail and news, |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
150 ;; so it is worth trying first. |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
151 (setq year 3 month 2 day 1 time 4 zone 5)) |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
152 ((string-match |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
153 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\'" date) |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
154 ;; Styles: (1) and (2) without timezone |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
155 (setq year 3 month 2 day 1 time 4 zone nil)) |
2492168c1d05
(timezone-parse-date): Match forms 1 and 2 first.
Richard M. Stallman <rms@gnu.org>
parents:
16942
diff
changeset
|
156 ((string-match |
9988
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
157 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\'" date) |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
158 ;; Styles: (6) and (7) without timezone |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
159 (setq year 6 month 3 day 2 time 4 zone nil)) |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
160 ((string-match |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
161 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
162 ;; Styles: (6) and (7) with timezone and buggy timezone |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
163 (setq year 6 month 3 day 2 time 4 zone 7)) |
23ad7670da34
(timezone-parse-date): Handle two new formats (6 and 7).
Richard M. Stallman <rms@gnu.org>
parents:
9770
diff
changeset
|
164 ((string-match |
2908 | 165 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([0-9]+\\)" date) |
166 ;; Styles: (3) without timezone | |
167 (setq year 4 month 1 day 2 time 3 zone nil)) | |
168 ((string-match | |
169 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)[ \t]+\\([0-9]+\\)" date) | |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
170 ;; Styles: (3) with timezone |
2908 | 171 (setq year 5 month 1 day 2 time 3 zone 4)) |
172 ((string-match | |
173 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) | |
174 ;; Styles: (4) with timezone | |
175 (setq year 3 month 2 day 1 time 4 zone 5)) | |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
176 ((string-match |
24697
4708ef6e279e
(timezone-parse-date): Recognize new format used in internet cookies.
Karl Heuer <kwzh@gnu.org>
parents:
24570
diff
changeset
|
177 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?[ \t]+\\([-+a-zA-Z0-9]+\\)" date) |
4708ef6e279e
(timezone-parse-date): Recognize new format used in internet cookies.
Karl Heuer <kwzh@gnu.org>
parents:
24570
diff
changeset
|
178 ;; Styles: (5) with timezone. |
4708ef6e279e
(timezone-parse-date): Recognize new format used in internet cookies.
Karl Heuer <kwzh@gnu.org>
parents:
24570
diff
changeset
|
179 (setq year 3 month 2 day 1 time 4 zone 6)) |
4708ef6e279e
(timezone-parse-date): Recognize new format used in internet cookies.
Karl Heuer <kwzh@gnu.org>
parents:
24570
diff
changeset
|
180 ((string-match |
24570
d8a0152b923f
(timezone-parse-date): Corrected regexp for
Richard M. Stallman <rms@gnu.org>
parents:
24305
diff
changeset
|
181 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?" date) |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
182 ;; Styles: (5) without timezone. |
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
183 (setq year 3 month 2 day 1 time 4 zone nil)) |
15614
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
184 ((string-match |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
185 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
186 ;; Styles: (8) with timezone. |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
187 (setq year 1 month 2 day 3 time 4 zone 5)) |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
188 ((string-match |
19190
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
189 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+\\)[ \t]*\\([-+a-zA-Z0-9:]+\\)" date) |
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
190 ;; Styles: (8) with timezone with a colon in it. |
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
191 (setq year 1 month 2 day 3 time 4 zone 5)) |
7903b3fb5ec5
(timezone-parse-date): Handle additional style (9).
Richard M. Stallman <rms@gnu.org>
parents:
17627
diff
changeset
|
192 ((string-match |
15614
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
193 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)" date) |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
194 ;; Styles: (8) without timezone. |
6fb29f91d5ec
(timezone-parse-date): Handle ISO 8601 dates, so rmailsort does the right
Miles Bader <miles@gnu.org>
parents:
14169
diff
changeset
|
195 (setq year 1 month 2 day 3 time 4 zone nil)) |
2908 | 196 ) |
25383 | 197 (when year |
198 (setq year (match-string year date)) | |
25577
8a541d5c62c0
(timezone-parse-date): Use < 69 not < 70 to distinguish 20YY from 19YY.
Richard M. Stallman <rms@gnu.org>
parents:
25552
diff
changeset
|
199 ;; Guess ambiguous years. Assume years < 69 don't predate the |
25383 | 200 ;; Unix Epoch, so are 2000+. Three-digit years -- do they ever |
201 ;; occur? -- are (arbitrarily) assumed to be 21st century. | |
202 (if (< (length year) 4) | |
203 (let ((y (string-to-int year))) | |
25577
8a541d5c62c0
(timezone-parse-date): Use < 69 not < 70 to distinguish 20YY from 19YY.
Richard M. Stallman <rms@gnu.org>
parents:
25552
diff
changeset
|
204 (if (< y 69) |
25383 | 205 (setq y (+ y 100))) |
206 (setq year (int-to-string (+ 1900 y))))) | |
207 (setq month | |
208 (if (= (aref date (+ (match-beginning month) 2)) ?-) | |
209 ;; Handle numeric months, spanning exactly two digits. | |
210 (substring date | |
211 (match-beginning month) | |
212 (+ (match-beginning month) 2)) | |
213 (let* ((string (substring date | |
214 (match-beginning month) | |
215 (+ (match-beginning month) 3))) | |
216 (monthnum | |
217 (cdr (assoc (upcase string) timezone-months-assoc)))) | |
218 (if monthnum | |
219 (int-to-string monthnum))))) | |
220 (setq day (match-string day date)) | |
221 (setq time (match-string time date))) | |
222 (if zone (setq zone (match-string zone date))) | |
2908 | 223 ;; Return a vector. |
16942
eca5dfcd481d
(timezone-parse-date): Treat unknown month name
Richard M. Stallman <rms@gnu.org>
parents:
16900
diff
changeset
|
224 (if (and year month) |
2908 | 225 (vector year month day time zone) |
25383 | 226 (vector "0" "0" "0" "0" nil)))) |
2908 | 227 |
228 (defun timezone-parse-time (time) | |
229 "Parse TIME (HH:MM:SS) and return a vector [hour minute second]. | |
230 Recognize HH:MM:SS, HH:MM, HHMMSS, HHMM." | |
231 (let ((time (or time "")) | |
25383 | 232 hour minute second) |
2908 | 233 (cond ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)\\'" time) |
234 ;; HH:MM:SS | |
235 (setq hour 1 minute 2 second 3)) | |
236 ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\)\\'" time) | |
237 ;; HH:MM | |
238 (setq hour 1 minute 2 second nil)) | |
239 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time) | |
240 ;; HHMMSS | |
241 (setq hour 1 minute 2 second 3)) | |
242 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time) | |
243 ;; HHMM | |
244 (setq hour 1 minute 2 second nil)) | |
245 ) | |
246 ;; Return [hour minute second] | |
247 (vector | |
25383 | 248 (if hour (match-string hour time) "0") |
249 (if minute (match-string minute time) "0") | |
250 (if second (match-string second time) "0")))) | |
2908 | 251 |
252 | |
253 ;; Miscellaneous | |
254 | |
255 (defun timezone-zone-to-minute (timezone) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
256 "Translate TIMEZONE to an integer minute offset from GMT. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
257 TIMEZONE can be a cons cell containing the output of current-time-zone, |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
258 or an integer of the form +-HHMM, or a time zone name." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
259 (cond |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
260 ((consp timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
261 (/ (car timezone) 60)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
262 (timezone |
2908 | 263 (progn |
264 (setq timezone | |
265 (or (cdr (assoc (upcase timezone) timezone-world-timezones)) | |
266 ;; +900 | |
267 timezone)) | |
268 (if (stringp timezone) | |
269 (setq timezone (string-to-int timezone))) | |
270 ;; Taking account of minute in timezone. | |
271 ;; HHMM -> MM | |
4510
10baf5e7550f
(timezone-fix-time, timezone-zone-to-minute): Simplify with `abs'
Paul Eggert <eggert@twinsun.com>
parents:
3505
diff
changeset
|
272 (let* ((abszone (abs timezone)) |
2908 | 273 (minutes (+ (* 60 (/ abszone 100)) (% abszone 100)))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
274 (if (< timezone 0) (- minutes) minutes)))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
275 (t 0))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
276 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
277 (defun timezone-time-from-absolute (date seconds) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
278 "Compute the UTC time equivalent to DATE at time SECONDS after midnight. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
279 Return a list suitable as an argument to current-time-zone, |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
280 or nil if the date cannot be thus represented. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
281 DATE is the number of days elapsed since the (imaginary) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
282 Gregorian date Sunday, December 31, 1 BC." |
16476
0bf8dab67f91
(timezone-time-from-absolute): Fix off-by-one
Paul Eggert <eggert@twinsun.com>
parents:
15632
diff
changeset
|
283 (let* ((current-time-origin 719163) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
284 ;; (timezone-absolute-from-gregorian 1 1 1970) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
285 (days (- date current-time-origin)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
286 (seconds-per-day (float 86400)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
287 (seconds (+ seconds (* days seconds-per-day))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
288 (current-time-arithmetic-base (float 65536)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
289 (hi (floor (/ seconds current-time-arithmetic-base))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
290 (hibase (* hi current-time-arithmetic-base)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
291 (lo (floor (- seconds hibase)))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
292 (and (< (abs (- seconds (+ hibase lo))) 2) ;; Check for integer overflow. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
293 (cons hi lo)))) |
2908 | 294 |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
295 (defun timezone-time-zone-from-absolute (date seconds) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
296 "Compute the local time zone for DATE at time SECONDS after midnight. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
297 Return a list in the same format as current-time-zone's result, |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
298 or nil if the local time zone could not be computed. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
299 DATE is the number of days elapsed since the (imaginary) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
300 Gregorian date Sunday, December 31, 1 BC." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
301 (and (fboundp 'current-time-zone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
302 (let ((utc-time (timezone-time-from-absolute date seconds))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
303 (and utc-time |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
304 (let ((zone (current-time-zone utc-time))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
305 (and (car zone) zone)))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
306 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
307 (defun timezone-fix-time (date local timezone) |
3505 | 308 "Convert DATE (default timezone LOCAL) to YYYY-MM-DD-HH-MM-SS-ZONE vector. |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
309 If LOCAL is nil, it is assumed to be GMT. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
310 If TIMEZONE is nil, use the local time zone." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
311 (let* ((date (timezone-parse-date date)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
312 (year (string-to-int (aref date 0))) |
10255
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
313 (year (cond ((< year 50) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
314 (+ year 2000)) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
315 ((< year 100) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
316 (+ year 1900)) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
317 (t year))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
318 (month (string-to-int (aref date 1))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
319 (day (string-to-int (aref date 2))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
320 (time (timezone-parse-time (aref date 3))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
321 (hour (string-to-int (aref time 0))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
322 (minute (string-to-int (aref time 1))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
323 (second (string-to-int (aref time 2))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
324 (local (or (aref date 4) local)) ;Use original if defined |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
325 (timezone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
326 (or timezone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
327 (timezone-time-zone-from-absolute |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
328 (timezone-absolute-from-gregorian month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
329 (+ second (* 60 (+ minute (* 60 hour))))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
330 (diff (- (timezone-zone-to-minute timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
331 (timezone-zone-to-minute local))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
332 (minute (+ minute diff)) |
4510
10baf5e7550f
(timezone-fix-time, timezone-zone-to-minute): Simplify with `abs'
Paul Eggert <eggert@twinsun.com>
parents:
3505
diff
changeset
|
333 (hour-fix (floor minute 60))) |
2908 | 334 (setq hour (+ hour hour-fix)) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
335 (setq minute (- minute (* 60 hour-fix))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
336 ;; HOUR may be larger than 24 or smaller than 0. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
337 (cond ((<= 24 hour) ;24 -> 00 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
338 (setq hour (- hour 24)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
339 (setq day (1+ day)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
340 (if (< (timezone-last-day-of-month month year) day) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
341 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
342 (setq month (1+ month)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
343 (setq day 1) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
344 (if (< 12 month) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
345 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
346 (setq month 1) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
347 (setq year (1+ year)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
348 )) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
349 ))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
350 ((> 0 hour) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
351 (setq hour (+ hour 24)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
352 (setq day (1- day)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
353 (if (> 1 day) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
354 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
355 (setq month (1- month)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
356 (if (> 1 month) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
357 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
358 (setq month 12) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
359 (setq year (1- year)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
360 )) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
361 (setq day (timezone-last-day-of-month month year)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
362 ))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
363 ) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
364 (vector year month day hour minute second timezone))) |
2908 | 365 |
366 ;; Partly copied from Calendar program by Edward M. Reingold. | |
367 ;; Thanks a lot. | |
368 | |
369 (defun timezone-last-day-of-month (month year) | |
370 "The last day in MONTH during YEAR." | |
371 (if (and (= month 2) (timezone-leap-year-p year)) | |
372 29 | |
373 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
374 | |
375 (defun timezone-leap-year-p (year) | |
376 "Returns t if YEAR is a Gregorian leap year." | |
377 (or (and (zerop (% year 4)) | |
378 (not (zerop (% year 100)))) | |
379 (zerop (% year 400)))) | |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
380 |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
381 (defun timezone-day-number (month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
382 "Return the day number within the year of the date month/day/year." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
383 (let ((day-of-year (+ day (* 31 (1- month))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
384 (if (> month 2) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
385 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
386 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
387 (if (timezone-leap-year-p year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
388 (setq day-of-year (1+ day-of-year))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
389 day-of-year)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
390 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
391 (defun timezone-absolute-from-gregorian (month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
392 "The number of days between the Gregorian date 12/31/1 BC and month/day/year. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
393 The Gregorian date Sunday, December 31, 1 BC is imaginary." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
394 (+ (timezone-day-number month day year);; Days this year |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
395 (* 365 (1- year));; + Days in prior years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
396 (/ (1- year) 4);; + Julian leap years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
397 (- (/ (1- year) 100));; - century years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
398 (/ (1- year) 400)));; + Gregorian leap years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
399 |
25383 | 400 (provide 'timezone) |
401 | |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
402 ;;; timezone.el ends here |