Mercurial > emacs
annotate lisp/timezone.el @ 110724:3ccf1931ae33
src/gnutls.c: Doc fixes. Make some functions static.
(emacs_gnutls_handshake, gnutls_make_error, gnutls_emacs_global_init)
(gnutls_emacs_global_deinit): Make static.
(Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
Fix typos in docstrings.
(Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
(Fgnutls_errorp): Doc fix; use ERR for the argument name.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 03 Oct 2010 06:12:15 +0200 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
13337 | 1 ;;; timezone.el --- time zone package for GNU Emacs |
2908 | 2 |
74442 | 3 ;; Copyright (C) 1990, 1991, 1992, 1993, 1996, 1999, 2001, 2002, 2003, |
106815 | 4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
5 |
13337 | 6 ;; Author: Masanobu Umeda |
7 ;; Maintainer: umerin@mse.kyutech.ac.jp | |
8 ;; Keywords: news | |
2908 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
2908 | 13 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
2908 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
2908 | 24 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
32290
diff
changeset
|
25 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
32290
diff
changeset
|
26 |
2908 | 27 ;;; Code: |
28 | |
29 (defvar timezone-world-timezones | |
30 '(("PST" . -800) | |
31 ("PDT" . -700) | |
32 ("MST" . -700) | |
33 ("MDT" . -600) | |
34 ("CST" . -600) | |
35 ("CDT" . -500) | |
36 ("EST" . -500) | |
37 ("EDT" . -400) | |
38 ("AST" . -400) ;by <clamen@CS.CMU.EDU> | |
39 ("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
|
40 ("UT" . +000) |
2908 | 41 ("GMT" . +000) |
42 ("BST" . +100) | |
43 ("MET" . +100) | |
44 ("EET" . +200) | |
45 ("JST" . +900) | |
46 ("GMT+1" . +100) ("GMT+2" . +200) ("GMT+3" . +300) | |
47 ("GMT+4" . +400) ("GMT+5" . +500) ("GMT+6" . +600) | |
48 ("GMT+7" . +700) ("GMT+8" . +800) ("GMT+9" . +900) | |
49 ("GMT+10" . +1000) ("GMT+11" . +1100) ("GMT+12" . +1200) ("GMT+13" . +1300) | |
50 ("GMT-1" . -100) ("GMT-2" . -200) ("GMT-3" . -300) | |
51 ("GMT-4" . -400) ("GMT-5" . -500) ("GMT-6" . -600) | |
52 ("GMT-7" . -700) ("GMT-8" . -800) ("GMT-9" . -900) | |
53 ("GMT-10" . -1000) ("GMT-11" . -1100) ("GMT-12" . -1200)) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
54 "*Time differentials of timezone from GMT in +-HHMM form. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
55 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
|
56 because time zone names are ambiguous in practice. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
57 Use `current-time-zone' instead.") |
2908 | 58 |
59 (defvar timezone-months-assoc | |
60 '(("JAN" . 1)("FEB" . 2)("MAR" . 3) | |
61 ("APR" . 4)("MAY" . 5)("JUN" . 6) | |
62 ("JUL" . 7)("AUG" . 8)("SEP" . 9) | |
63 ("OCT" . 10)("NOV" . 11)("DEC" . 12)) | |
64 "Alist of first three letters of a month and its numerical representation.") | |
65 | |
66 (defun timezone-make-date-arpa-standard (date &optional local timezone) | |
67 "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
|
68 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
|
69 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
|
70 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
|
71 if nil, the local time zone is assumed." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
72 (let ((new (timezone-fix-time date local timezone))) |
2908 | 73 (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2) |
74 (timezone-make-time-string | |
75 (aref new 3) (aref new 4) (aref new 5)) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
76 (aref new 6)) |
2908 | 77 )) |
78 | |
79 (defun timezone-make-date-sortable (date &optional local timezone) | |
80 "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
|
81 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
|
82 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
|
83 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
|
84 if nil, the local time zone is assumed." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
85 (let ((new (timezone-fix-time date local timezone))) |
2908 | 86 (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2) |
87 (timezone-make-time-string | |
88 (aref new 3) (aref new 4) (aref new 5))) | |
89 )) | |
90 | |
91 | |
92 ;; | |
93 ;; Parsers and Constructors of Date and Time | |
94 ;; | |
95 | |
96 (defun timezone-make-arpa-date (year month day time &optional timezone) | |
97 "Make arpanet standard date string from YEAR, MONTH, DAY, and TIME. | |
98 Optional argument TIMEZONE specifies a time zone." | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
99 (let ((zone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
100 (if (listp timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
101 (let* ((m (timezone-zone-to-minute timezone)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
102 (absm (if (< m 0) (- m) m))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
103 (format "%c%02d%02d" |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
104 (if (< m 0) ?- ?+) (/ absm 60) (% absm 60))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
105 timezone))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
106 (format "%02d %s %04d %s %s" |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
107 day |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
108 (capitalize (car (rassq month timezone-months-assoc))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
109 year |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
110 time |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
111 zone))) |
2908 | 112 |
113 (defun timezone-make-sortable-date (year month day time) | |
114 "Make sortable date string from YEAR, MONTH, DAY, and TIME." | |
115 (format "%4d%02d%02d%s" | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
116 year month day time)) |
2908 | 117 |
118 (defun timezone-make-time-string (hour minute second) | |
119 "Make time string from HOUR, MINUTE, and SECOND." | |
120 (format "%02d:%02d:%02d" hour minute second)) | |
121 | |
122 (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
|
123 "Parse DATE and return a vector [YEAR MONTH DAY TIME TIMEZONE]. |
32290
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
124 Two-digit dates are `windowed'. Those <69 have 2000 added; otherwise 1900 |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
125 is added. Three-digit dates have 1900 added. |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
126 TIMEZONE is nil for DATEs without a zone field. |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
127 |
4835
4324c797a9e3
(timezone-parse-date): Handle new style 22-AUG-1993.
Richard M. Stallman <rms@gnu.org>
parents:
4510
diff
changeset
|
128 Understands the following styles: |
2908 | 129 (1) 14 Apr 89 03:20[:12] [GMT] |
130 (2) Fri, 17 Mar 89 4:01[:33] [GMT] | |
131 (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
|
132 (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
|
133 (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
|
134 (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
|
135 (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
|
136 (8) 1996-06-24 21:13:12 [GMT] |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
137 (9) 1996-06-24 21:13-ZONE |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
138 (10) 19960624T211312" |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
139 ;; Get rid of any text properties. |
12482
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
140 (and (stringp date) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
141 (or (text-properties-at 0 date) |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
142 (next-property-change 0 date)) |
12482
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
143 (setq date (copy-sequence date)) |
3f4cd64a4730
(timezone-parse-date): Ignore text properties.
Richard M. Stallman <rms@gnu.org>
parents:
10255
diff
changeset
|
144 (set-text-properties 0 (length date) nil date)) |
2908 | 145 (let ((date (or date "")) |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
146 (year nil) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
147 (month nil) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
148 (day nil) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
149 (time nil) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
150 (zone nil)) ;This may be nil. |
2908 | 151 (cond ((string-match |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
152 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
153 ;; Styles: (1) and (2) with timezone and buggy timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
154 ;; This is most common in mail and news, |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
155 ;; so it is worth trying first. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
156 (setq year 3 month 2 day 1 time 4 zone 5)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
157 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
158 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\'" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
159 ;; Styles: (1) and (2) without timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
160 (setq year 3 month 2 day 1 time 4 zone nil)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
161 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
162 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\'" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
163 ;; Styles: (6) and (7) without timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
164 (setq year 6 month 3 day 2 time 4 zone nil)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
165 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
166 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
167 ;; Styles: (6) and (7) with timezone and buggy timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
168 (setq year 6 month 3 day 2 time 4 zone 7)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
169 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
170 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
171 ;; Styles: (3) without timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
172 (setq year 4 month 1 day 2 time 3 zone nil)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
173 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
174 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)[ \t]+\\([0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
175 ;; Styles: (3) with timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
176 (setq year 5 month 1 day 2 time 3 zone 4)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
177 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
178 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
179 ;; Styles: (4) with timezone |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
180 (setq year 3 month 2 day 1 time 4 zone 5)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
181 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
182 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?[ \t]+\\([-+a-zA-Z0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
183 ;; Styles: (5) with timezone. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
184 (setq year 3 month 2 day 1 time 4 zone 6)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
185 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
186 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
187 ;; Styles: (5) without timezone. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
188 (setq year 3 month 2 day 1 time 4 zone nil)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
189 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
190 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
191 ;; Styles: (8) with timezone. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
192 (setq year 1 month 2 day 3 time 4 zone 5)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
193 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
194 "\\([0-9]\\{4\\}\\)-?\\([0-9]\\{0,2\\}\\)-?\\([0-9]\\{0,2\\}\\)[T \t]+\\([0-9]\\{0,2\\}:?[0-9]\\{0,2\\}:?[0-9]\\{0,2\\}\\)[ \t]*\\([-+a-zA-Z]+[0-9:]*\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
195 ;; Styles: (8) with timezone with a colon in it. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
196 (setq year 1 month 2 day 3 time 4 zone 5)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
197 ((string-match |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
198 "\\([0-9]\\{4\\}\\)-?\\([0-9]\\{0,2\\}\\)-?\\([0-9]\\{0,2\\}\\)[T \t]+\\([0-9]+:?[0-9]+:?[0-9]+\\)" date) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
199 ;; Styles: (8) without timezone. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
200 (setq year 1 month 2 day 3 time 4 zone nil)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
201 ) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
202 |
25383 | 203 (when year |
204 (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
|
205 ;; Guess ambiguous years. Assume years < 69 don't predate the |
27493
005bb11b61bb
(timezone-fix-time): Window against 69 for two-digit years. Deal with
Dave Love <fx@gnu.org>
parents:
25577
diff
changeset
|
206 ;; Unix Epoch, so are 2000+. Three-digit years are assumed to |
005bb11b61bb
(timezone-fix-time): Window against 69 for two-digit years. Deal with
Dave Love <fx@gnu.org>
parents:
25577
diff
changeset
|
207 ;; be relative to 1900. |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
208 (when (< (length year) 4) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
209 (let ((y (string-to-number year))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
210 (when (< y 69) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
211 (setq y (+ y 100))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
212 (setq year (int-to-string (+ 1900 y))))) |
25383 | 213 (setq month |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
214 (if (or (= (aref date (+ (match-beginning month) 2)) ?-) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
215 (let ((n (string-to-number |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
216 (char-to-string |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
217 (aref date (+ (match-beginning month) 2)))))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
218 (= (aref (number-to-string n) 0) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
219 (aref date (+ (match-beginning month) 2))))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
220 ;; Handle numeric months, spanning exactly two digits. |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
221 (substring date |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
222 (match-beginning month) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
223 (+ (match-beginning month) 2)) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
224 (let* ((string (substring date |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
225 (match-beginning month) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
226 (+ (match-beginning month) 3))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
227 (monthnum |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
228 (cdr (assoc (upcase string) timezone-months-assoc)))) |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
229 (when monthnum |
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
230 (int-to-string monthnum))))) |
25383 | 231 (setq day (match-string day date)) |
232 (setq time (match-string time date))) | |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
233 (when zone (setq zone (match-string zone date))) |
2908 | 234 ;; Return a vector. |
16942
eca5dfcd481d
(timezone-parse-date): Treat unknown month name
Richard M. Stallman <rms@gnu.org>
parents:
16900
diff
changeset
|
235 (if (and year month) |
104271
73a2da4c1a39
add ability to understand ISO8601 basic format as well as the extended one.
Mark A. Hershberger <mah@everybody.org>
parents:
100908
diff
changeset
|
236 (vector year month day time zone) |
25383 | 237 (vector "0" "0" "0" "0" nil)))) |
2908 | 238 |
239 (defun timezone-parse-time (time) | |
240 "Parse TIME (HH:MM:SS) and return a vector [hour minute second]. | |
241 Recognize HH:MM:SS, HH:MM, HHMMSS, HHMM." | |
242 (let ((time (or time "")) | |
25383 | 243 hour minute second) |
2908 | 244 (cond ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)\\'" time) |
245 ;; HH:MM:SS | |
246 (setq hour 1 minute 2 second 3)) | |
247 ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\)\\'" time) | |
248 ;; HH:MM | |
249 (setq hour 1 minute 2 second nil)) | |
250 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time) | |
251 ;; HHMMSS | |
252 (setq hour 1 minute 2 second 3)) | |
253 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time) | |
254 ;; HHMM | |
255 (setq hour 1 minute 2 second nil)) | |
256 ) | |
257 ;; Return [hour minute second] | |
258 (vector | |
25383 | 259 (if hour (match-string hour time) "0") |
260 (if minute (match-string minute time) "0") | |
261 (if second (match-string second time) "0")))) | |
2908 | 262 |
263 | |
264 ;; Miscellaneous | |
265 | |
266 (defun timezone-zone-to-minute (timezone) | |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
267 "Translate TIMEZONE to an integer minute offset from GMT. |
99298
225286546090
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
94678
diff
changeset
|
268 TIMEZONE can be a cons cell containing the output of `current-time-zone', |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
269 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
|
270 (cond |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
271 ((consp timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
272 (/ (car timezone) 60)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
273 (timezone |
2908 | 274 (progn |
275 (setq timezone | |
276 (or (cdr (assoc (upcase timezone) timezone-world-timezones)) | |
277 ;; +900 | |
278 timezone)) | |
279 (if (stringp timezone) | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
280 (setq timezone (string-to-number timezone))) |
2908 | 281 ;; Taking account of minute in timezone. |
282 ;; HHMM -> MM | |
4510
10baf5e7550f
(timezone-fix-time, timezone-zone-to-minute): Simplify with `abs'
Paul Eggert <eggert@twinsun.com>
parents:
3505
diff
changeset
|
283 (let* ((abszone (abs timezone)) |
2908 | 284 (minutes (+ (* 60 (/ abszone 100)) (% abszone 100)))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
285 (if (< timezone 0) (- minutes) minutes)))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
286 (t 0))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
287 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
288 (defun timezone-time-from-absolute (date seconds) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
289 "Compute the UTC time equivalent to DATE at time SECONDS after midnight. |
99298
225286546090
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
94678
diff
changeset
|
290 Return a list suitable as an argument to `current-time-zone', |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
291 or nil if the date cannot be thus represented. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
292 DATE is the number of days elapsed since the (imaginary) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
293 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
|
294 (let* ((current-time-origin 719163) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
295 ;; (timezone-absolute-from-gregorian 1 1 1970) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
296 (days (- date current-time-origin)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
297 (seconds-per-day (float 86400)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
298 (seconds (+ seconds (* days seconds-per-day))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
299 (current-time-arithmetic-base (float 65536)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
300 (hi (floor (/ seconds current-time-arithmetic-base))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
301 (hibase (* hi current-time-arithmetic-base)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
302 (lo (floor (- seconds hibase)))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
303 (and (< (abs (- seconds (+ hibase lo))) 2) ;; Check for integer overflow. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
304 (cons hi lo)))) |
2908 | 305 |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
306 (defun timezone-time-zone-from-absolute (date seconds) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
307 "Compute the local time zone for DATE at time SECONDS after midnight. |
99298
225286546090
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
94678
diff
changeset
|
308 Return a list in the same format as `current-time-zone's result, |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
309 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
|
310 DATE is the number of days elapsed since the (imaginary) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
311 Gregorian date Sunday, December 31, 1 BC." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
312 (and (fboundp 'current-time-zone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
313 (let ((utc-time (timezone-time-from-absolute date seconds))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
314 (and utc-time |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
315 (let ((zone (current-time-zone utc-time))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
316 (and (car zone) zone)))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
317 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
318 (defun timezone-fix-time (date local timezone) |
3505 | 319 "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
|
320 If LOCAL is nil, it is assumed to be GMT. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
321 If TIMEZONE is nil, use the local time zone." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
322 (let* ((date (timezone-parse-date date)) |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
323 (year (string-to-number (aref date 0))) |
27493
005bb11b61bb
(timezone-fix-time): Window against 69 for two-digit years. Deal with
Dave Love <fx@gnu.org>
parents:
25577
diff
changeset
|
324 (year (cond ((< year 69) |
10255
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
325 (+ year 2000)) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
326 ((< year 100) |
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
327 (+ year 1900)) |
27493
005bb11b61bb
(timezone-fix-time): Window against 69 for two-digit years. Deal with
Dave Love <fx@gnu.org>
parents:
25577
diff
changeset
|
328 ((< year 1000) ; possible 3-digit years. |
005bb11b61bb
(timezone-fix-time): Window against 69 for two-digit years. Deal with
Dave Love <fx@gnu.org>
parents:
25577
diff
changeset
|
329 (+ year 1900)) |
10255
d4119f1137f9
(timezone-fix-time): For year values < 50, add 2000.
Richard M. Stallman <rms@gnu.org>
parents:
9988
diff
changeset
|
330 (t year))) |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
331 (month (string-to-number (aref date 1))) |
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
332 (day (string-to-number (aref date 2))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
333 (time (timezone-parse-time (aref date 3))) |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
334 (hour (string-to-number (aref time 0))) |
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
335 (minute (string-to-number (aref time 1))) |
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
53047
diff
changeset
|
336 (second (string-to-number (aref time 2))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
337 (local (or (aref date 4) local)) ;Use original if defined |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
338 (timezone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
339 (or timezone |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
340 (timezone-time-zone-from-absolute |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
341 (timezone-absolute-from-gregorian month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
342 (+ second (* 60 (+ minute (* 60 hour))))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
343 (diff (- (timezone-zone-to-minute timezone) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
344 (timezone-zone-to-minute local))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
345 (minute (+ minute diff)) |
4510
10baf5e7550f
(timezone-fix-time, timezone-zone-to-minute): Simplify with `abs'
Paul Eggert <eggert@twinsun.com>
parents:
3505
diff
changeset
|
346 (hour-fix (floor minute 60))) |
2908 | 347 (setq hour (+ hour hour-fix)) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
348 (setq minute (- minute (* 60 hour-fix))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
349 ;; HOUR may be larger than 24 or smaller than 0. |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
350 (cond ((<= 24 hour) ;24 -> 00 |
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)) |
32290
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
353 (when (< (timezone-last-day-of-month month year) day) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
354 (setq month (1+ month)) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
355 (setq day 1) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
356 (when (< 12 month) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
357 (setq month 1) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
358 (setq year (1+ year))))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
359 ((> 0 hour) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
360 (setq hour (+ hour 24)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
361 (setq day (1- day)) |
32290
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
362 (when (> 1 day) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
363 (setq month (1- month)) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
364 (when (> 1 month) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
365 (setq month 12) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
366 (setq year (1- year))) |
0d473fed67ba
(timezone-parse-date): Doc fix. Fix regexps for (5)
Dave Love <fx@gnu.org>
parents:
27493
diff
changeset
|
367 (setq day (timezone-last-day-of-month month year))))) |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
368 (vector year month day hour minute second timezone))) |
2908 | 369 |
370 ;; Partly copied from Calendar program by Edward M. Reingold. | |
371 ;; Thanks a lot. | |
372 | |
373 (defun timezone-last-day-of-month (month year) | |
374 "The last day in MONTH during YEAR." | |
375 (if (and (= month 2) (timezone-leap-year-p year)) | |
376 29 | |
377 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month)))) | |
378 | |
379 (defun timezone-leap-year-p (year) | |
99298
225286546090
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
94678
diff
changeset
|
380 "Return t if YEAR is a Gregorian leap year." |
2908 | 381 (or (and (zerop (% year 4)) |
382 (not (zerop (% year 100)))) | |
383 (zerop (% year 400)))) | |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
384 |
3494
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
385 (defun timezone-day-number (month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
386 "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
|
387 (let ((day-of-year (+ day (* 31 (1- month))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
388 (if (> month 2) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
389 (progn |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
390 (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
|
391 (if (timezone-leap-year-p year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
392 (setq day-of-year (1+ day-of-year))))) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
393 day-of-year)) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
394 |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
395 (defun timezone-absolute-from-gregorian (month day year) |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
396 "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
|
397 The Gregorian date Sunday, December 31, 1 BC is imaginary." |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
398 (+ (timezone-day-number month day year);; Days this year |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
399 (* 365 (1- year));; + Days in prior years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
400 (/ (1- year) 4);; + Julian leap years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
401 (- (/ (1- year) 100));; - century years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
402 (/ (1- year) 400)));; + Gregorian leap years |
ddc7da3f66d1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2910
diff
changeset
|
403 |
25383 | 404 (provide 'timezone) |
405 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79721
diff
changeset
|
406 ;; arch-tag: e23d5bc6-f32d-48ba-8996-323e9d654b3f |
2910
74b7994f2d20
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
2908
diff
changeset
|
407 ;;; timezone.el ends here |