From owner-svn-src-vendor@FreeBSD.ORG Tue Jul 21 02:13:58 2009
Return-Path:
Delivered-To: svn-src-vendor@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
by hub.freebsd.org (Postfix) with ESMTP id 502B6106567C;
Tue, 21 Jul 2009 02:13:58 +0000 (UTC)
(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
by mx1.freebsd.org (Postfix) with ESMTP id 3D14E8FC1B;
Tue, 21 Jul 2009 02:13:58 +0000 (UTC)
(envelope-from edwin@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n6L2DvW6095065;
Tue, 21 Jul 2009 02:13:57 GMT (envelope-from edwin@svn.freebsd.org)
Received: (from edwin@localhost)
by svn.freebsd.org (8.14.3/8.14.3/Submit) id n6L2Dvhw095061;
Tue, 21 Jul 2009 02:13:57 GMT (envelope-from edwin@svn.freebsd.org)
Message-Id: <200907210213.n6L2Dvhw095061@svn.freebsd.org>
From: Edwin Groothuis
Date: Tue, 21 Jul 2009 02:13:57 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
svn-src-vendor@freebsd.org
X-SVN-Group: vendor
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc:
Subject: svn commit: r195794 - in vendor/tzcode/dist: unused zic
X-BeenThere: svn-src-vendor@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: SVN commit messages for the vendor work area tree
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Tue, 21 Jul 2009 02:13:58 -0000
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"
Time and the Arts
-@(#)tz-art.htm 8.12
+@(#)tz-art.htm 8.13
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).
+
+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
+
+http://us.imdb.com/title/tt0038733/
+. (Dave Cantor)
+
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 @@
Sources for Time Zone and Daylight Saving Time Data
-@(#)tz-link.htm 8.21
+@(#)tz-link.htm 8.22
This file is in the public domain, so clarified as of
@@ -114,10 +114,7 @@ retrieve the full archive of old
messages (in gzip compressed format), or retrieve archived older versions of code
-and data; there is also a smaller HTTP
-mirror.
+and data.
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);