1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-06 14:57:16 +00:00
Commit Graph

91 Commits

Author SHA1 Message Date
Paul Eggert
9a8aa790bc Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''.  While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros.  Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
Paul Eggert
ac99ec780d Revert fix for "stack buffer overrun", which was a false alarm.
* localtime.c (time1): Shrink size of 'types' local back down
from TZ_MAX_TIMES to TZ_MAX_TYPES.  The smaller value suffices,
since nseen can grow to at most TZ_MAX_TYPES.  (Thanks to
Arthur David Olson.)
* NEWS: Remove mention of non-fix.
2014-06-15 10:33:17 -07:00
Paul Eggert
be51b8b1be Document ALL_STATE fix. 2014-06-14 23:42:07 -07:00
Paul Eggert
ce7bf999f7 Fix stack buffer overrun in mktime and similar functions.
* localtime.c (time1): Declare 'types' array to have TZ_MAX_TIMES
entries, not TZ_MAX_TYPES entries.
* NEWS: Document this.
2014-06-14 23:22:03 -07:00
Paul Eggert
05c08c6a63 Fix Finland's 1942 fall-back transition.
* europe (Finland), NEWS: Finland's 1942 fall-back transition was
10-04 01:00, not 10-03 00:00.  (Thanks to Konstantin Hyppönen.)
2014-06-14 19:19:41 -07:00
Paul Eggert
41c79956c3 Now that we can use UTF-8, restore accents that ASCII lost.
* NEWS, Theory, africa, europe, northamerica, southamerica:
Don't insist on ASCII when normal English usage would have
accented words.
2014-06-14 19:11:27 -07:00
Paul Eggert
aac77e9d1d Release tzcode2014e and tzdata2014e.
* NEWS, Makefile (VERSION): Increase to 2014e.
2014-06-12 21:55:29 -07:00
Paul Eggert
cae673e3d7 Morocco's Ramadan-based transitions expand to Saturday-Saturday.
(Thanks to Milamber Space Network.)
* africa (Morocco): 2014 transitions are Jun 28 03:00 and Aug 2 02:00.
Guess a similar pattern for future years.  Fix white space to be
more consistent.
* NEWS: Document this.
2014-06-05 21:17:33 -07:00
Paul Eggert
29e324e952 * tz-link.htm, NEWS: jCal is now RFC 7265. Mention PTP and the
draft CalDAV extension.  Update URLs for TSP, TZInfo, IATA.
Remove stale pointers to World Time Explorer and WORLDTIME.
2014-06-04 22:30:32 -07:00
Paul Eggert
8d0ecf1a59 * NEWS: Fix date typo. (Thanks to Tim Parenti.) 2014-06-04 19:10:31 -07:00
Paul Eggert
5e27c6a8ea Egypt's Ramadan-based transitions expand to Thursday-to-Thursday 24:00.
* africa (Egypt): 2014 transitions are June 26 and July 31 at 24:00.
(Thanks to Imed Chihi.)  Guess a similar pattern for future years,
namely, DST is not observed in Ramadan, nor in the days following the
last Thursday before Ramadan, nor in the days preceding the first
Friday after Ramadan.
* NEWS: Document this.
2014-06-04 09:33:15 -07:00
Paul Eggert
16312a4d1d * europe (Asia/Vladivostok): Fix "VLASST" typo for Vladivostok in 1991
summer, where the abbreviation should be "VLAST".  (Thanks to Hank W.)
* NEWS: Document this.
2014-05-31 22:51:23 -07:00
Paul Eggert
8d558674ce * europe (Russia, Europe/Moscow): Use "MSM" for Moscow Midsummer Time
in 1921.  (Thanks to Hank W. for reporting the problem.)
Also, update a stale URL.
* NEWS: Document the Moscow change.
2014-05-31 15:37:07 -07:00
Paul Eggert
a91cc14d7f Release tzcode2014d and tzdata2014d.
* NEWS, Makefile (VERSION): Increase to 2014d.
2014-05-27 21:35:46 -07:00
Paul Eggert
23f3f2edcb * tz-link.htm, NEWS: Mention GNOME. 2014-05-27 08:25:26 -07:00
Paul Eggert
1421881858 zic: move Big Bang to - 2**59
This should help forestall flame wars among competing camps of physicists.
(Thanks to James Cloos.)
* NEWS, zic.8 (NOTES): Document this.
* zic.c (BIG_BANG): Use - 2**59 rather than a more-precise estimate.
2014-05-26 17:22:33 -07:00
Paul Eggert
0880e2fe56 zic: disallow leap seconds before the Big Bang
* zic.c (inleap): Reject leap seconds preceding big_bang_time.
(Thanks to Arthur David Olson.)  Also, remove redundant test and cast.
* NEWS: Document this.
2014-05-25 12:20:29 -07:00
Paul Eggert
b22d459a36 zic: work around GNOME bug by refusing to go back before the Big Bang
This works around Gnome bug 730332
<https://bugzilla.gnome.org/show_bug.cgi?id=730332>.
zic 2014c introduced the idea of generating a transition at the
minimum time value -2**63, to avoid ambiguities about what to do
before the first real transition.  Through Glib release 2.40, the
interval_end function of Glib's gtimezone.c subtracts one from
this, to find the end time of the zeroth interval (i.e., the
interval containing all the "early" time stamps); this subtraction
typically overflows and wraps around to 2**63 - 1, which causes
Glib to go off the rails and assume that all time stamps are
"early".  For example, Glib computes Sao Paulo time stamps as if
Brazil's circa-1913 rules were still in effect.
(Thanks to Leonardo Chiquitto for reporting the bug.)
Work around the bug by not generating time stamps equal to -2**63.
Come to think of it, time stamps before the Big Bang are physically
suspect anyway, so don't generate time stamps before the Big Bang.
* Makefile (GCC_DEBUG_FLAGS): Add comment re BIG_BANG.
* NEWS, zic.8 (NOTES): Document this.
* zic.c (BIG_BANG): New macro.
(big_bang_time): New constant.
(writezone, outzone, addtt): Compare to big_bang_time, not to
min_time, when deciding whether to output a time stamp.
2014-05-23 23:02:47 -03:00
Paul Eggert
9dc32cd094 * NEWS: Fix to match 2014c email announcement text. 2014-05-23 11:37:27 -07:00
Paul Eggert
afa8e7a12b Release tzcode2014c and tzdata2014c.
* NEWS, Makefile (VERSION): Increase to 2014c.
2014-05-13 07:45:53 -07:00
Paul Eggert
c9ebcee69b africa: Egypt resumes DST on May 15
(Thanks to Ahmad El-Dardiry.)
* NEWS: Document this.
* africa (Egypt): Add rules for 2014 through 2038.  They all
involve some guesswork, unfortunately.
2014-05-07 18:09:14 -07:00
Paul Eggert
ebd01ad62e * NEWS: Document zic change for low-valued time stamps. 2014-05-01 16:36:16 -07:00
Paul Eggert
6eeb85f729 Revert "* europe (Europe/Simferopol), NEWS: Crimea switches to Moscow time"
This reverts commit 61ebb5f190.
2014-03-30 15:05:35 -07:00
Paul Eggert
61ebb5f190 * europe (Europe/Simferopol), NEWS: Crimea switches to Moscow time
less than an hour from now.
2014-03-29 12:05:12 -07:00
Paul Eggert
9214f0f930 * asia (Jordan): Remove now-confusing comment from Phil Pizzey.
Reported by Oleksii Nochovnyi in:
http://mm.icann.org/pipermail/tz/2014-March/020807.html
* NEWS: Mention this.
2014-03-28 12:40:20 -07:00
Paul Eggert
451eb87ddd * private.h, zdump.c (HAVE_STDINT_H), NEWS: Define to 1 if __CYGWIN__.
(Thanks to Arthur David Olson.)
2014-03-26 18:16:48 -07:00
Paul Eggert
ea08a2f6ef Release tzcode2014b and tzdata2014b.
* NEWS, Makefile (VERSION): Increase to 2014b.
2014-03-24 21:30:17 -07:00
Paul Eggert
6285081401 Approximate Troll's rules with just UTC and CEST.
* antarctica (Antarctica/Troll), NEWS: Uncomment, but with an
approximation that uses only UTC and CEST.  (Thanks to Bengt-Inge
Larsson.)
* zone.tab (Antarctica/Troll): New entry.
2014-03-21 08:54:06 -07:00
Paul Eggert
b979bceed1 Remove unused rules, and add a check for this.
* checktab.awk: Check for a Rule defined but never used.
* antarctica (NZAQ): Remove unused rule.
* NEWS: Document this.
2014-03-20 19:01:21 -07:00
Paul Eggert
440c8dbcca * antarctica, NEWS: Add a commented-out entry for Troll station.
(Thanks to Paul-Inge Flakstad.)
2014-03-20 18:48:46 -07:00
Paul Eggert
a3129e54ee * tzfile.h (TZ_MAX_TIMES), NEWS: Increase from 1200 to 2000.
This lets localtime handle Troll station.  Hack suggested by Zefram.
2014-03-20 18:41:02 -07:00
Paul Eggert
725779ad2f Remove TZ_MAX_TIMES restriction in zic.c.
This lets zic handle the time rules of Troll station,
Antarctica.  Adapted from a fix by Zefram in:
http://mm.icann.org/pipermail/tz/2014-March/020759.html
* zic.c (timecnt_alloc): New static var.
(attypes): Now a pointer to an array, not a fixed size array.
(writezone, addtt): Don't assume the number of times is less than
TZ_MAX_TIMES.
* NEWS: Document this.
2014-03-20 18:11:23 -07:00
Paul Eggert
45badd3cb0 Fix overallocation problem in zic.
* zic.c (writezone), NEWS: Give 'writetype' TX_MAX_TYPES entries,
not TZ_MAX_TIMES.  (Thanks to Zefram.)
2014-03-20 13:35:02 -07:00
Paul Eggert
6c44b67414 Morocco's 2014 DST start will be as predicted.
* africa (Morocco), NEWS: Document this.
(Thanks to Sebastien Willemijns.)
2014-03-19 22:41:49 -07:00
Paul Eggert
bb203f1bb0 Crimea switches to Moscow time.
* europe (Europe/Simferopol), NEWS:
Crimea switches to MSK on 2014-03-30 at 02:00 local time.
(Thanks to Alexander Krivenyshev.)
* zone.tab: Move its zone.tab entry from UA to RU.
2014-03-19 22:27:24 -07:00
Paul Eggert
fc140d7eba * NEWS: Give proper credit for Tuesday/Thursday typo fix. 2014-03-14 00:09:42 -07:00
Paul Eggert
3f0f945c17 Fix Tuesday/Thursday typo in tzset man page.
* newtzset.3 (DESCRIPTION), NEWS: Fix typo in description of Israel time.
Reported by Mike Frysinger for glibc in:
https://sourceware.org/ml/libc-alpha/2014-03/msg00326.html
2014-03-13 17:30:17 -07:00
Paul Eggert
edde76c952 * australasia, NEWS: Comment re Johnston Island time in the 1960s.
(Thanks to Lyle McElhaney.)
2014-03-12 21:31:59 -07:00
Paul Eggert
6e8bcc7d74 Fix misstatement about Microsoft Windows support.
* tz-link.htm, NEWS: Fix misstatement about which part of the
Microsoft Windows software universe supports tz database names.
(Thanks to Donald MacQueen.)
2014-03-10 16:48:29 -07:00
Paul Eggert
ff4e892f5d Release tzcode2014a and tzdata2014a.
* NEWS, Makefile (VERSION): Increase to 2014a.
2014-03-07 23:32:02 -08:00
Paul Eggert
c21d10b11e Update tz-link.htm.
* tz-link.htm, NEWS: Add Time.is (thanks to Even Scharning), WX-now
(thanks to David Braverman), TZ4Net (thanks to Matt Johnson).
Remove Simple Timer + Clocks.
2014-03-07 23:26:55 -08:00
Paul Eggert
b69ac5849b Improve commentary for Trinidad and Tobago's links.
* southamerica (America/Port_of_Spain): Add commentary for links.
* NEWS: Document this.
2014-03-07 22:35:28 -08:00
Paul Eggert
7fc9e6e84f NEWS: Document previous change. 2014-03-07 22:30:59 -08:00
Paul Eggert
57738f30c7 Mention recent Paraguay decree.
* southamerica (Para): Add comment for Paraguay's Decree 1264.
(Thanks to Carlos Raul Perasso.)
* NEWS: Document this.
2014-03-07 21:44:40 -08:00
Paul Eggert
d3306708aa Israel DST transitions were off by a day in 1988.
(Thanks to Avigdor Finkelstein.)
* asia (Zion): Add 1 to the 1988 transition dates.
* NEWS: Document this.
2014-03-07 21:37:29 -08:00
Paul Eggert
4fcb1324e3 Update some web links.
* tz-link.htm: Mention zeitverschiebung.net (thanks to Martin
Jaeger) and the timezone-olson Haskell package.  Remove moribund
link to daylight-savings-time.info.
* NEWS: Document this.
2014-02-19 14:37:21 -08:00
Paul Eggert
12bcb1621c Chile: 2014 official DST follows our prediction.
(Thanks to Jose Miguel Garrido.)
* southamerica (Chile), NEWS: Document this.
2014-02-19 10:55:42 -08:00
Paul Eggert
4f73102117 Europe/Istanbul: Simplify recent change. (Thanks to Tim Parenti.)
* europe (Turkey): Revert previous change.
(Europe/Istanbul): Record 2014 the same way we did 2011; it's simpler.
* NEWS: Document this.
2014-02-19 10:44:11 -08:00
Paul Eggert
377543e46e Turkey begins DST on 2014-03-31, not 03-30.
(Thanks to Faruk Pasin.)
* europe (Turkey): New rule for spring 2014.
(Europe/Istanbul): Use it.
* NEWS: Document this.
2014-02-17 22:20:59 -08:00
Paul Eggert
a55fda9248 Mention Maggiolo's map of solar vs standard time.
* tz-link.htm: Add URL and description.  (Thanks to Arthur David Olson.)
* NEWS: Document this.
2014-02-02 13:19:27 -08:00