svn commit: r195794 - in vendor/tzcode/dist: unused zic
Edwin Groothuis
edwin at FreeBSD.org
Tue Jul 21 02:13:58 UTC 2009
Author: edwin
Date: Tue Jul 21 02:13:57 2009
New Revision: 195794
URL: http://svn.freebsd.org/changeset/base/195794
Log:
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/
Modified:
vendor/tzcode/dist/unused/tz-art.htm
vendor/tzcode/dist/unused/tz-link.htm
vendor/tzcode/dist/zic/zic.c
Modified: vendor/tzcode/dist/unused/tz-art.htm
==============================================================================
--- vendor/tzcode/dist/unused/tz-art.htm Tue Jul 21 02:00:43 2009 (r195793)
+++ vendor/tzcode/dist/unused/tz-art.htm Tue Jul 21 02:13:57 2009 (r195794)
@@ -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 tim
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>
Modified: vendor/tzcode/dist/unused/tz-link.htm
==============================================================================
--- vendor/tzcode/dist/unused/tz-link.htm Tue Jul 21 02:00:43 2009 (r195793)
+++ vendor/tzcode/dist/unused/tz-link.htm Tue Jul 21 02:13:57 2009 (r195794)
@@ -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.
Modified: vendor/tzcode/dist/zic/zic.c
==============================================================================
--- vendor/tzcode/dist/zic/zic.c Tue Jul 21 02:00:43 2009 (r195793)
+++ vendor/tzcode/dist/zic/zic.c Tue Jul 21 02:13:57 2009 (r195794)
@@ -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);
More information about the svn-src-all
mailing list