Vendor import of tzcode2009k

zic.c:
    Do not end a binary file with a POSIX-style time zone string
    for locations that end up in permanent DST (thanks to Andreas
    Schwab).

tz-art.htm
    Add notes on "A Matter of Life and Death"
    (thanks to Dave Cantor).

tz-link.htm
    Remove seemingly obsolete public.planetmirror.com/pub/timezone
    link (thanks to Nathan Stratton Treadway).

Obtained from:	ftp://elsie.nci.nih.gov/pub/
This commit is contained in:
Edwin Groothuis 2009-07-21 02:13:57 +00:00
parent 54e87cd8a2
commit 4f9074da93
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor/tzcode/dist/; revision=195794
svn path=/vendor/tzcode/tzcode2009k/; revision=195795; tag=vendor/tzcode/tzcode2009k
3 changed files with 16 additions and 8 deletions

View File

@ -9,7 +9,7 @@ PUBLIC "-//W3C//DTD HTML 4.01//EN"
<body>
<h1>Time and the Arts</h1>
<address>
@(#)tz-art.htm 8.12
@(#)tz-art.htm 8.13
</address>
<p>
This file is in the public domain, so clarified as of
@ -353,6 +353,17 @@ A private jet's mid-flight change of time zones distorts Alison Dubois'
premonition in the "We Had a Dream" episode of "Medium"
(originally aired 2007-02-28).
</li>
<li>
In the 1946 "A Matter of Life and Death,"
there is a reference to British Double Summer Time.
The time does not play a large part in the plot;
it's just a passing reference to the time when one of the
characters was supposed to have died (but didn't).
The IMDb page is at
<a href="http://us.imdb.com/title/tt0038733/">
http://us.imdb.com/title/tt0038733/
</a>. (Dave Cantor)
</li>
</ul>
<hr>
<ul>

View File

@ -18,7 +18,7 @@
<body>
<h1>Sources for Time Zone and Daylight Saving Time Data</h1>
<address>
@(#)tz-link.htm 8.21
@(#)tz-link.htm 8.22
</address>
<p>
This file is in the public domain, so clarified as of
@ -114,10 +114,7 @@ retrieve the <a
href="ftp://elsie.nci.nih.gov/pub/tzarchive.gz">full archive of old
messages</a> (in gzip compressed format), or retrieve <a
href="ftp://munnari.oz.au/pub/oldtz">archived older versions of code
and data</a>; there is also a smaller <a
href="http://public.planetmirror.com/pub/timezone"><abbr
title="Hypertext Transfer Protocol">HTTP</abbr>
mirror</a>.</p>
and data</a>.</p>
<p>
The Web has several other sources for time zone and daylight saving time data.
Here are some recent links that may be of interest.

View File

@ -3,7 +3,7 @@
** 2006-07-17 by Arthur David Olson.
*/
static char elsieid[] = "@(#)zic.c 8.19";
static char elsieid[] = "@(#)zic.c 8.20";
#include "private.h"
#include "locale.h"
@ -1921,7 +1921,7 @@ const int zonecount;
if (stdrp != NULL && stdrp->r_hiyear == 2037)
return;
}
if (stdrp == NULL && zp->z_nrules != 0)
if (stdrp == NULL && (zp->z_nrules != 0 || zp->z_stdoff != 0))
return;
abbrvar = (stdrp == NULL) ? "" : stdrp->r_abbrvar;
doabbr(result, zp->z_format, abbrvar, FALSE, TRUE);