Proposed changes for Argentina, tzfile.5, and strerror

Here are proposed changes to the time zone package: 1. Most importantly, changes to the "southamerica" file (combinining material from Jesper Norgaard Welen and Paul Eggert) to reflect Argentina's readoption of daylight saving time. 2. Jonathan Leffler's fixes to tzfile.5. 3. Changes to eliminate HAVE_STRERROR and the conditional strerror definition. (A safe change since it should have no run-time effects; we'll see if anybody complains about uncompilability). Barring problems these changes are to show up on the ftp site on Monday morning as usual, just in time to be late for the Argentina party. --ado ------- southamerica ------- *** /tmp/geta2179 Thu Dec 27 12:24:03 2007 --- /tmp/getb2179 Thu Dec 27 12:24:03 2007 *************** *** 1,4 **** ! # @(#)southamerica 8.13 # <pre> # This data is by no means authoritative; if you think you know better, --- 1,4 ---- ! # @(#)southamerica 8.14 # <pre> # This data is by no means authoritative; if you think you know better, *************** *** 106,111 **** --- 106,123 ---- # from the International Date Line. Rule Arg 1999 only - Oct Sun>=1 0:00 1:00 S Rule Arg 2000 only - Mar Sun>=1 0:00 0 - + # From Jesper Norgaard Welen (2007-12-26) + # The last hurdle of Argentina DST is over, the proposal was approved in + # the lower chamber too (Deputados) with a vote 192 for and 2 against. + # By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to + # the original scanned proposal, where the dates and the zero hours are + # clear and unambiguous...This is the article about final approval: + # <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> + # http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 + # </a> + Rule Arg 2007 only - Dec 30 0:00 1:00 S + Rule Arg 2008 max - Mar Sun>=15 0:00 0 - + Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S # # From Peter Gradelski via Steffen Thorsen (2000-03-01): # We just checked with our Sao Paulo office and they say the government of ------- tzfile.5 ------- *** /tmp/geta2215 Thu Dec 27 12:27:17 2007 --- /tmp/getb2215 Thu Dec 27 12:27:17 2007 *************** *** 57,63 **** described in the file is associated with the same-indexed transition time. These values serve as indices into an array of .I ttinfo ! structures that appears next in the file; these structures are defined as follows: .in +.5i .sp --- 57,65 ---- described in the file is associated with the same-indexed transition time. These values serve as indices into an array of .I ttinfo ! structures (with ! .I tzh_typecnt ! entries) that appears next in the file; these structures are defined as follows: .in +.5i .sp *************** *** 138,144 **** the above header and data is followed by a second header and data, identical in format except that eight bytes are used for each transition time or leap second time. ! After the second header and data comes a newline-encloded, POSIX-TZ-environment-variable-style string for use in handling instants after the last transition time stored in the file (with nothing between the newlines if there is no POSIX representation for --- 140,146 ---- the above header and data is followed by a second header and data, identical in format except that eight bytes are used for each transition time or leap second time. ! After the second header and data comes a newline-enclosed, POSIX-TZ-environment-variable-style string for use in handling instants after the last transition time stored in the file (with nothing between the newlines if there is no POSIX representation for *************** *** 145,150 **** such instants). .SH SEE ALSO newctime(3) ! .\" @(#)tzfile.5 8.1 .\" This file is in the public domain, so clarified as of .\" 1996-06-05 by Arthur David Olson. --- 147,152 ---- such instants). .SH SEE ALSO newctime(3) ! .\" @(#)tzfile.5 8.2 .\" This file is in the public domain, so clarified as of .\" 1996-06-05 by Arthur David Olson. ------- Makefile ------- *** /tmp/geta2073 Thu Dec 27 12:14:33 2007 --- /tmp/getb2073 Thu Dec 27 12:14:33 2007 *************** *** 1,4 **** ! # @(#)Makefile 8.5 # Change the line below for your time zone (after finding the zone you want in # the time zone files, or adding it to a time zone file). --- 1,4 ---- ! # @(#)Makefile 8.6 # Change the line below for your time zone (after finding the zone you want in # the time zone files, or adding it to a time zone file). *************** *** 95,101 **** # -DHAVE_SETTIMEOFDAY=2 if settimeofday uses 2nd arg (4.3BSD) # -DHAVE_SETTIMEOFDAY=3 if settimeofday ignores 2nd arg (4.4BSD) # -DHAVE_STDINT_H=1 if you have a pre-C99 compiler with "stdint.h" - # -DHAVE_STRERROR=0 if your system lacks the strerror function # -DHAVE_SYMLINK=0 if your system lacks the symlink function # -DHAVE_SYS_STAT_H=0 if your compiler lacks a "sys/stat.h" # -DHAVE_SYS_WAIT_H=0 if your compiler lacks a "sys/wait.h" --- 95,100 ---- ------- private.h ------- *** /tmp/geta2092 Thu Dec 27 12:14:41 2007 --- /tmp/getb2092 Thu Dec 27 12:14:41 2007 *************** *** 21,27 **** #ifndef lint #ifndef NOID ! static char privatehid[] = "@(#)private.h 8.5"; #endif /* !defined NOID */ #endif /* !defined lint */ --- 21,27 ---- #ifndef lint #ifndef NOID ! static char privatehid[] = "@(#)private.h 8.6"; #endif /* !defined NOID */ #endif /* !defined lint */ *************** *** 48,57 **** #define HAVE_SETTIMEOFDAY 3 #endif /* !defined HAVE_SETTIMEOFDAY */ - #ifndef HAVE_STRERROR - #define HAVE_STRERROR 1 - #endif /* !defined HAVE_STRERROR */ - #ifndef HAVE_SYMLINK #define HAVE_SYMLINK 1 #endif /* !defined HAVE_SYMLINK */ --- 48,53 ---- ------- zic.c ------- *** /tmp/geta2111 Thu Dec 27 12:14:50 2007 --- /tmp/getb2111 Thu Dec 27 12:14:50 2007 *************** *** 3,9 **** ** 2006-07-17 by Arthur David Olson. */ ! static char elsieid[] = "@(#)zic.c 8.16"; #include "private.h" #include "locale.h" --- 3,9 ---- ** 2006-07-17 by Arthur David Olson. */ ! static char elsieid[] = "@(#)zic.c 8.17"; #include "private.h" #include "locale.h" *************** *** 160,169 **** static void writezone(const char * name, const char * string); static int yearistype(int year, const char * type); - #if !HAVE_STRERROR - static char * strerror(int); - #endif /* !HAVE_STRERROR */ - static int charcnt; static int errors; static const char * filename; --- 160,165 ---- *************** *** 405,423 **** ** Error handling. */ - #if !HAVE_STRERROR - static char * - strerror(errnum) - int errnum; - { - extern char * sys_errlist[]; - extern int sys_nerr; - - return (errnum > 0 && errnum <= sys_nerr) ? - sys_errlist[errnum] : _("Unknown system error"); - } - #endif /* !HAVE_STRERROR */ - static void eats(name, num, rname, rnum) const char * const name; --- 401,406 ----

Hi, i am waiting for the law publication to check details, I will send you a copy if you like. At this time i am not sure about the line:
+ Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S
The only advertised dates of implementations are for 2007/2008 ending at 2008- 03-16. I don`t see any news related to 2008 Oct. Could you share the source of this info ? Ezequiel, from Arg :( Arthur David Olson <olsona <at> elsie.nci.nih.gov> writes:
Here are proposed changes to the time zone package: 1. Most importantly, changes to the "southamerica" file (combinining material from Jesper Norgaard Welen and Paul Eggert) to reflect Argentina's readoption of daylight saving time. 2. Jonathan Leffler's fixes to tzfile.5. 3. Changes to eliminate HAVE_STRERROR and the conditional strerror
definition.
(A safe change since it should have no run-time effects; we'll see if anybody complains about uncompilability).
Barring problems these changes are to show up on the ftp site on Monday morning as usual, just in time to be late for the Argentina party.

The October 2008 and forward stuff is a best guess; it's probably better than assuming DST will not be used in the future. --ado -----Original Message----- From: Ezequiel Colombo [mailto:ezcolombo@gmail.com] Sent: Thursday, December 27, 2007 1:02 To: tz@lecserver.nci.nih.gov Subject: Re: Proposed changes for Argentina, tzfile.5, and strerror Hi, i am waiting for the law publication to check details, I will send you a copy if you like. At this time i am not sure about the line:
+ Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S
The only advertised dates of implementations are for 2007/2008 ending at 2008- 03-16. I don`t see any news related to 2008 Oct. Could you share the source of this info ? Ezequiel, from Arg :( Arthur David Olson <olsona <at> elsie.nci.nih.gov> writes:
Here are proposed changes to the time zone package: 1. Most importantly, changes to the "southamerica" file (combinining material from Jesper Norgaard Welen and Paul Eggert) to reflect
Argentina's
readoption of daylight saving time. 2. Jonathan Leffler's fixes to tzfile.5. 3. Changes to eliminate HAVE_STRERROR and the conditional strerror definition. (A safe change since it should have no run-time effects; we'll see if anybody complains about uncompilability).
Barring problems these changes are to show up on the ftp site on Monday morning as usual, just in time to be late for the Argentina party.

As Ezequiel points, the law as passed at http://www.senado.gov.ar/web/proyectos/verExpe.php?origen=PE&tipo=PL&numexp=... only states that: "ARTICULO 1°.- Establécese como hora oficial en todo el territorio nacional, durante el período invernal, la del Huso Horario TRES (3) HORAS al Oeste del meridiano de Greenwich. ARTICULO 2°.- Establécese como hora oficial en todo el territorio nacional, durante el período estival, la del Huso Horario DOS (2) HORAS al Oeste del meridiano de Greenwich. ARTICULO 3°.- El período estival correspondiente al año 2007/2008, se iniciará a la CERO (0) HORA del día domingo 30 de diciembre de 2007 y se extenderá hasta la CERO (0) HORA del día domingo 16 de marzo de 2008. ARTICULO 4°.- El Poder Ejecutivo nacional fijará anualmente la fecha de iniciación y de terminación del período estival que corresponda." My shot at translating: "1° - Sets as official time in all the national territory, during the winter period, as THREE (3) HOURS West of Greenwich meridian time (GMT). 2° - Sets as official time in all the national territory, during the summer period, as TWO (2) HOURS West of Greenwich meridian time (GMT). 3° - Summer period corresponding to year 2007/2008, would start at ZERO (0) HOURS of Sunday 30 December 2007 and would extend up to the ZERO (0) HOURS of Sunday 16 March 2008. 4° - National executive power would set annually the start and finish date of the corresponding summer period." So, unbelievably, there's no date set yet for the start of the summer period for 2008 in Argentina. My 2¢, Alex Mayorga Adame

The translation is correct and so, the third Rule is not useful yet. I hope some more planning for the next year ! One more question, we need to modify the Zone America/Argentina/* sections at the last line to some like this: "-3:00 Arg AR%sT" ??? Thanks

Here are some further proposed patches, accumulating changes since last time. For the southamerica file, these changes assume the changes that Arthur David Olson has already proposed regarding time in Argentina; they merely add a few comments giving more credits, and put comments in what I hope is a more logical order ("logical"? "time in Argentina"? I must be joking....). Here are the other proposed changes: * Move Atlantic/Jan_Mayen to the 'backward' file (thanks to Jonas Melian for this). * Add documentation in the newctime manual page explaining that mktime does not always return identical outputs when given identical inputs (thanks to Nis Peder Bonde for this). * Update several URLs in tz-link.htm: - Add worldtimeengine.com. - Remove <http://www3.sympatico.ca/c.walton/canada_dst.html>, as it no longer exists. - The Leap Second Discussion List has moved to <http://six.pairlist.net/mailman/listinfo/leapsecs>. - Adjust several other URLs by removing "www." and trailing "/" and so forth, when this doesn't result in unnecessary redirection. * Correct a spelling error in tz-art.htm. =================================================================== RCS file: RCS/southamerica,v retrieving revision 2007.10.0.1 retrieving revision 2007.10.0.3 diff -pu -r2007.10.0.1 -r2007.10.0.3 --- southamerica 2007/12/27 17:34:52 2007.10.0.1 +++ southamerica 2007/12/27 20:25:22 2007.10.0.3 @@ -106,18 +106,6 @@ Rule Arg 1989 1992 - Oct Sun>=15 0:00 1: # from the International Date Line. Rule Arg 1999 only - Oct Sun>=1 0:00 1:00 S Rule Arg 2000 only - Mar Sun>=1 0:00 0 - -# From Jesper Norgaard Welen (2007-12-26) -# The last hurdle of Argentina DST is over, the proposal was approved in -# the lower chamber too (Deputados) with a vote 192 for and 2 against. -# By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to -# the original scanned proposal, where the dates and the zero hours are -# clear and unambiguous...This is the article about final approval: -# <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> -# http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 -# </a> -Rule Arg 2007 only - Dec 30 0:00 1:00 S -Rule Arg 2008 max - Mar Sun>=15 0:00 0 - -Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S # # From Peter Gradelski via Steffen Thorsen (2000-03-01): # We just checked with our Sao Paulo office and they say the government of @@ -152,6 +140,30 @@ Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 # This kind of things had always been done this way in Argentina. # We are still -03:00 all year round in all of the country. # +# From Steffen Thorsen (2007-12-21): +# A user (Leonardo Chaim) reported that Argentina will adopt DST.... +# all of the country (all Zone-entries) are affected. News reports like +# http://www.lanacion.com.ar/opinion/nota.asp?nota_id=973037 indicate +# that Argentina will use DST next year as well, from October to +# March, although exact rules are not given. +# +# From Jesper Norgaard Welen (2007-12-26) +# The last hurdle of Argentina DST is over, the proposal was approved in +# the lower chamber too (Deputados) with a vote 192 for and 2 against. +# By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to +# the original scanned proposal, where the dates and the zero hours are +# clear and unambiguous...This is the article about final approval: +# <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> +# http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 +# </a> +# +# From Paul Eggert (2007-12-22): +# For dates after mid-2008, the following rules are my guesses and +# are quite possibly wrong, but are more likely than no DST at all. +Rule Arg 2007 only - Dec 30 0:00 1:00 S +Rule Arg 2008 max - Mar Sun>=15 0:00 0 - +Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S + # From Mariano Absatz (2004-05-21): # Today it was officially published that the Province of Mendoza is changing # its timezone this winter... starting tomorrow night.... =================================================================== RCS file: RCS/backward,v retrieving revision 2007.1 retrieving revision 2007.1.0.1 diff -pu -r2007.1 -r2007.1.0.1 --- backward 2007/01/08 17:17:28 2007.1 +++ backward 2007/12/27 20:21:17 2007.1.0.1 @@ -30,6 +30,7 @@ Link Asia/Thimphu Asia/Thimbu Link Asia/Makassar Asia/Ujung_Pandang Link Asia/Ulaanbaatar Asia/Ulan_Bator Link Atlantic/Faroe Atlantic/Faeroe +Link Europe/Oslo Atlantic/Jan_Mayen Link Australia/Sydney Australia/ACT Link Australia/Sydney Australia/Canberra Link Australia/Lord_Howe Australia/LHI =================================================================== RCS file: RCS/europe,v retrieving revision 2007.7 retrieving revision 2007.7.0.1 diff -pu -r2007.7 -r2007.7.0.1 --- europe 2007/08/20 14:45:10 2007.7 +++ europe 2007/12/27 20:21:17 2007.7.0.1 @@ -1714,7 +1714,6 @@ Zone Europe/Oslo 0:43:00 - LMT 1895 Jan # come up with more definitive info about the timekeeping during the # war years it's probably best just do do the following for now: Link Europe/Oslo Arctic/Longyearbyen -Link Europe/Oslo Atlantic/Jan_Mayen # Poland # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S =================================================================== RCS file: RCS/zone.tab,v retrieving revision 2007.10 retrieving revision 2007.10.0.1 diff -pu -r2007.10 -r2007.10.0.1 --- zone.tab 2007/12/03 14:50:41 2007.10 +++ zone.tab 2007/12/27 20:21:17 2007.10.0.1 @@ -341,8 +341,7 @@ SE +5920+01803 Europe/Stockholm SG +0117+10351 Asia/Singapore SH -1555-00542 Atlantic/St_Helena SI +4603+01431 Europe/Ljubljana -SJ +7800+01600 Arctic/Longyearbyen Svalbard -SJ +7059-00805 Atlantic/Jan_Mayen Jan Mayen +SJ +7800+01600 Arctic/Longyearbyen SK +4809+01707 Europe/Bratislava SL +0830-01315 Africa/Freetown SM +4355+01228 Europe/San_Marino =================================================================== RCS file: RCS/newctime.3,v retrieving revision 2006.2 retrieving revision 2006.2.0.1 diff -pu -r2006.2 -r2006.2.0.1 --- newctime.3 2006/02/20 15:08:16 2006.2 +++ newctime.3 2007/12/27 20:21:17 2006.2.0.1 @@ -115,7 +115,9 @@ A negative value for causes the .I mktime function to attempt to divine whether summer time is in effect -for the specified time.) +for the specified time; in this case it does not use a consistent +rule and may give a different answer when later +presented with the same argument.) On successful completion, the values of the .B tm_wday and =================================================================== RCS file: RCS/tz-art.htm,v retrieving revision 2007.7 retrieving revision 2007.7.0.1 diff -pu -r2007.7 -r2007.7.0.1 --- tz-art.htm 2007/08/20 14:45:10 2007.7 +++ tz-art.htm 2007/12/27 20:21:17 2007.7.0.1 @@ -365,7 +365,7 @@ or are you trying to dazzle me with your </li> <li> A private jet's mid-flight change of time zones distorts Alison Dubois' -premonition in the "We Had a Dream" episoed of "Medium" +premonition in the "We Had a Dream" episode of "Medium" (originally aired 2007-02-28). </li> <li> =================================================================== RCS file: RCS/tz-link.htm,v retrieving revision 2007.10 retrieving revision 2007.10.0.1 diff -pu -r2007.10 -r2007.10.0.1 --- tz-link.htm 2007/12/03 14:50:41 2007.10 +++ tz-link.htm 2007/12/27 20:21:17 2007.10.0.1 @@ -8,7 +8,7 @@ <meta http-equiv="Content-type" content='text/html; charset="US-ASCII"'> <meta name="DC.Creator" content="Eggert, Paul"> <meta name="DC.Contributor" content="Olson, Arthur David"> -<meta name="DC.Date" content="2007-11-29"> +<meta name="DC.Date" content="2007-12-26"> <meta name="DC.Description" content="Sources of information about time zones and daylight saving time"> <meta name="DC.Identifier" content="http://www.twinsun.com/tz/tz-link.htm"> @@ -45,18 +45,18 @@ including C Library</a> used in <a href="http://www.linux.org/"><abbr>GNU</abbr>/Linux</a>, <a href="http://www.freebsd.org/">FreeBSD</a>, -<a href="http://www.netbsd.org/">NetBSD</a>, -<a href="http://www.openbsd.org/">OpenBSD</a>, -<a href="http://www.cygwin.com/">Cygwin</a>, +<a href="http://netbsd.org/">NetBSD</a>, +<a href="http://openbsd.org/">OpenBSD</a>, +<a href="http://cygwin.com/">Cygwin</a>, <a href="http://www.delorie.com/djgpp/"><abbr title="DJ's GNU Programming Platform">DJGPP</abbr></a>, -<a href="http://www.ibm.com/servers/aix/">AIX</a>, +<a href="http://ibm.com/aix">AIX</a>, <a href="http://www.apple.com/macosx/">Mac OS X</a>, <a href="http://h71000.www7.hp.com/">OpenVMS</a>, -<a href="http://www.oracle.com/database/index.html">Oracle Database</a>, -<a href="http://www.sun.com/software/solaris/">Solaris</a>, +<a href="http://oracle.com/database">Oracle Database</a>, +<a href="http://sun.com/software/solaris">Solaris</a>, <a href="http://h30097.www3.hp.com/">Tru64</a>, and -<a href="http://www.sco.com/products/unixware/">UnixWare</a>.</p> +<a href="http://sco.com/products/unixware">UnixWare</a>.</p> <p> Each location in the database represents a national region where all clocks keeping local time have agreed since 1970. @@ -79,13 +79,14 @@ implementation set the <code>TZ</code> e the location's full name, e.g., <code>TZ="America/New_York"</code>.</p> <p> In the <code>tz</code> database's -<a href="ftp://elsie.nci.nih.gov/pub/"><abbr +<a href="ftp://elsie.nci.nih.gov/pub"><abbr title="File Transfer Protocol">FTP</abbr> distribution</a> the code is in the file <code>tzcode<var>C</var>.tar.gz</code>, where <code><var>C</var></code> is the code's version; similarly, the data are in <code>tzdata<var>D</var>.tar.gz</code>, where <code><var>D</var></code> is the data's version. -The following shell commands download +The following <a +href="http://en.wikipedia.org/wiki/Unix_shell">shell</a> commands download these files to a <abbr>GNU</abbr>/Linux or similar host; see the downloaded <code>README</code> file for what to do next.</p> @@ -102,15 +103,15 @@ location.</p> The data are by no means authoritative. If you find errors, please send changes to the <a href="mailto:tz@elsie.nci.nih.gov">time zone mailing list</a>. You can also <a -href="http://news.gmane.org/gmane.comp.time.tz/">browse recent +href="http://news.gmane.org/gmane.comp.time.tz">browse recent messages</a> sent to the mailing list, <a href="mailto:tz-request@elsie.nci.nih.gov">subscribe</a> to it, 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 +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 +href="http://public.planetmirror.com/pub/timezone"><abbr title="Hypertext Transfer Protocol">HTTP</abbr> mirror</a>.</p> <p> @@ -118,45 +119,47 @@ The Web has several other sources for ti Here are some recent links that may be of interest. </p> <h2>Web pages using recent versions of the <code>tz</code> database</h2> +<p> +These are listed roughly in ascending order of complexity and fanciness. +</p> <ul> <li><a href="http://twiki.org/cgi-bin/xtra/tzdatepick.html">Date and Time Gateway</a> -is a text-based point-and-click interface to tables of current time -throughout the world.</li> -<li>Fancier web interfaces, roughly in ascending order of complexity, include: -<ul> +lets you see the <code>TZ</code> values directly.</li> <li><a -href="http://www.convertit.com/Go/ConvertIt/World_Time/Current_Time.ASP">Current -Time in 1000 Places</a></li> -<li><a href="http://timezoneconverter.com/">Time Zone Converter</a></li> +href="http://convertit.com/Go/ConvertIt/World_Time/Current_Time.ASP">Current +Time in 1000 Places</a> uses descriptions of the values.</li> +<li><a href="http://www.timezoneconverter.com/">Time Zone Converter</a> +uses a pulldown menu.</li> <li><a href="http://home.tiscali.nl/~t876506/TZworld.html">Complete -timezone information for all countries</a></li> -</ul></li> -<li><a href="http://www.timeanddate.com/worldclock/">The World Clock - -Time Zones</a> -is a web interface to a time zone database derived from -<code>tz</code>'s.</li> +timezone information for all countries</a> displays tables of DST rules. +<li><a href="http://timeanddate.com/worldclock/">The World Clock - +Time Zones</a> lets you sort zone names and convert times.</li> +<li>The <a href="http://worldtimeengine.com/">World Time Engine</a> +also contains data about time zone boundaries; it supports queries via place +names and shows location maps.</li> </ul> <h2>Other time zone database formats</h2> <ul> <li>The <a href="ftp://ftp.rfc-editor.org/in-notes/rfc2445.txt"> Internet Calendaring and Scheduling Core Object Specification -(iCalendar)</a> specification published by the (now-concluded) <a -href="http://www.ietf.org/html.charters/OLD/calsch-charter.html"><abbr +(iCalendar)</a>, Internet <abbr title="Request For +Comments">RFC</abbr> 2445, published by the (now-concluded) <a +href="http://ietf.org/html.charters/OLD/calsch-charter.html"><abbr title="Internet Engineering Task Force">IETF</abbr> Calendaring and Scheduling Working Group (<abbr title="Calendaring and Scheduling Working Group">calsch</abbr>)</a> covers time zone data; see its VTIMEZONE calendar component. -The <a href="http://www.calconnect.org/">Calendaring and Scheduling +The <a href="http://calconnect.org/">Calendaring and Scheduling Consortium</a> is promoting further work in this area. <a -href="http://www.calconnect.org/publications/icalendartimezoneproblemsandrecommendationsv1.0.pdf">iCalendar +href="http://calconnect.org/publications/icalendartimezoneproblemsandrecommendationsv1.0.pdf">iCalendar TIMEZONE Problems and Recommendations</a> offers guidelines and recommendations for the use of VTIMEZONE and <code>tz</code>.</li> -<li><a href="http://www.calconnect.org/dstlinks.shtml">Extended Daylight +<li><a href="http://calconnect.org/dstlinks.shtml">Extended Daylight Saving Time Links, Advisories and Changes</a> lists vendor material on recent daylight saving time changes.</li> <li><a -href="http://www.calconnect.org/publications/timezoneregistryandservicerecommendationsv1.0.pdf">Timezone +href="http://calconnect.org/publications/timezoneregistryandservicerecommendationsv1.0.pdf">Timezone Registry and Service Recommendations</a> discusses a strategy for defining and deploying a time zone registration process that would establish unique names for each @@ -185,9 +188,9 @@ available under the <a href="http://www.gnu.org/copyleft/gpl.html"><abbr>GNU</abbr> General Public License (<abbr title="General Public License">GPL</abbr>)</a>.</li> -<li><a href="http://sourceforge.net/projects/tzical/">tziCal - tz +<li><a href="http://sourceforge.net/projects/tzical">tziCal - tz database conversion utility</a> is like Vzic, except for the <a -href="http://msdn.microsoft.com/netframework/">.NET framework</a>.</li> +href="http://msdn.microsoft.com/netframework">.NET framework</a>.</li> <li><a href="http://search.cpan.org/dist/DateTime-TimeZone/">DateTime::TimeZone</a> contains a script <code>parse_olson</code> that compiles @@ -212,23 +215,23 @@ contains a class <code>org.joda.time.tz.ZoneInfoCompiler</code> that compiles <code>tz</code> source into a Joda-specific binary format. Joda Time is freely available under a <abbr>BSD</abbr>-style license.</li> -<li><a href="http://sourceforge.net/projects/pytz/">PyTZ - Python Time +<li><a href="http://sourceforge.net/projects/pytz">PyTZ - Python Time Zone Library</a> compiles <code>tz</code> source into -<a href="http://www.python.org/">Python</a>. +<a href="http://python.org/">Python</a>. It is freely available under a <abbr>BSD</abbr>-style license.</li> <li><a href="http://tzinfo.rubyforge.org/">TZInfo - Ruby Timezone Library</a> compiles <code>tz</code> source into -<a href="http://www.ruby-lang.org/">Ruby</a>. +<a href="http://ruby-lang.org">Ruby</a>. It is freely available under the <abbr title="Massachusetts Institute of Technology">MIT</abbr> license.</li> -<li>The <a href="http://www.chronos-st.org/">Chronos Date/Time -Library</a> is a <a href="http://smalltalk.org/">Smalltalk</a> class +<li>The <a href="http://chronos-st.org/">Chronos Date/Time +Library</a> is a <a href="http://smalltalk.org">Smalltalk</a> class library that compiles <code>tz</code> source into a <a href="http://date-time-zone.com/">time zone repository</a> whose format is either proprietary or an <a href="http://www.w3.org/XML/"><abbr title="Extensible Markup Language">XML</abbr></a>-encoded representation.</li> -<li>Starting with version 8.5, <a href="http://www.tcl.tk/">Tcl</a> +<li>Starting with version 8.5, <a href="http://tcl.tk/">Tcl</a> contains a developer-oriented parser that compiles <samp>tz</samp> source into text files, along with a runtime that can read those files. Tcl is freely available under a <abbr>BSD</abbr>-style @@ -246,7 +249,7 @@ This library is freely available under t <abbr>GNU</abbr> Lesser General Public License (<abbr title="Lesser General Public License">LGPL</abbr>)</a>, and is widely used in <abbr>GNU</abbr>/Linux systems.</li> -<li><a href="http://www.bmsi.com/java/#TZ">ZoneInfo.java</a> +<li><a href="http://bmsi.com/java/#TZ">ZoneInfo.java</a> is a <code>tz</code> binary file reader written in Java. It is freely available under the <abbr>LGPL</abbr>.</li> <li>Tcl, mentioned above, also contains a @@ -254,12 +257,12 @@ It is freely available under the <abbr>L </ul> <h2>Other <code>tz</code>-based time zone software</h2> <ul> -<li><a href="http://www.stemhaus.com/firefox/foxclocks/">FoxClocks</a> +<li><a href="http://stemhaus.com/firefox/foxclocks/">FoxClocks</a> is an extension for <a href="http://developer.mozilla.org/en/docs/Toolkit_API">Mozilla Toolkit</a> applications like <a -href="http://www.mozilla.com/firefox/">Firefox</a>, <a -href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a>, and +href="http://mozilla.com/firefox">Firefox</a>, <a +href="http://mozilla.com/thunderbird">Thunderbird</a>, and <a href="http://www.mozilla.org/projects/calendar/sunbird/">Sunbird</a>. It displays multiple clocks in the application window, and has a mapping @@ -270,7 +273,7 @@ href="http://users.skynet.be/Peter.Verth clock (intclock)</a> is a multi-timezone clock for <abbr>GNU</abbr>/Linux and similar systems. It is freely available under the <abbr>GPL</abbr>.</li> -<li><a href="http://www.codeplex.com/publicdomain">PublicDomain</a> +<li><a href="http://codeplex.com/publicdomain">PublicDomain</a> has a copy of a recent <code>tz</code> database, accessed via a <a href="http://en.wikipedia.org/wiki/C_Sharp">C#</a> library. As its name suggests, it is in the public domain. Only current time stamps @@ -283,12 +286,12 @@ Java-specific format.</li> a <a href="http://wordpress.org/">WordPress</a> plugin. It is freely available under a <abbr>BSD</abbr>-style license.</li> <li><a -href="http://www.veladg.com/velaterra.html">VelaTerra</a> is +href="http://veladg.com/velaterra.html">VelaTerra</a> is a Mac OS X program. Its developers -<a href="http://www.veladg.com/tzoffer.html">offer free +<a href="http://veladg.com/tzoffer.html">offer free licenses</a> to <code>tz</code> contributors.</li> <li><a -href="http://www.worldtimeexplorer.com/index.html">World Time Explorer</a> is a +href="http://worldtimeexplorer.com/">World Time Explorer</a> is a Microsoft Windows program.</li> </ul> <h2>Other time zone databases</h2> @@ -307,15 +310,15 @@ href="http://astrocom.com/">Astro Commun time info, public holidays</a> contains information on local time, sunrise and sunset, and public holidays in several hundred cities around the world.</li> -<li><a href="http://www.worldtimeserver.com/">World Time Server</a> +<li><a href="http://worldtimeserver.com/">World Time Server</a> is another time zone database.</li> <li><a href="http://tycho.usno.navy.mil/tzones.html">World Time Zones</a> contains data from the Time Service Department of the <abbr>US</abbr> Naval Observatory, used as the source for the <code>usno*</code> files in the <code>tz</code> distribution.</li> -<li>The <a href="http://www.iata.org/ps/publications/9179.htm">Standard +<li>The <a href="http://iata.org/ps/publications/SSIM.htm">Standard Schedules Information Manual</a> of the -<a href="http://www.iata.org/index.htm">International Air Transport +<a href="http://iata.org/index.htm">International Air Transport Association</a> gives current time zone rules for airports served by commercial aviation.</li> <li>Some Microsoft Windows versions contain time zone information in @@ -350,11 +353,11 @@ but the maps are more up to date.</li> </ul> <h2>Time zone boundaries</h2> <ul> -<li><a href="http://www.efele.net/maps/">A map of the TZ timezones in +<li><a href="http://efele.net/maps/">A map of the TZ timezones in the US</a> contains a <a href="http://en.wikipedia.org/wiki/Shapefile">shapefile</a> of the <code>tz</code> regions in the US.</li> -<li><a href="http://www.statoids.com/statoids.html">Administrative Divisions +<li><a href="http://statoids.com/statoids.html">Administrative Divisions of Countries ("Statoids")</a> contains detailed lists of <code>tz</code>-related zone subdivision data.</li> <li><a href="http://home.tiscali.nl/~t876506/Multizones.html">Time @@ -391,9 +394,9 @@ surveys the evolution of timekeeping.</l <li><a href="http://webexhibits.org/daylightsaving/">About Daylight Saving Time - History, rationale, laws & dates</a> is an overall history of <abbr>DST</abbr>.</li> -<li><a href="http://www.energy.ca.gov/daylightsaving.html">Saving Time, +<li><a href="http://energy.ca.gov/daylightsaving.html">Saving Time, Saving Energy</a> discusses a primary justification for <abbr>DST</abbr>.</li> -<li><a href="http://www.seizethedaylight.com/dst/">Who Knew? A Brief +<li><a href="http://seizethedaylight.com/dst/">Who Knew? A Brief History of Daylight Saving Time</a> summarizes some of the contentious history of <abbr>DST</abbr>.</li> <li><a href="http://toi.iriti.cnr.it/">The @@ -404,7 +407,7 @@ The time zone map is out of date, howeve <li><a href="http://www.phys.uu.nl/~vgent/idl/idl.htm">A History of the International Date Line</a> tells the story of the most important time zone boundary.</li> -<li><a href="http://www.statoids.com/tconcept.html">Basic Time +<li><a href="http://statoids.com/tconcept.html">Basic Time Zone Concepts</a> discusses terminological issues behind time zones.</li> </ul> <h2>National histories of legal time</h2> @@ -428,9 +431,7 @@ Portuguese)</a>.</dd> <dd>The Institute for National Measurement Standards publishes current and some older information about <a href="http://inms-ienm.nrc-cnrc.gc.ca/time_services/daylight_saving_e.html">Time -Zones & Daylight Saving Time</a>. -<a href="http://www3.sympatico.ca/c.walton/canada_dst.html">Canadian -Daylight Saving Regulations</a> summarizes changes for 2007.</dd> +Zones & Daylight Saving Time</a>.</dd> <dt>Chile</dt> <dd>The Chilean Hydrographic and Oceanographic Service publishes a <a href="http://www.horaoficial.cl/horaof.htm" hreflang="es"> history of @@ -441,7 +442,7 @@ href="http://www.ptb.de/en/org/4/44/441/ Legal Time in Germany</a>.</dd> <dt>Israel</dt> <dd>The Interior Ministry periodically issues <a -href="ftp://ftp.cs.huji.ac.il/pub/tz/announcements/" +href="ftp://ftp.cs.huji.ac.il/pub/tz/announcements" hreflang="he">announcements (in Hebrew)</a>.</dd> <dt>Mexico</dt> <dd>The Investigation and Analysis Service of the Mexican Library of @@ -456,9 +457,9 @@ hreflang="nl">Legal time in the Netherla covers the history of local time in the Netherlands from ancient times.</dd> <dt>New Zealand</dt> <dd>The Department of Internal Affairs maintains a brief history <a -href="http://www.dia.govt.nz/diawebsite.nsf/wpg_URL/Resource-material-Information-We-Provide-About-Daylight-Saving">About +href="http://dia.govt.nz/diawebsite.nsf/wpg_URL/Resource-material-Information-We-Provide-About-Daylight-Saving">About Daylight Saving</a>. The privately-maintained <a -href="http://www.astrologyschool.com/nztime.html">History of New Zealand +href="http://astrologyschool.com/nztime.html">History of New Zealand time</a> has more details.</dd> <dt>Norway</dt> <dd>The Norwegian Meteorological Institute lists @@ -491,8 +492,9 @@ Time Protocol</a> discusses how to synchronize clocks of Internet hosts.</li> <li><a -href="ftp://ftp.rfc-editor.org/in-notes/rfc4833.txt">A -Timezone Option for <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr></a> +href="ftp://ftp.rfc-editor.org/in-notes/rfc4833.txt">Timezone +Options for <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr></a> +(Internet <abbr>RFC</abbr> 4833) specifies a <a href="http://www.dhcp.org/">DHCP</a> option for a server to configure a client's time zone and daylight saving settings automatically.</li> @@ -510,7 +512,7 @@ Times</a> explains more abstruse astrono <abbr title="Barycentric Dynamic Time">TDB</abbr>. <a href="http://www.ucolick.org/~sla/leapsecs/timescales.html">Time Scales</a> goes into more detail, particularly for historical variants.</li> -<li>The <a href="http://www.iau.org/"><abbr +<li>The <a href="http://iau.org/"><abbr title="International Astronomical Union">IAU</abbr></a>'s <a href="http://www.iau-sofa.rl.ac.uk/"><abbr title="Standards Of Fundamental Astronomy">SOFA</abbr></a> @@ -519,7 +521,7 @@ code for converting among time scales li <abbr title="International Atomic Time">TAI</abbr>, <abbr>TDB</abbr>, <abbr>TDT</abbr> and <abbr>UTC</abbr>.</li> -<li><a href="http://www.jpl.nasa.gov/basics/bsf2-3.htm">Basics of +<li><a href="http://jpl.nasa.gov/basics/bsf2-3.htm">Basics of Space Flight - Reference Systems - Time Conventions</a> briefly explains interplanetary space flight timekeeping.</li> <li><a @@ -529,7 +531,7 @@ describes Mars Coordinated Time (<abbr title="Mars Coordinated Time">MTC</abbr>) and the diverse local time scales used by each landed mission on Mars.</li> -<li><a href="http://www.leapsecond.com/">LeapSecond.com</a> is +<li><a href="http://leapsecond.com/">LeapSecond.com</a> is dedicated not only to leap seconds but to precise time and frequency in general. It covers the state of the art in amateur timekeeping, and how the art has progressed over the past few decades.</li> @@ -543,15 +545,14 @@ the Earth Orientation Parameters Product International Earth Rotation Service, the committee that decides when leap seconds occur.</li> <li>The <a -href="http://www.mail-archive.com/leapsecs@rom.usno.navy.mil/">Leap -Second Discussion List</a> and <a -href="http://rom.usno.navy.mil/archives/leapsecs.html">archive</a> covers <a +href="http://six.pairlist.net/mailman/listinfo/leapsecs">Leap +Second Discussion List</a> covers <a href="http://gauss.gge.unb.ca/papers.pdf/gpsworld.november99.pdf">McCarthy and Klepczynski's proposal to discontinue leap seconds</a>, discussed further in <a href="http://www.cl.cam.ac.uk/~mgk25/time/metrologia-leapsecond.pdf">The leap second: its history and possible future</a>. -The <a href="http://www.aas.org/policy/LeapSecondCommittee.html"><abbr +The <a href="http://aas.org/policy/LeapSecondCommittee.html"><abbr title="American Astronomical Society">AAS</abbr> Leap Second Committee</a> has solicited input on this proposal. <a href="http://www.ucolick.org/~sla/leapsecs/">The @@ -574,14 +575,15 @@ interchange -- Representation of dates a Schema: Datatypes - dateTime</a> specifies a format inspired by <abbr>ISO</abbr> 8601 that is in common use in XML data.</li> <li> -<a href="ftp://ftp.rfc-editor.org/in-notes/rfc2822.txt">Internet <abbr -title="Request For Comments">RFC</abbr> 2822</a> §3.3 +<a href="ftp://ftp.rfc-editor.org/in-notes/rfc2822.txt">Internet +Message Format</a> (Internet <abbr>RFC</abbr> 2822) §3.3 specifies the time notation used in email and <a href="ftp://ftp.rfc-editor.org/in-notes/rfc2616.txt"><abbr>HTTP</abbr></a> headers.</li> <li> -<a href="ftp://ftp.rfc-editor.org/in-notes/rfc3339.txt">Internet -<abbr>RFC</abbr> 3339</a> specifies an <abbr>ISO</abbr> 8601 +<a href="ftp://ftp.rfc-editor.org/in-notes/rfc3339.txt">Date and Time +on the Internet: Timestamps</a> (Internet <abbr>RFC</abbr> 3339) +specifies an <abbr>ISO</abbr> 8601 profile for use in new Internet protocols.</li> <li> @@ -589,7 +591,7 @@ protocols.</li> Formats on the Web</a> surveys web- and Internet-oriented date and time formats.</li> <li> -<a href="http://www.exit109.com/~ghealton/y2k/yrexamples.html">The +<a href="http://exit109.com/~ghealton/y2k/yrexamples.html">The Best of Dates, the Worst of Dates</a> covers many problems encountered by software developers when handling dates and time stamps.</li> <li>The <a @@ -599,7 +601,7 @@ abbreviations, identifiers, and formats. French translations for "Eastern European Summer Time", "<abbr title="Eastern European Summer Time">EEST</abbr>", and "Bucharest". <a -href="http://www.unicode.org/cldr/data/charts/by_type/names.metazone.html">By-Type +href="http://unicode.org/cldr/data/charts/by_type/names.metazone.html">By-Type Chart: names.metazone</a> shows these values for many locales. <abbr>ICU</abbr> contains a mechanism for using this data.</li> <li>Alphabetic time zone abbreviations should not be used as unique @@ -632,11 +634,11 @@ is called "<abbr>GMT</abbr>".</li> <h2>Related indexes</h2> <ul> <li><a href="tz-art.htm">Time and the Arts</a></li> -<li><a href="http://dmoz.org/Reference/Time/">Open Directory - +<li><a href="http://www.dmoz.org/Reference/Time/">Open Directory - Reference: Time</a></li> <li><a href="http://directory.google.com/Top/Reference/Time/">Google Directory - Reference > Time</a></li> -<li><a href="http://dir.yahoo.com/Science/Measurements_and_Units/Time/">Yahoo! +<li><a href="http://dir.yahoo.com/Science/Measurements_and_Units/Time">Yahoo! Directory > Science > Measurements and Units > Time</a></li> </ul> </body>

Paul Eggert escribió el 27/12/07 17:41:
Here are some further proposed patches, accumulating changes since last time. For the southamerica file, these changes assume the changes that Arthur David Olson has already proposed regarding time in Argentina; they merely add a few comments giving more credits, and put comments in what I hope is a more logical order ("logical"? "time in Argentina"? I must be joking....).
Sure, indeed... now, Paul... do these new Arg rules actually come in effect in the cities within America/Argentina if you don't change the last -3:00 - ART in every one of them by: -3:00 - ART 2007 Dec 29 -3:00 Arg AR%sT ? Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 ) Regards. -- Mariano Absatz - "El Baby" baby@baby.com.ar -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- I don't suffer from insanity. I enjoy every minute of it. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- * TagZilla 0.066 * http://tagzilla.mozdev.org

Right. But should the UNTIL part be 2007 Dec 30? -3:00 - ART 2007 Dec 30 -3:00 Arg AR%sT Thanks, Masayoshi On 12/28/2007 9:17 AM, Mariano Absatz wrote:
Paul Eggert escribió el 27/12/07 17:41:
Here are some further proposed patches, accumulating changes since last time. For the southamerica file, these changes assume the changes that Arthur David Olson has already proposed regarding time in Argentina; they merely add a few comments giving more credits, and put comments in what I hope is a more logical order ("logical"? "time in Argentina"? I must be joking....).
Sure, indeed... now, Paul... do these new Arg rules actually come in effect in the cities within America/Argentina if you don't change the last
-3:00 - ART in every one of them by: -3:00 - ART 2007 Dec 29 -3:00 Arg AR%sT ?
Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 )
Regards.

I wasn't quite sure... what I mean here is that the "no rule" is in effect until Dec 29 (hence, the Arg rule is in effect starting Dec 30), but I definitively am not expert with tzdata... I'd like some confirmation from Paul or someone else knowledgable that the changes I made are necessary an correct... that is, I think that if they're not in place (whether they say Dec 29 or Dec 30), nothing will change in my machine where /etc/localtime points to /usr/share/zoneinfo/America/Argentina/Buenos_Aires... Masayoshi Okutsu escribió el 12/28/2007 02:24 AM:
Right. But should the UNTIL part be 2007 Dec 30?
-3:00 - ART 2007 Dec 30 -3:00 Arg AR%sT
Thanks, Masayoshi
On 12/28/2007 9:17 AM, Mariano Absatz wrote:
Paul Eggert escribió el 27/12/07 17:41:
Here are some further proposed patches, accumulating changes since last time. For the southamerica file, these changes assume the changes that Arthur David Olson has already proposed regarding time in Argentina; they merely add a few comments giving more credits, and put comments in what I hope is a more logical order ("logical"? "time in Argentina"? I must be joking....).
Sure, indeed... now, Paul... do these new Arg rules actually come in effect in the cities within America/Argentina if you don't change the last
-3:00 - ART in every one of them by: -3:00 - ART 2007 Dec 29 -3:00 Arg AR%sT ?
Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 )
Regards.
-- Mariano Absatz - "El Baby" baby@baby.com.ar -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Always remember you're unique, just like everyone else. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- * TagZilla 0.066 * http://tagzilla.mozdev.org

Mariano Absatz <baby@baby.com.ar> writes:
Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 )
Oops, yes, sorry, I missed that part of it. However, the change can be made a bit more compact by adjusting the Rule line. Here's a revised patch, just for 'southamerica'. We've seen a lot of patches fly by; to avoid confusion, this 'southamerica' patch is relative to tzdata2007j, =================================================================== RCS file: RCS/southamerica,v retrieving revision 2007.10 retrieving revision 2007.10.0.4 diff -pu -r2007.10 -r2007.10.0.4 --- southamerica 2007/12/03 14:50:41 2007.10 +++ southamerica 2007/12/29 00:53:25 2007.10.0.4 @@ -1,4 +1,4 @@ -# @(#)southamerica 8.13 +# @(#)southamerica 8.14 # <pre> # This data is by no means authoritative; if you think you know better, @@ -105,7 +105,11 @@ Rule Arg 1989 1992 - Oct Sun>=15 0:00 1: # which did not result in the switch of a time zone, as they stayed 9 hours # from the International Date Line. Rule Arg 1999 only - Oct Sun>=1 0:00 1:00 S -Rule Arg 2000 only - Mar Sun>=1 0:00 0 - +# From Paul Eggert (2007-12-28): +# DST was set to expire on March 5, not March 3, but since it was converted +# to standard time on March 3 it's more convenient for us to pretend that +# it ended on March 3. +Rule Arg 2000 only - Mar 3 0:00 0 - # # From Peter Gradelski via Steffen Thorsen (2000-03-01): # We just checked with our Sao Paulo office and they say the government of @@ -140,6 +144,30 @@ Rule Arg 2000 only - Mar Sun>=1 0:00 0 - # This kind of things had always been done this way in Argentina. # We are still -03:00 all year round in all of the country. # +# From Steffen Thorsen (2007-12-21): +# A user (Leonardo Chaim) reported that Argentina will adopt DST.... +# all of the country (all Zone-entries) are affected. News reports like +# http://www.lanacion.com.ar/opinion/nota.asp?nota_id=973037 indicate +# that Argentina will use DST next year as well, from October to +# March, although exact rules are not given. +# +# From Jesper Norgaard Welen (2007-12-26) +# The last hurdle of Argentina DST is over, the proposal was approved in +# the lower chamber too (Deputados) with a vote 192 for and 2 against. +# By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to +# the original scanned proposal, where the dates and the zero hours are +# clear and unambiguous...This is the article about final approval: +# <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> +# http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 +# </a> +# +# From Paul Eggert (2007-12-22): +# For dates after mid-2008, the following rules are my guesses and +# are quite possibly wrong, but are more likely than no DST at all. +Rule Arg 2007 only - Dec 30 0:00 1:00 S +Rule Arg 2008 max - Mar Sun>=15 0:00 0 - +Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S + # From Mariano Absatz (2004-05-21): # Today it was officially published that the Province of Mendoza is changing # its timezone this winter... starting tomorrow night.... @@ -214,7 +242,7 @@ Zone America/Argentina/Buenos_Aires -3:5 -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Santa Fe (SF), Entre Rios (ER), Corrientes (CN), Misiones (MN), Chaco (CC), # Formosa (FM), Salta (SA), Santiago del Estero (SE), Cordoba (CB), @@ -237,7 +265,7 @@ Zone America/Argentina/Cordoba -4:16:48 -4:00 - WART 1991 Oct 20 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Tucuman (TM) Zone America/Argentina/Tucuman -4:20:52 - LMT 1894 Oct 31 @@ -250,7 +278,7 @@ Zone America/Argentina/Tucuman -4:20:52 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 13 - -3:00 - ART + -3:00 Arg AR%sT # # La Rioja (LR) Zone America/Argentina/La_Rioja -4:27:24 - LMT 1894 Oct 31 @@ -263,7 +291,7 @@ Zone America/Argentina/La_Rioja -4:27:24 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # San Juan (SJ) Zone America/Argentina/San_Juan -4:34:04 - LMT 1894 Oct 31 @@ -276,7 +304,7 @@ Zone America/Argentina/San_Juan -4:34:04 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 31 -4:00 - WART 2004 Jul 25 - -3:00 - ART + -3:00 Arg AR%sT # # Jujuy (JY) Zone America/Argentina/Jujuy -4:21:12 - LMT 1894 Oct 31 @@ -290,7 +318,7 @@ Zone America/Argentina/Jujuy -4:21:12 - -3:00 1:00 ARST 1992 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Catamarca (CT), Chubut (CH) Zone America/Argentina/Catamarca -4:23:08 - LMT 1894 Oct 31 @@ -303,7 +331,7 @@ Zone America/Argentina/Catamarca -4:23:0 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # Mendoza (MZ) Zone America/Argentina/Mendoza -4:35:16 - LMT 1894 Oct 31 @@ -320,7 +348,7 @@ Zone America/Argentina/Mendoza -4:35:16 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 23 -4:00 - WART 2004 Sep 26 - -3:00 - ART + -3:00 Arg AR%sT # # Santa Cruz (SC) Zone America/Argentina/Rio_Gallegos -4:36:52 - LMT 1894 Oct 31 @@ -331,7 +359,7 @@ Zone America/Argentina/Rio_Gallegos -4:3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # Tierra del Fuego, Antartida e Islas del Atlantico Sur (TF) Zone America/Argentina/Ushuaia -4:33:12 - LMT 1894 Oct 31 @@ -342,7 +370,7 @@ Zone America/Argentina/Ushuaia -4:33:12 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 30 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # Aruba # Zone NAME GMTOFF RULES FORMAT [UNTIL]

Paul Eggert escribió el 28/12/07 21:57:
Mariano Absatz <baby@baby.com.ar> writes:
Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 )
Oops, yes, sorry, I missed that part of it. However, the change can be made a bit more compact by adjusting the Rule line. Here's a revised patch, just for 'southamerica'. We've seen a lot of patches fly by; to avoid confusion, this 'southamerica' patch is relative to tzdata2007j,
Thanx, Paul... (my home ISP hasn't been quite functional this weekend, so I wasn't able to reply earlier)... your patch is indeed nicer than mine, but at least I checked both zdup outputs and they're identical, so the southamerica file I've been distributing around before the weekend must've worked fine :-) As Daniel and Mario pointed out before, I think it'd be a good idea to include in the southamerica file the link to the "Boletín Oficial" that has the actual text of the "Ley 26.350" http://www.boletinoficial.gov.ar/Bora.Portal/CustomControls/PdfContent.aspx?... (the "Boletín Oficial" - http://www.boletinoficial.gov.ar/ - is the official publication of all National Laws and Decrees in Argentina). Regards -- Mariano Absatz - "El Baby" baby@baby.com.ar -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Lottery: A tax on people who are bad at math. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- * TagZilla 0.066 * http://tagzilla.mozdev.org

Mariano Absatz <baby@baby.com.ar> writes:
As Daniel and Mario pointed out before, I think it'd be a good idea to include in the southamerica file the link to the "Boletín Oficial" that has the actual text of the "Ley 26.350" http://www.boletinoficial.gov.ar/Bora.Portal/CustomControls/PdfContent.aspx?...
Thanks, I'll include this in my next proposed patch. I somehow missed this earlier.

The page of the San Luis provincial government http://www.sanluis.gov.ar/notas.asp?idCanal=0&id=22812 confirms what Alex Krivenyshev has earlier sent to the tz emailing list about that San Luis plans to return to standard time much earlier than the rest of the country. It also confirms that upon request the provinces San Juan and Mendoza refused to follow San Luis in this change. The change is supposed to take place Monday the 21.st at 0:00 hours. As far as I understand it if this goes ahead, we need a new timezone for San Luis (although there are also documented independent changes in the southamerica file of San Luis in 1990 and 1991 which has not been confirmed). I think I will not act on this for World Time Explorer until we get a confirmation Monday that it actually happened, since we have seen too many times before Argentina time changes to be announced and then not carried out. Still a message like this on the official regional government website from the Vice Governor of San Luis, Dr. Jorge Luis Pellegrini looks as close to an official document as it can possibly get. Of course any comments on this are most welcome. Mariano Absatz, living in Argentina, do you have any more information? Regards, - Jesper Nørgaard Welen

Hi, are the Argentina DST changes available in ftp://elsie.nci.nih.gov/pub/ ? thanks! Donatella Sabellico. "One Life. One Love. To love each other" http://www-3.ibm.com/software/sysmgmt/products/support/ to search our Knowledge Base. http://www-3.ibm.com/software/support/probsub.html to log a problem online. http://www-3.ibm.com/software/sysmgmt/products/support/supp_tech_exch.html to use the Support Technical Exchange. http://www-120.ibm.com/support/mysupport for notification of Flashes and New Downloads http://www-3.ibm.com/software/sysmgmt/products/support/Tivoli_Supported_Plat... for Tivoli products Support Matrix Paul Eggert <eggert@CS.UCLA.EDU> 12/29/2007 01:57 AM Please respond to tz@elsie.nci.nih.gov To tz@lecserver.nci.nih.gov cc Mariano Absatz <baby@baby.com.ar> Subject Re: Proposed changes for Argentina, Jan Mayen, worldtimeengine.com, etc. Mariano Absatz <baby@baby.com.ar> writes:
Don't we have to change those also? (see the patch I posted in http://article.gmane.org/gmane.comp.time.tz/2012 )
Oops, yes, sorry, I missed that part of it. However, the change can be made a bit more compact by adjusting the Rule line. Here's a revised patch, just for 'southamerica'. We've seen a lot of patches fly by; to avoid confusion, this 'southamerica' patch is relative to tzdata2007j, =================================================================== RCS file: RCS/southamerica,v retrieving revision 2007.10 retrieving revision 2007.10.0.4 diff -pu -r2007.10 -r2007.10.0.4 --- southamerica 2007/12/03 14:50:41 2007.10 +++ southamerica 2007/12/29 00:53:25 2007.10.0.4 @@ -1,4 +1,4 @@ -# @(#)southamerica 8.13 +# @(#)southamerica 8.14 # <pre> # This data is by no means authoritative; if you think you know better, @@ -105,7 +105,11 @@ Rule Arg 1989 1992 - Oct Sun>=15 0:00 1: # which did not result in the switch of a time zone, as they stayed 9 hours # from the International Date Line. Rule Arg 1999 only - Oct Sun>=1 0:00 1:00 S -Rule Arg 2000 only - Mar Sun>=1 0:00 0 - +# From Paul Eggert (2007-12-28): +# DST was set to expire on March 5, not March 3, but since it was converted +# to standard time on March 3 it's more convenient for us to pretend that +# it ended on March 3. +Rule Arg 2000 only - Mar 3 0:00 0 - # # From Peter Gradelski via Steffen Thorsen (2000-03-01): # We just checked with our Sao Paulo office and they say the government of @@ -140,6 +144,30 @@ Rule Arg 2000 only - Mar Sun>=1 0:00 0 - # This kind of things had always been done this way in Argentina. # We are still -03:00 all year round in all of the country. # +# From Steffen Thorsen (2007-12-21): +# A user (Leonardo Chaim) reported that Argentina will adopt DST.... +# all of the country (all Zone-entries) are affected. News reports like +# http://www.lanacion.com.ar/opinion/nota.asp?nota_id=973037 indicate +# that Argentina will use DST next year as well, from October to +# March, although exact rules are not given. +# +# From Jesper Norgaard Welen (2007-12-26) +# The last hurdle of Argentina DST is over, the proposal was approved in +# the lower chamber too (Deputados) with a vote 192 for and 2 against. +# By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to +# the original scanned proposal, where the dates and the zero hours are +# clear and unambiguous...This is the article about final approval: +# <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> +# http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 +# </a> +# +# From Paul Eggert (2007-12-22): +# For dates after mid-2008, the following rules are my guesses and +# are quite possibly wrong, but are more likely than no DST at all. +Rule Arg 2007 only - Dec 30 0:00 1:00 S +Rule Arg 2008 max - Mar Sun>=15 0:00 0 - +Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S + # From Mariano Absatz (2004-05-21): # Today it was officially published that the Province of Mendoza is changing # its timezone this winter... starting tomorrow night.... @@ -214,7 +242,7 @@ Zone America/Argentina/Buenos_Aires -3:5 -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Santa Fe (SF), Entre Rios (ER), Corrientes (CN), Misiones (MN), Chaco (CC), # Formosa (FM), Salta (SA), Santiago del Estero (SE), Cordoba (CB), @@ -237,7 +265,7 @@ Zone America/Argentina/Cordoba -4:16:48 -4:00 - WART 1991 Oct 20 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Tucuman (TM) Zone America/Argentina/Tucuman -4:20:52 - LMT 1894 Oct 31 @@ -250,7 +278,7 @@ Zone America/Argentina/Tucuman -4:20:52 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 13 - -3:00 - ART + -3:00 Arg AR%sT # # La Rioja (LR) Zone America/Argentina/La_Rioja -4:27:24 - LMT 1894 Oct 31 @@ -263,7 +291,7 @@ Zone America/Argentina/La_Rioja -4:27:24 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # San Juan (SJ) Zone America/Argentina/San_Juan -4:34:04 - LMT 1894 Oct 31 @@ -276,7 +304,7 @@ Zone America/Argentina/San_Juan -4:34:04 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 31 -4:00 - WART 2004 Jul 25 - -3:00 - ART + -3:00 Arg AR%sT # # Jujuy (JY) Zone America/Argentina/Jujuy -4:21:12 - LMT 1894 Oct 31 @@ -290,7 +318,7 @@ Zone America/Argentina/Jujuy -4:21:12 - -3:00 1:00 ARST 1992 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART + -3:00 Arg AR%sT # # Catamarca (CT), Chubut (CH) Zone America/Argentina/Catamarca -4:23:08 - LMT 1894 Oct 31 @@ -303,7 +331,7 @@ Zone America/Argentina/Catamarca -4:23:0 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # Mendoza (MZ) Zone America/Argentina/Mendoza -4:35:16 - LMT 1894 Oct 31 @@ -320,7 +348,7 @@ Zone America/Argentina/Mendoza -4:35:16 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 23 -4:00 - WART 2004 Sep 26 - -3:00 - ART + -3:00 Arg AR%sT # # Santa Cruz (SC) Zone America/Argentina/Rio_Gallegos -4:36:52 - LMT 1894 Oct 31 @@ -331,7 +359,7 @@ Zone America/Argentina/Rio_Gallegos -4:3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # # Tierra del Fuego, Antartida e Islas del Atlantico Sur (TF) Zone America/Argentina/Ushuaia -4:33:12 - LMT 1894 Oct 31 @@ -342,7 +370,7 @@ Zone America/Argentina/Ushuaia -4:33:12 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 30 -4:00 - WART 2004 Jun 20 - -3:00 - ART + -3:00 Arg AR%sT # Aruba # Zone NAME GMTOFF RULES FORMAT [UNTIL] Salvo che sia diversamente indicato sopra: / Unless stated otherwise above: IBM Italia S.p.A. Societa? con azionista unico Societa? soggetta all?attivita? di direzione e coordinamento di International Business Machines Corporation Cap. Int. Versato euro 361.550.000 Reg. Imprese di Milano e Cod. Fisc. 01442240030 - Partita IVA 10914660153 Sede Legale: Circonvallazione Idroscalo - 20090 Segrate (MI)

DONATELLA SABELLICO escribió el 12/31/2007 11:54 AM:
Hi, are the Argentina DST changes available in ftp://elsie.nci.nih.gov/pub/ ? thanks!
Donatella Sabellico.
Not yet, Donatella... if you're uncomfortable patching files, here's a "southamerica" with the latest patch from Paul applied. I'm using it in a bounch of machines and it works OK. Regards. -- Mariano Absatz - "El Baby" baby@baby.com.ar -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- All generalizations are false, including this one. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- * TagZilla 0.066 * http://tagzilla.mozdev.org # @(#)southamerica 8.14 # <pre> # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). # From Paul Eggert (2006-03-22): # A good source for time zone historical data outside the U.S. is # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # # Gwillim Law writes that a good source # for recent time zone data is the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. # # Except where otherwise noted, Shanks & Pottenger is the source for # entries through 1990, and IATA SSIM is the source for entries afterwards. # # Earlier editions of these tables used the North American style (e.g. ARST and # ARDT for Argentine Standard and Daylight Time), but the following quote # suggests that it's better to use European style (e.g. ART and ARST). # I suggest the use of _Summer time_ instead of the more cumbersome # _daylight-saving time_. _Summer time_ seems to be in general use # in Europe and South America. # -- E O Cutler, _New York Times_ (1937-02-14), quoted in # H L Mencken, _The American Language: Supplement I_ (1960), p 466 # # Earlier editions of these tables also used the North American style # for time zones in Brazil, but this was incorrect, as Brazilians say # "summer time". Reinaldo Goulart, a Sao Paulo businessman active in # the railroad sector, writes (1999-07-06): # The subject of time zones is currently a matter of discussion/debate in # Brazil. Let's say that "the Brasilia time" is considered the # "official time" because Brasilia is the capital city. # The other three time zones are called "Brasilia time "minus one" or # "plus one" or "plus two". As far as I know there is no such # name/designation as "Eastern Time" or "Central Time". # So I invented the following (English-language) abbreviations for now. # Corrections are welcome! # std dst # -2:00 FNT FNST Fernando de Noronha # -3:00 BRT BRST Brasilia # -4:00 AMT AMST Amazon # -5:00 ACT ACST Acre ############################################################################### ############################################################################### # Argentina # From Bob Devine (1988-01-28): # Argentina: first Sunday in October to first Sunday in April since 1976. # Double Summer time from 1969 to 1974. Switches at midnight. # From U. S. Naval Observatory (1988-01-199): # ARGENTINA 3 H BEHIND UTC # From Hernan G. Otero (1995-06-26): # I am sending modifications to the Argentine time zone table... # AR was chosen because they are the ISO letters that represent Argentina. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Arg 1930 only - Dec 1 0:00 1:00 S Rule Arg 1931 only - Apr 1 0:00 0 - Rule Arg 1931 only - Oct 15 0:00 1:00 S Rule Arg 1932 1940 - Mar 1 0:00 0 - Rule Arg 1932 1939 - Nov 1 0:00 1:00 S Rule Arg 1940 only - Jul 1 0:00 1:00 S Rule Arg 1941 only - Jun 15 0:00 0 - Rule Arg 1941 only - Oct 15 0:00 1:00 S Rule Arg 1943 only - Aug 1 0:00 0 - Rule Arg 1943 only - Oct 15 0:00 1:00 S Rule Arg 1946 only - Mar 1 0:00 0 - Rule Arg 1946 only - Oct 1 0:00 1:00 S Rule Arg 1963 only - Oct 1 0:00 0 - Rule Arg 1963 only - Dec 15 0:00 1:00 S Rule Arg 1964 1966 - Mar 1 0:00 0 - Rule Arg 1964 1966 - Oct 15 0:00 1:00 S Rule Arg 1967 only - Apr 2 0:00 0 - Rule Arg 1967 1968 - Oct Sun>=1 0:00 1:00 S Rule Arg 1968 1969 - Apr Sun>=1 0:00 0 - Rule Arg 1974 only - Jan 23 0:00 1:00 S Rule Arg 1974 only - May 1 0:00 0 - Rule Arg 1988 only - Dec 1 0:00 1:00 S # # From Hernan G. Otero (1995-06-26): # These corrections were contributed by InterSoft Argentina S.A., # obtaining the data from the: # Talleres de Hidrografia Naval Argentina # (Argentine Naval Hydrography Institute) Rule Arg 1989 1993 - Mar Sun>=1 0:00 0 - Rule Arg 1989 1992 - Oct Sun>=15 0:00 1:00 S # # From Hernan G. Otero (1995-06-26): # From this moment on, the law that mandated the daylight saving # time corrections was derogated and no more modifications # to the time zones (for daylight saving) are now made. # # From Rives McDow (2000-01-10): # On October 3, 1999, 0:00 local, Argentina implemented daylight savings time, # which did not result in the switch of a time zone, as they stayed 9 hours # from the International Date Line. Rule Arg 1999 only - Oct Sun>=1 0:00 1:00 S # From Paul Eggert (2007-12-28): # DST was set to expire on March 5, not March 3, but since it was converted # to standard time on March 3 it's more convenient for us to pretend that # it ended on March 3. Rule Arg 2000 only - Mar 3 0:00 0 - # # From Peter Gradelski via Steffen Thorsen (2000-03-01): # We just checked with our Sao Paulo office and they say the government of # Argentina decided not to become one of the countries that go on or off DST. # So Buenos Aires should be -3 hours from GMT at all times. # # From Fabian L. Arce Jofre (2000-04-04): # The law that claimed DST for Argentina was derogated by President Fernando # de la Rua on March 2, 2000, because it would make people spend more energy # in the winter time, rather than less. The change took effect on March 3. # # From Mariano Absatz (2001-06-06): # one of the major newspapers here in Argentina said that the 1999 # Timezone Law (which never was effectively applied) will (would?) be # in effect.... The article is at # http://ar.clarin.com/diario/2001-06-06/e-01701.htm # ... The Law itself is "Ley No 25155", sanctioned on 1999-08-25, enacted # 1999-09-17, and published 1999-09-21. The official publication is at: # http://www.boletin.jus.gov.ar/BON/Primera/1999/09-Septiembre/21/PDF/BO21-09-... # Regretfully, you have to subscribe (and pay) for the on-line version.... # # (2001-06-12): # the timezone for Argentina will not change next Sunday. # Apparently it will do so on Sunday 24th.... # http://ar.clarin.com/diario/2001-06-12/s-03501.htm # # (2001-06-25): # Last Friday (yes, the last working day before the date of the change), the # Senate annulled the 1999 law that introduced the changes later postponed. # http://www.clarin.com.ar/diario/2001-06-22/s-03601.htm # It remains the vote of the Deputies..., but it will be the same.... # This kind of things had always been done this way in Argentina. # We are still -03:00 all year round in all of the country. # # From Steffen Thorsen (2007-12-21): # A user (Leonardo Chaim) reported that Argentina will adopt DST.... # all of the country (all Zone-entries) are affected. News reports like # http://www.lanacion.com.ar/opinion/nota.asp?nota_id=973037 indicate # that Argentina will use DST next year as well, from October to # March, although exact rules are not given. # # From Jesper Norgaard Welen (2007-12-26) # The last hurdle of Argentina DST is over, the proposal was approved in # the lower chamber too (Deputados) with a vote 192 for and 2 against. # By the way thanks to Mariano Absatz and Daniel Mario Vega for the link to # the original scanned proposal, where the dates and the zero hours are # clear and unambiguous...This is the article about final approval: # <a href="http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996"> # http://www.lanacion.com.ar/politica/nota.asp?nota_id=973996 # </a> # # From Paul Eggert (2007-12-22): # For dates after mid-2008, the following rules are my guesses and # are quite possibly wrong, but are more likely than no DST at all. Rule Arg 2007 only - Dec 30 0:00 1:00 S Rule Arg 2008 max - Mar Sun>=15 0:00 0 - Rule Arg 2008 max - Oct Sun>=1 0:00 1:00 S # From Mariano Absatz (2004-05-21): # Today it was officially published that the Province of Mendoza is changing # its timezone this winter... starting tomorrow night.... # http://www.gobernac.mendoza.gov.ar/boletin/pdf/20040521-27158-normas.pdf # From Paul Eggert (2004-05-24): # It's Law No. 7,210. This change is due to a public power emergency, so for # now we'll assume it's for this year only. # # From Paul Eggert (2006-03-22): # <a href="http://www.spicasc.net/horvera.html"> # Hora de verano para la Republica Argentina (2003-06-08) # </a> says that standard time in Argentina from 1894-10-31 # to 1920-05-01 was -4:16:48.25. Go with this more-precise value # over Shanks & Pottenger. # # From Mariano Absatz (2004-06-05): # These media articles from a major newspaper mostly cover the current state: # http://www.lanacion.com.ar/04/05/27/de_604825.asp # http://www.lanacion.com.ar/04/05/28/de_605203.asp # # The following eight (8) provinces pulled clocks back to UTC-04:00 at # midnight Monday May 31st. (that is, the night between 05/31 and 06/01). # Apparently, all nine provinces would go back to UTC-03:00 at the same # time in October 17th. # # Catamarca, Chubut, La Rioja, San Juan, San Luis, Santa Cruz, # Tierra del Fuego, Tucuman. # # From Mariano Absatz (2004-06-14): # ... this weekend, the Province of Tucuman decided it'd go back to UTC-03:00 # yesterday midnight (that is, at 24:00 Saturday 12th), since the people's # annoyance with the change is much higher than the power savings obtained.... # # From Gwillim Law (2004-06-14): # http://www.lanacion.com.ar/04/06/10/de_609078.asp ... # "The time change in Tierra del Fuego was a conflicted decision from # the start. The government had decreed that the measure would take # effect on June 1, but a normative error forced the new time to begin # three days earlier, from a Saturday to a Sunday.... # Our understanding was that the change was originally scheduled to take place # on June 1 at 00:00 in Chubut, Santa Cruz, Tierra del Fuego (and some other # provinces). Sunday was May 30, only two days earlier. So the article # contains a contradiction. I would give more credence to the Saturday/Sunday # date than the "three days earlier" phrase, and conclude that Tierra del # Fuego set its clocks back at 2004-05-30 00:00. # # From Steffen Thorsen (2004-10-05): # The previous law 7210 which changed the province of Mendoza's time zone # back in May have been modified slightly in a new law 7277, which set the # new end date to 2004-09-26 (original date was 2004-10-17). # http://www.gobernac.mendoza.gov.ar/boletin/pdf/20040924-27244-normas.pdf # # From Mariano Absatz (2004-10-05): # San Juan changed from UTC-03:00 to UTC-04:00 at midnight between # Sunday, May 30th and Monday, May 31st. It changed back to UTC-03:00 # at midnight between Saturday, July 24th and Sunday, July 25th.... # http://www.sanjuan.gov.ar/prensa/archivo/000329.html # http://www.sanjuan.gov.ar/prensa/archivo/000426.html # http://www.sanjuan.gov.ar/prensa/archivo/000441.html # Unless otherwise specified, data are from Shanks & Pottenger through 1992, # from the IATA otherwise. As noted below, Shanks & Pottenger say that # America/Cordoba split into 6 subregions during 1991/1992, but we # haven't verified this yet so for now we'll keep it a single region. # # Zone NAME GMTOFF RULES FORMAT [UNTIL] # # Buenos Aires (BA), Capital Federal (CF), Zone America/Argentina/Buenos_Aires -3:53:48 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May # Cordoba Mean Time -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 Arg AR%sT # # Santa Fe (SF), Entre Rios (ER), Corrientes (CN), Misiones (MN), Chaco (CC), # Formosa (FM), Salta (SA), Santiago del Estero (SE), Cordoba (CB), # San Luis (SL), La Pampa (LP), Neuquen (NQ), Rio Negro (RN) # # Shanks & Pottenger also make the following claims, which we haven't verified: # - Formosa switched to -3:00 on 1991-01-07. # - Misiones switched to -3:00 on 1990-12-29. # - Chaco switched to -3:00 on 1991-01-04. # - San Luis switched to -4:00 on 1990-03-14, then to -3:00 on 1990-10-15, # then to -4:00 on 1991-03-01, then to -3:00 on 1991-06-01. # - Santiago del Estero switched to -4:00 on 1991-04-01, # then to -3:00 on 1991-04-26. # Zone America/Argentina/Cordoba -4:16:48 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1991 Mar 3 -4:00 - WART 1991 Oct 20 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 Arg AR%sT # # Tucuman (TM) Zone America/Argentina/Tucuman -4:20:52 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1991 Mar 3 -4:00 - WART 1991 Oct 20 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 13 -3:00 Arg AR%sT # # La Rioja (LR) Zone America/Argentina/La_Rioja -4:27:24 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1991 Mar 1 -4:00 - WART 1991 May 7 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 -3:00 Arg AR%sT # # San Juan (SJ) Zone America/Argentina/San_Juan -4:34:04 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1991 Mar 1 -4:00 - WART 1991 May 7 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 31 -4:00 - WART 2004 Jul 25 -3:00 Arg AR%sT # # Jujuy (JY) Zone America/Argentina/Jujuy -4:21:12 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1990 Mar 4 -4:00 - WART 1990 Oct 28 -4:00 1:00 WARST 1991 Mar 17 -4:00 - WART 1991 Oct 6 -3:00 1:00 ARST 1992 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 Arg AR%sT # # Catamarca (CT), Chubut (CH) Zone America/Argentina/Catamarca -4:23:08 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1991 Mar 3 -4:00 - WART 1991 Oct 20 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 -3:00 Arg AR%sT # # Mendoza (MZ) Zone America/Argentina/Mendoza -4:35:16 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1990 Mar 4 -4:00 - WART 1990 Oct 15 -4:00 1:00 WARST 1991 Mar 1 -4:00 - WART 1991 Oct 15 -4:00 1:00 WARST 1992 Mar 1 -4:00 - WART 1992 Oct 18 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 23 -4:00 - WART 2004 Sep 26 -3:00 Arg AR%sT # # Santa Cruz (SC) Zone America/Argentina/Rio_Gallegos -4:36:52 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May # Cordoba Mean Time -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 Jun 1 -4:00 - WART 2004 Jun 20 -3:00 Arg AR%sT # # Tierra del Fuego, Antartida e Islas del Atlantico Sur (TF) Zone America/Argentina/Ushuaia -4:33:12 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May # Cordoba Mean Time -4:00 - ART 1930 Dec -4:00 Arg AR%sT 1969 Oct 5 -3:00 Arg AR%sT 1999 Oct 3 -4:00 Arg AR%sT 2000 Mar 3 -3:00 - ART 2004 May 30 -4:00 - WART 2004 Jun 20 -3:00 Arg AR%sT # Aruba # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Aruba -4:40:24 - LMT 1912 Feb 12 # Oranjestad -4:30 - ANT 1965 # Netherlands Antilles Time -4:00 - AST # Bolivia # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/La_Paz -4:32:36 - LMT 1890 -4:32:36 - CMT 1931 Oct 15 # Calamarca MT -4:32:36 1:00 BOST 1932 Mar 21 # Bolivia ST -4:00 - BOT # Bolivia Time # Brazil # From Paul Eggert (1993-11-18): # The mayor of Rio recently attempted to change the time zone rules # just in his city, in order to leave more summer time for the tourist trade. # The rule change lasted only part of the day; # the federal government refused to follow the city's rules, and business # was in a chaos, so the mayor backed down that afternoon. # From IATA SSIM (1996-02): # _Only_ the following states in BR1 observe DST: Rio Grande do Sul (RS), # Santa Catarina (SC), Parana (PR), Sao Paulo (SP), Rio de Janeiro (RJ), # Espirito Santo (ES), Minas Gerais (MG), Bahia (BA), Goias (GO), # Distrito Federal (DF), Tocantins (TO), Sergipe [SE] and Alagoas [AL]. # [The last three states are new to this issue of the IATA SSIM.] # From Gwillim Law (1996-10-07): # Geography, history (Tocantins was part of Goias until 1989), and other # sources of time zone information lead me to believe that AL, SE, and TO were # always in BR1, and so the only change was whether or not they observed DST.... # The earliest issue of the SSIM I have is 2/91. Each issue from then until # 9/95 says that DST is observed only in the ten states I quoted from 9/95, # along with Mato Grosso (MT) and Mato Grosso do Sul (MS), which are in BR2 # (UTC-4).... The other two time zones given for Brazil are BR3, which is # UTC-5, no DST, and applies only in the state of Acre (AC); and BR4, which is # UTC-2, and applies to Fernando de Noronha (formerly FN, but I believe it's # become part of the state of Pernambuco). The boundary between BR1 and BR2 # has never been clearly stated. They've simply been called East and West. # However, some conclusions can be drawn from another IATA manual: the Airline # Coding Directory, which lists close to 400 airports in Brazil. For each # airport it gives a time zone which is coded to the SSIM. From that # information, I'm led to conclude that the states of Amapa (AP), Ceara (CE), # Maranhao (MA), Paraiba (PR), Pernambuco (PE), Piaui (PI), and Rio Grande do # Norte (RN), and the eastern part of Para (PA) are all in BR1 without DST. # From Marcos Tadeu (1998-09-27): # <a href="http://pcdsh01.on.br/verao1.html"> # Brazilian official page # </a> # From Jesper Norgaard (2000-11-03): # [For an official list of which regions in Brazil use which time zones, see:] # http://pcdsh01.on.br/Fusbr.htm # http://pcdsh01.on.br/Fusbrhv.htm # From Celso Doria via David Madeo (2002-10-09): # The reason for the delay this year has to do with elections in Brazil. # # Unlike in the United States, elections in Brazil are 100% computerized and # the results are known almost immediately. Yesterday, it was the first # round of the elections when 115 million Brazilians voted for President, # Governor, Senators, Federal Deputies, and State Deputies. Nobody is # counting (or re-counting) votes anymore and we know there will be a second # round for the Presidency and also for some Governors. The 2nd round will # take place on October 27th. # # The reason why the DST will only begin November 3rd is that the thousands # of electoral machines used cannot have their time changed, and since the # Constitution says the elections must begin at 8:00 AM and end at 5:00 PM, # the Government decided to postpone DST, instead of changing the Constitution # (maybe, for the next elections, it will be possible to change the clock)... # From Rodrigo Severo (2004-10-04): # It's just the biannual change made necessary by the much hyped, supposedly # modern Brazilian eletronic voting machines which, apparently, can't deal # with a time change between the first and the second rounds of the elections. # From Steffen Thorsen (2007-09-20): # Brazil will start DST on 2007-10-14 00:00 and end on 2008-02-17 00:00: # http://www.mme.gov.br/site/news/detail.do;jsessionid=BBA06811AFCAAC28F028521... # From Paul Eggert (2002-10-10): # The official decrees referenced below are mostly taken from # <a href="http://pcdsh01.on.br/DecHV.html"> # Decretos sobre o Horario de Verao no Brasil # </a>. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S # Decree <a href="http://pcdsh01.on.br/HV20466.htm">20,466</a> (1931-10-01) # Decree <a href="http://pcdsh01.on.br/HV21896.htm">21,896</a> (1932-01-10) Rule Brazil 1931 only - Oct 3 11:00 1:00 S Rule Brazil 1932 1933 - Apr 1 0:00 0 - Rule Brazil 1932 only - Oct 3 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/HV23195.htm">23,195</a> (1933-10-10) # revoked DST. # Decree <a href="http://pcdsh01.on.br/HV27496.htm">27,496</a> (1949-11-24) # Decree <a href="http://pcdsh01.on.br/HV27998.htm">27,998</a> (1950-04-13) Rule Brazil 1949 1952 - Dec 1 0:00 1:00 S Rule Brazil 1950 only - Apr 16 1:00 0 - Rule Brazil 1951 1952 - Apr 1 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV32308.htm">32,308</a> (1953-02-24) Rule Brazil 1953 only - Mar 1 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV34724.htm">34,724</a> (1953-11-30) # revoked DST. # Decree <a href="http://pcdsh01.on.br/HV52700.htm">52,700</a> (1963-10-18) # established DST from 1963-10-23 00:00 to 1964-02-29 00:00 # in SP, RJ, GB, MG, ES, due to the prolongation of the drought. # Decree <a href="http://pcdsh01.on.br/HV53071.htm">53,071</a> (1963-12-03) # extended the above decree to all of the national territory on 12-09. Rule Brazil 1963 only - Dec 9 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/HV53604.htm">53,604</a> (1964-02-25) # extended summer time by one day to 1964-03-01 00:00 (start of school). Rule Brazil 1964 only - Mar 1 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV55639.htm">55,639</a> (1965-01-27) Rule Brazil 1965 only - Jan 31 0:00 1:00 S Rule Brazil 1965 only - Mar 31 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV57303.htm">57,303</a> (1965-11-22) Rule Brazil 1965 only - Dec 1 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/HV57843.htm">57,843</a> (1966-02-18) Rule Brazil 1966 1968 - Mar 1 0:00 0 - Rule Brazil 1966 1967 - Nov 1 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/HV63429.htm">63,429</a> (1968-10-15) # revoked DST. # Decree <a href="http://pcdsh01.on.br/HV91698.htm">91,698</a> (1985-09-27) Rule Brazil 1985 only - Nov 2 0:00 1:00 S # Decree 92,310 (1986-01-21) # Decree 92,463 (1986-03-13) Rule Brazil 1986 only - Mar 15 0:00 0 - # Decree 93,316 (1986-10-01) Rule Brazil 1986 only - Oct 25 0:00 1:00 S Rule Brazil 1987 only - Feb 14 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV94922.htm">94,922</a> (1987-09-22) Rule Brazil 1987 only - Oct 25 0:00 1:00 S Rule Brazil 1988 only - Feb 7 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV96676.htm">96,676</a> (1988-09-12) # except for the states of AC, AM, PA, RR, RO, and AP (then a territory) Rule Brazil 1988 only - Oct 16 0:00 1:00 S Rule Brazil 1989 only - Jan 29 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV98077.htm">98,077</a> (1989-08-21) # with the same exceptions Rule Brazil 1989 only - Oct 15 0:00 1:00 S Rule Brazil 1990 only - Feb 11 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV99530.htm">99,530</a> (1990-09-17) # adopted by RS, SC, PR, SP, RJ, ES, MG, GO, MS, DF. # Decree 99,629 (1990-10-19) adds BA, MT. Rule Brazil 1990 only - Oct 21 0:00 1:00 S Rule Brazil 1991 only - Feb 17 0:00 0 - # <a href="http://pcdsh01.on.br/HV1991.htm">Unnumbered decree</a> (1991-09-25) # adopted by RS, SC, PR, SP, RJ, ES, MG, BA, GO, MT, MS, DF. Rule Brazil 1991 only - Oct 20 0:00 1:00 S Rule Brazil 1992 only - Feb 9 0:00 0 - # <a href="http://pcdsh01.on.br/HV1992.htm">Unnumbered decree</a> (1992-10-16) # adopted by same states. Rule Brazil 1992 only - Oct 25 0:00 1:00 S Rule Brazil 1993 only - Jan 31 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV942.htm">942</a> (1993-09-28) # adopted by same states, plus AM. # Decree <a href="http://pcdsh01.on.br/HV1252.htm">1,252</a> (1994-09-22; # web page corrected 2004-01-07) adopted by same states, minus AM. # Decree <a href="http://pcdsh01.on.br/HV1636.htm">1,636</a> (1995-09-14) # adopted by same states, plus MT and TO. # Decree <a href="http://pcdsh01.on.br/HV1674.htm">1,674</a> (1995-10-13) # adds AL, SE. Rule Brazil 1993 1995 - Oct Sun>=11 0:00 1:00 S Rule Brazil 1994 1995 - Feb Sun>=15 0:00 0 - Rule Brazil 1996 only - Feb 11 0:00 0 - # Decree <a href="http://pcdsh01.on.br/HV2000.htm">2,000</a> (1996-09-04) # adopted by same states, minus AL, SE. Rule Brazil 1996 only - Oct 6 0:00 1:00 S Rule Brazil 1997 only - Feb 16 0:00 0 - # From Daniel C. Sobral (1998-02-12): # In 1997, the DS began on October 6. The stated reason was that # because international television networks ignored Brazil's policy on DS, # they bought the wrong times on satellite for coverage of Pope's visit. # This year, the ending date of DS was postponed to March 1 # to help dealing with the shortages of electric power. # # Decree 2,317 (1997-09-04), adopted by same states. Rule Brazil 1997 only - Oct 6 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/figuras/HV2495.JPG">2,495</a> # (1998-02-10) Rule Brazil 1998 only - Mar 1 0:00 0 - # Decree <a href="http://pcdsh01.on.br/figuras/Hv98.jpg">2,780</a> (1998-09-11) # adopted by the same states as before. Rule Brazil 1998 only - Oct 11 0:00 1:00 S Rule Brazil 1999 only - Feb 21 0:00 0 - # Decree <a href="http://pcdsh01.on.br/figuras/HV3150.gif">3,150</a> # (1999-08-23) adopted by same states. # Decree <a href="http://pcdsh01.on.br/DecHV99.gif">3,188</a> (1999-09-30) # adds SE, AL, PB, PE, RN, CE, PI, MA and RR. Rule Brazil 1999 only - Oct 3 0:00 1:00 S Rule Brazil 2000 only - Feb 27 0:00 0 - # Decree <a href="http://pcdsh01.on.br/DEC3592.htm">3,592</a> (2000-09-06) # adopted by the same states as before. # Decree <a href="http://pcdsh01.on.br/Dec3630.jpg">3,630</a> (2000-10-13) # repeals DST in PE and RR, effective 2000-10-15 00:00. # Decree <a href="http://pcdsh01.on.br/Dec3632.jpg">3,632</a> (2000-10-17) # repeals DST in SE, AL, PB, RN, CE, PI and MA, effective 2000-10-22 00:00. # Decree <a href="http://pcdsh01.on.br/figuras/HV3916.gif">3,916</a> # (2001-09-13) reestablishes DST in AL, CE, MA, PB, PE, PI, RN, SE. Rule Brazil 2000 2001 - Oct Sun>=8 0:00 1:00 S Rule Brazil 2001 2006 - Feb Sun>=15 0:00 0 - # Decree 4,399 (2002-10-01) repeals DST in AL, CE, MA, PB, PE, PI, RN, SE. # <a href="http://www.presidencia.gov.br/CCIVIL/decreto/2002/D4399.htm"></a> Rule Brazil 2002 only - Nov 3 0:00 1:00 S # Decree 4,844 (2003-09-24; corrected 2003-09-26) repeals DST in BA, MT, TO. # <a href="http://www.presidencia.gov.br/CCIVIL/decreto/2003/D4844.htm"></a> Rule Brazil 2003 only - Oct 19 0:00 1:00 S # Decree 5,223 (2004-10-01) reestablishes DST in MT. # <a href="http://www.planalto.gov.br/ccivil_03/_Ato2004-2006/2004/Decreto/D5223.htm"></a> Rule Brazil 2004 only - Nov 2 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/DecHV5539.gif">5,539</a> (2005-09-19), # adopted by the same states as before. Rule Brazil 2005 only - Oct 16 0:00 1:00 S # Decree <a href="http://pcdsh01.on.br/DecHV5920.gif">5,920</a> (2006-10-03), # adopted by the same states as before. Rule Brazil 2006 only - Nov 5 0:00 1:00 S Rule Brazil 2007 only - Feb 25 0:00 0 - # (Decree number not yet known) # http://www.brasil.gov.br/noticias/ultimas_noticias/horario_verao070920/ # (2007-09-20) after a heads-up from Steffen Thorsen: Rule Brazil 2007 max - Oct Sun>=8 0:00 1:00 S Rule Brazil 2008 max - Feb Sun>=15 0:00 0 - # The latest ruleset listed above says that the following states observe DST: # DF, ES, GO, MG, MS, MT, PR, RJ, RS, SC, SP. # For dates after mid-2008, the above rules with TO="max" are guesses # and are quite possibly wrong, but are more likely than no DST at all. # Zone NAME GMTOFF RULES FORMAT [UNTIL] # # Fernando de Noronha (administratively part of PE) Zone America/Noronha -2:09:40 - LMT 1914 -2:00 Brazil FN%sT 1990 Sep 17 -2:00 - FNT 1999 Sep 30 -2:00 Brazil FN%sT 2000 Oct 15 -2:00 - FNT 2001 Sep 13 -2:00 Brazil FN%sT 2002 Oct 1 -2:00 - FNT # Other Atlantic islands have no permanent settlement. # These include Trindade and Martin Vaz (administratively part of ES), # Atol das Rocas (RN), and Penedos de Sao Pedro e Sao Paulo (PE). # Fernando de Noronha was a separate territory from 1942-09-02 to 1989-01-01; # it also included the Penedos. # # Amapa (AP), east Para (PA) # East Para includes Belem, Maraba, Serra Norte, and Sao Felix do Xingu. # The division between east and west Para is the river Xingu. # In the north a very small part from the river Javary (now Jari I guess, # the border with Amapa) to the Amazon, then to the Xingu. Zone America/Belem -3:13:56 - LMT 1914 -3:00 Brazil BR%sT 1988 Sep 12 -3:00 - BRT # # Maranhao (MA), Piaui (PI), Ceara (CE), Rio Grande do Norte (RN), # Paraiba (PB) Zone America/Fortaleza -2:34:00 - LMT 1914 -3:00 Brazil BR%sT 1990 Sep 17 -3:00 - BRT 1999 Sep 30 -3:00 Brazil BR%sT 2000 Oct 22 -3:00 - BRT 2001 Sep 13 -3:00 Brazil BR%sT 2002 Oct 1 -3:00 - BRT # # Pernambuco (PE) (except Atlantic islands) Zone America/Recife -2:19:36 - LMT 1914 -3:00 Brazil BR%sT 1990 Sep 17 -3:00 - BRT 1999 Sep 30 -3:00 Brazil BR%sT 2000 Oct 15 -3:00 - BRT 2001 Sep 13 -3:00 Brazil BR%sT 2002 Oct 1 -3:00 - BRT # # Tocantins (TO) Zone America/Araguaina -3:12:48 - LMT 1914 -3:00 Brazil BR%sT 1990 Sep 17 -3:00 - BRT 1995 Sep 14 -3:00 Brazil BR%sT 2003 Sep 24 -3:00 - BRT # # Alagoas (AL), Sergipe (SE) Zone America/Maceio -2:22:52 - LMT 1914 -3:00 Brazil BR%sT 1990 Sep 17 -3:00 - BRT 1995 Oct 13 -3:00 Brazil BR%sT 1996 Sep 4 -3:00 - BRT 1999 Sep 30 -3:00 Brazil BR%sT 2000 Oct 22 -3:00 - BRT 2001 Sep 13 -3:00 Brazil BR%sT 2002 Oct 1 -3:00 - BRT # # Bahia (BA) # There are too many Salvadors elsewhere, so use America/Bahia instead # of America/Salvador. Zone America/Bahia -2:34:04 - LMT 1914 -3:00 Brazil BR%sT 2003 Sep 24 -3:00 - BRT # # Goias (GO), Distrito Federal (DF), Minas Gerais (MG), # Espirito Santo (ES), Rio de Janeiro (RJ), Sao Paulo (SP), Parana (PR), # Santa Catarina (SC), Rio Grande do Sul (RS) Zone America/Sao_Paulo -3:06:28 - LMT 1914 -3:00 Brazil BR%sT 1963 Oct 23 00:00 -3:00 1:00 BRST 1964 -3:00 Brazil BR%sT # # Mato Grosso do Sul (MS) Zone America/Campo_Grande -3:38:28 - LMT 1914 -4:00 Brazil AM%sT # # Mato Grosso (MT) Zone America/Cuiaba -3:44:20 - LMT 1914 -4:00 Brazil AM%sT 2003 Sep 24 -4:00 - AMT 2004 Oct 1 -4:00 Brazil AM%sT # # west Para (PA), Rondonia (RO) # West Para includes Altamira, Oribidos, Prainha, Oriximina, and Santarem. Zone America/Porto_Velho -4:15:36 - LMT 1914 -4:00 Brazil AM%sT 1988 Sep 12 -4:00 - AMT # # Roraima (RR) Zone America/Boa_Vista -4:02:40 - LMT 1914 -4:00 Brazil AM%sT 1988 Sep 12 -4:00 - AMT 1999 Sep 30 -4:00 Brazil AM%sT 2000 Oct 15 -4:00 - AMT # # east Amazonas (AM): Boca do Acre, Jutai, Manaus, Floriano Peixoto # The great circle line from Tabatinga to Porto Acre divides # east from west Amazonas. Zone America/Manaus -4:00:04 - LMT 1914 -4:00 Brazil AM%sT 1988 Sep 12 -4:00 - AMT 1993 Sep 28 -4:00 Brazil AM%sT 1994 Sep 22 -4:00 - AMT # # west Amazonas (AM): Atalaia do Norte, Boca do Maoco, Benjamin Constant, # Eirunepe, Envira, Ipixuna Zone America/Eirunepe -4:39:28 - LMT 1914 -5:00 Brazil AC%sT 1988 Sep 12 -5:00 - ACT 1993 Sep 28 -5:00 Brazil AC%sT 1994 Sep 22 -5:00 - ACT # # Acre (AC) Zone America/Rio_Branco -4:31:12 - LMT 1914 -5:00 Brazil AC%sT 1988 Sep 12 -5:00 - ACT # Chile # From Eduardo Krell (1995-10-19): # The law says to switch to DST at midnight [24:00] on the second SATURDAY # of October.... The law is the same for March and October. # (1998-09-29): # Because of the drought this year, the government decided to go into # DST earlier (saturday 9/26 at 24:00). This is a one-time change only ... # (unless there's another dry season next year, I guess). # From Julio I. Pacheco Troncoso (1999-03-18): # Because of the same drought, the government decided to end DST later, # on April 3, (one-time change). # From Oscar van Vlijmen (2006-10-08): # http://www.horaoficial.cl/cambio.htm # From Jesper Norgaard Welen (2006-10-08): # I think that there are some obvious mistakes in the suggested link # from Oscar van Vlijmen,... for instance entry 66 says that GMT-4 # ended 1990-09-12 while entry 67 only begins GMT-3 at 1990-09-15 # (they should have been 1990-09-15 and 1990-09-16 respectively), but # anyhow it clears up some doubts too. # From Paul Eggert (2006-12-27): # The following data for Chile and America/Santiago are from # <http://www.horaoficial.cl/horaof.htm> (2006-09-20), transcribed by # Jesper Norgaard Welen. The data for Pacific/Easter are from Shanks # & Pottenger, except with DST transitions after 1932 cloned from # America/Santiago. The pre-1980 Pacific/Easter data are dubious, # but we have no other source. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Chile 1927 1932 - Sep 1 0:00 1:00 S Rule Chile 1928 1932 - Apr 1 0:00 0 - Rule Chile 1942 only - Jun 1 4:00u 0 - Rule Chile 1942 only - Aug 1 5:00u 1:00 S Rule Chile 1946 only - Jul 15 4:00u 1:00 S Rule Chile 1946 only - Sep 1 3:00u 0:00 - Rule Chile 1947 only - Apr 1 4:00u 0 - Rule Chile 1968 only - Nov 3 4:00u 1:00 S Rule Chile 1969 only - Mar 30 3:00u 0 - Rule Chile 1969 only - Nov 23 4:00u 1:00 S Rule Chile 1970 only - Mar 29 3:00u 0 - Rule Chile 1971 only - Mar 14 3:00u 0 - Rule Chile 1970 1972 - Oct Sun>=9 4:00u 1:00 S Rule Chile 1972 1986 - Mar Sun>=9 3:00u 0 - Rule Chile 1973 only - Sep 30 4:00u 1:00 S Rule Chile 1974 1987 - Oct Sun>=9 4:00u 1:00 S Rule Chile 1987 only - Apr 12 3:00u 0 - Rule Chile 1988 1989 - Mar Sun>=9 3:00u 0 - Rule Chile 1988 only - Oct Sun>=1 4:00u 1:00 S Rule Chile 1989 only - Oct Sun>=9 4:00u 1:00 S Rule Chile 1990 only - Mar 18 3:00u 0 - Rule Chile 1990 only - Sep 16 4:00u 1:00 S Rule Chile 1991 1996 - Mar Sun>=9 3:00u 0 - Rule Chile 1991 1997 - Oct Sun>=9 4:00u 1:00 S Rule Chile 1997 only - Mar 30 3:00u 0 - Rule Chile 1998 only - Mar Sun>=9 3:00u 0 - Rule Chile 1998 only - Sep 27 4:00u 1:00 S Rule Chile 1999 only - Apr 4 3:00u 0 - Rule Chile 1999 max - Oct Sun>=9 4:00u 1:00 S Rule Chile 2000 max - Mar Sun>=9 3:00u 0 - # IATA SSIM anomalies: (1992-02) says 1992-03-14; # (1996-09) says 1998-03-08. Ignore these. # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Santiago -4:42:46 - LMT 1890 -4:42:46 - SMT 1910 # Santiago Mean Time -5:00 - CLT 1916 Jul 1 # Chile Time -4:42:46 - SMT 1918 Sep 1 # Santiago Mean Time -4:00 - CLT 1919 Jul 1 # Chile Time -4:42:46 - SMT 1927 Sep 1 # Santiago Mean Time -5:00 Chile CL%sT 1947 May 22 # Chile Time -4:00 Chile CL%sT Zone Pacific/Easter -7:17:44 - LMT 1890 -7:17:28 - EMT 1932 Sep # Easter Mean Time -7:00 Chile EAS%sT 1982 Mar 13 21:00 # Easter I Time -6:00 Chile EAS%sT # # Sala y Gomez Island is like Pacific/Easter. # Other Chilean locations, including Juan Fernandez Is, San Ambrosio, # San Felix, and Antarctic bases, are like America/Santiago. # Colombia # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule CO 1992 only - May 3 0:00 1:00 S Rule CO 1993 only - Apr 4 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Bogota -4:56:20 - LMT 1884 Mar 13 -4:56:20 - BMT 1914 Nov 23 # Bogota Mean Time -5:00 CO CO%sT # Colombia Time # Malpelo, Providencia, San Andres # no information; probably like America/Bogota # Curacao # # From Paul Eggert (2006-03-22): # Shanks & Pottenger say that The Bottom and Philipsburg have been at # -4:00 since standard time was introduced on 1912-03-02; and that # Kralendijk and Rincon used Kralendijk Mean Time (-4:33:08) from # 1912-02-02 to 1965-01-01. The former is dubious, since S&P also say # Saba Island has been like Curacao. # This all predates our 1970 cutoff, though. # # By July 2007 Curacao and St Maarten are planned to become # associated states within the Netherlands, much like Aruba; # Bonaire, Saba and St Eustatius would become directly part of the # Netherlands as Kingdom Islands. This won't affect their time zones # though, as far as we know. # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Curacao -4:35:44 - LMT 1912 Feb 12 # Willemstad -4:30 - ANT 1965 # Netherlands Antilles Time -4:00 - AST # Ecuador # # From Paul Eggert (2007-03-04): # Apparently Ecuador had a failed experiment with DST in 1992. # <http://midena.gov.ec/content/view/1261/208/> (2007-02-27) and # <http://www.hoy.com.ec/NoticiaNue.asp?row_id=249856> (2006-11-06) both # talk about "hora Sixto". Leave this alone for now, as we have no data. # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Guayaquil -5:19:20 - LMT 1890 -5:14:00 - QMT 1931 # Quito Mean Time -5:00 - ECT # Ecuador Time Zone Pacific/Galapagos -5:58:24 - LMT 1931 # Puerto Baquerizo Moreno -5:00 - ECT 1986 -6:00 - GALT # Galapagos Time # Falklands # From Paul Eggert (2006-03-22): # Between 1990 and 2000 inclusive, Shanks & Pottenger and the IATA agree except # the IATA gives 1996-09-08. Go with Shanks & Pottenger. # From Falkland Islands Government Office, London (2001-01-22) # via Jesper Norgaard: # ... the clocks revert back to Local Mean Time at 2 am on Sunday 15 # April 2001 and advance one hour to summer time at 2 am on Sunday 2 # September. It is anticipated that the clocks will revert back at 2 # am on Sunday 21 April 2002 and advance to summer time at 2 am on # Sunday 1 September. # From Rives McDow (2001-02-13): # # I have communicated several times with people there, and the last # time I had communications that was helpful was in 1998. Here is # what was said then: # # "The general rule was that Stanley used daylight saving and the Camp # did not. However for various reasons many people in the Camp have # started to use daylight saving (known locally as 'Stanley Time') # There is no rule as to who uses daylight saving - it is a matter of # personal choice and so it is impossible to draw a map showing who # uses it and who does not. Any list would be out of date as soon as # it was produced. This year daylight saving ended on April 18/19th # and started again on September 12/13th. I do not know what the rule # is, but can find out if you like. We do not change at the same time # as UK or Chile." # # I did have in my notes that the rule was "Second Saturday in Sep at # 0:00 until third Saturday in Apr at 0:00". I think that this does # not agree in some cases with Shanks; is this true? # # Also, there is no mention in the list that some areas in the # Falklands do not use DST. I have found in my communications there # that these areas are on the western half of East Falkland and all of # West Falkland. Stanley is the only place that consistently observes # DST. Again, as in other places in the world, the farmers don't like # it. West Falkland is almost entirely sheep farmers. # # I know one lady there that keeps a list of which farm keeps DST and # which doesn't each year. She runs a shop in Stanley, and says that # the list changes each year. She uses it to communicate to her # customers, catching them when they are home for lunch or dinner. # From Paul Eggert (2001-03-05): # For now, we'll just record the time in Stanley, since we have no # better info. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Falk 1937 1938 - Sep lastSun 0:00 1:00 S Rule Falk 1938 1942 - Mar Sun>=19 0:00 0 - Rule Falk 1939 only - Oct 1 0:00 1:00 S Rule Falk 1940 1942 - Sep lastSun 0:00 1:00 S Rule Falk 1943 only - Jan 1 0:00 0 - Rule Falk 1983 only - Sep lastSun 0:00 1:00 S Rule Falk 1984 1985 - Apr lastSun 0:00 0 - Rule Falk 1984 only - Sep 16 0:00 1:00 S Rule Falk 1985 2000 - Sep Sun>=9 0:00 1:00 S Rule Falk 1986 2000 - Apr Sun>=16 0:00 0 - Rule Falk 2001 max - Apr Sun>=15 2:00 0 - Rule Falk 2001 max - Sep Sun>=1 2:00 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/Stanley -3:51:24 - LMT 1890 -3:51:24 - SMT 1912 Mar 12 # Stanley Mean Time -4:00 Falk FK%sT 1983 May # Falkland Is Time -3:00 Falk FK%sT 1985 Sep 15 -4:00 Falk FK%sT # French Guiana # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Cayenne -3:29:20 - LMT 1911 Jul -4:00 - GFT 1967 Oct # French Guiana Time -3:00 - GFT # Guyana # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Guyana -3:52:40 - LMT 1915 Mar # Georgetown -3:45 - GBGT 1966 May 26 # Br Guiana Time -3:45 - GYT 1975 Jul 31 # Guyana Time -3:00 - GYT 1991 # IATA SSIM (1996-06) says -4:00. Assume a 1991 switch. -4:00 - GYT # Paraguay # From Paul Eggert (2006-03-22): # Shanks & Pottenger say that spring transitions are from 01:00 -> 02:00, # and autumn transitions are from 00:00 -> 23:00. Go with pre-1999 # editions of Shanks, and with the IATA, who say transitions occur at 00:00. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Para 1975 1988 - Oct 1 0:00 1:00 S Rule Para 1975 1978 - Mar 1 0:00 0 - Rule Para 1979 1991 - Apr 1 0:00 0 - Rule Para 1989 only - Oct 22 0:00 1:00 S Rule Para 1990 only - Oct 1 0:00 1:00 S Rule Para 1991 only - Oct 6 0:00 1:00 S Rule Para 1992 only - Mar 1 0:00 0 - Rule Para 1992 only - Oct 5 0:00 1:00 S Rule Para 1993 only - Mar 31 0:00 0 - Rule Para 1993 1995 - Oct 1 0:00 1:00 S Rule Para 1994 1995 - Feb lastSun 0:00 0 - Rule Para 1996 only - Mar 1 0:00 0 - # IATA SSIM (2000-02) says 1999-10-10; ignore this for now. # From Steffen Thorsen (2000-10-02): # I have three independent reports that Paraguay changed to DST this Sunday # (10-01). # # Translated by Gwillim Law (2001-02-27) from # <a href="http://www.diarionoticias.com.py/011000/nacional/naciona1.htm"> # Noticias, a daily paper in Asuncion, Paraguay (2000-10-01) # </a>: # Starting at 0:00 today, the clock will be set forward 60 minutes, in # fulfillment of Decree No. 7,273 of the Executive Power.... The time change # system has been operating for several years. Formerly there was a separate # decree each year; the new law has the same effect, but permanently. Every # year, the time will change on the first Sunday of October; likewise, the # clock will be set back on the first Sunday of March. # Rule Para 1996 2001 - Oct Sun>=1 0:00 1:00 S # IATA SSIM (1997-09) says Mar 1; go with Shanks & Pottenger. Rule Para 1997 only - Feb lastSun 0:00 0 - # Shanks & Pottenger say 1999-02-28; IATA SSIM (1999-02) says 1999-02-27, but # (1999-09) reports no date; go with above sources and Gerd Knops (2001-02-27). Rule Para 1998 2001 - Mar Sun>=1 0:00 0 - # From Rives McDow (2002-02-28): # A decree was issued in Paraguay (no. 16350) on 2002-02-26 that changed the # dst method to be from the first Sunday in September to the first Sunday in # April. Rule Para 2002 2004 - Apr Sun>=1 0:00 0 - Rule Para 2002 2003 - Sep Sun>=1 0:00 1:00 S # # From Jesper Norgaard Welen (2005-01-02): # There are several sources that claim that Paraguay made # a timezone rule change in autumn 2004. # From Steffen Thorsen (2005-01-05): # Decree 1,867 (2004-03-05) # From Carlos Raul Perasso via Jesper Norgaard Welen (2006-10-13) # <http://www.presidencia.gov.py/decretos/D1867.pdf> Rule Para 2004 max - Oct Sun>=15 0:00 1:00 S Rule Para 2005 max - Mar Sun>=8 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Asuncion -3:50:40 - LMT 1890 -3:50:40 - AMT 1931 Oct 10 # Asuncion Mean Time -4:00 - PYT 1972 Oct # Paraguay Time -3:00 - PYT 1974 Apr -4:00 Para PY%sT # Peru # # <a href="news:xrGmb.39935$gA1.13896113@news4.srv.hcvlny.cv.net"> # From Evelyn C. Leeper via Mark Brader (2003-10-26):</a> # When we were in Peru in 1985-1986, they apparently switched over # sometime between December 29 and January 3 while we were on the Amazon. # # From Paul Eggert (2006-03-22): # Shanks & Pottenger don't have this transition. Assume 1986 was like 1987. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Peru 1938 only - Jan 1 0:00 1:00 S Rule Peru 1938 only - Apr 1 0:00 0 - Rule Peru 1938 1939 - Sep lastSun 0:00 1:00 S Rule Peru 1939 1940 - Mar Sun>=24 0:00 0 - Rule Peru 1986 1987 - Jan 1 0:00 1:00 S Rule Peru 1986 1987 - Apr 1 0:00 0 - Rule Peru 1990 only - Jan 1 0:00 1:00 S Rule Peru 1990 only - Apr 1 0:00 0 - # IATA is ambiguous for 1993/1995; go with Shanks & Pottenger. Rule Peru 1994 only - Jan 1 0:00 1:00 S Rule Peru 1994 only - Apr 1 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Lima -5:08:12 - LMT 1890 -5:08:36 - LMT 1908 Jul 28 # Lima Mean Time? -5:00 Peru PE%sT # Peru Time # South Georgia # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/South_Georgia -2:26:08 - LMT 1890 # Grytviken -2:00 - GST # South Georgia Time # South Sandwich Is # uninhabited; scientific personnel have wintered # Suriname # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Paramaribo -3:40:40 - LMT 1911 -3:40:52 - PMT 1935 # Paramaribo Mean Time -3:40:36 - PMT 1945 Oct # The capital moved? -3:30 - NEGT 1975 Nov 20 # Dutch Guiana Time -3:30 - SRT 1984 Oct # Suriname Time -3:00 - SRT # Trinidad and Tobago # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Port_of_Spain -4:06:04 - LMT 1912 Mar 2 -4:00 - AST # Uruguay # From Paul Eggert (1993-11-18): # Uruguay wins the prize for the strangest peacetime manipulation of the rules. # From Shanks & Pottenger: # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S # Whitman gives 1923 Oct 1; go with Shanks & Pottenger. Rule Uruguay 1923 only - Oct 2 0:00 0:30 HS Rule Uruguay 1924 1926 - Apr 1 0:00 0 - Rule Uruguay 1924 1925 - Oct 1 0:00 0:30 HS Rule Uruguay 1933 1935 - Oct lastSun 0:00 0:30 HS # Shanks & Pottenger give 1935 Apr 1 0:00 & 1936 Mar 30 0:00; go with Whitman. Rule Uruguay 1934 1936 - Mar Sat>=25 23:30s 0 - Rule Uruguay 1936 only - Nov 1 0:00 0:30 HS Rule Uruguay 1937 1941 - Mar lastSun 0:00 0 - # Whitman gives 1937 Oct 3; go with Shanks & Pottenger. Rule Uruguay 1937 1940 - Oct lastSun 0:00 0:30 HS # Whitman gives 1941 Oct 24 - 1942 Mar 27, 1942 Dec 14 - 1943 Apr 13, # and 1943 Apr 13 ``to present time''; go with Shanks & Pottenger. Rule Uruguay 1941 only - Aug 1 0:00 0:30 HS Rule Uruguay 1942 only - Jan 1 0:00 0 - Rule Uruguay 1942 only - Dec 14 0:00 1:00 S Rule Uruguay 1943 only - Mar 14 0:00 0 - Rule Uruguay 1959 only - May 24 0:00 1:00 S Rule Uruguay 1959 only - Nov 15 0:00 0 - Rule Uruguay 1960 only - Jan 17 0:00 1:00 S Rule Uruguay 1960 only - Mar 6 0:00 0 - Rule Uruguay 1965 1967 - Apr Sun>=1 0:00 1:00 S Rule Uruguay 1965 only - Sep 26 0:00 0 - Rule Uruguay 1966 1967 - Oct 31 0:00 0 - Rule Uruguay 1968 1970 - May 27 0:00 0:30 HS Rule Uruguay 1968 1970 - Dec 2 0:00 0 - Rule Uruguay 1972 only - Apr 24 0:00 1:00 S Rule Uruguay 1972 only - Aug 15 0:00 0 - Rule Uruguay 1974 only - Mar 10 0:00 0:30 HS Rule Uruguay 1974 only - Dec 22 0:00 1:00 S Rule Uruguay 1976 only - Oct 1 0:00 0 - Rule Uruguay 1977 only - Dec 4 0:00 1:00 S Rule Uruguay 1978 only - Apr 1 0:00 0 - Rule Uruguay 1979 only - Oct 1 0:00 1:00 S Rule Uruguay 1980 only - May 1 0:00 0 - Rule Uruguay 1987 only - Dec 14 0:00 1:00 S Rule Uruguay 1988 only - Mar 14 0:00 0 - Rule Uruguay 1988 only - Dec 11 0:00 1:00 S Rule Uruguay 1989 only - Mar 12 0:00 0 - Rule Uruguay 1989 only - Oct 29 0:00 1:00 S # Shanks & Pottenger say no DST was observed in 1990/1 and 1991/2, # and that 1992/3's DST was from 10-25 to 03-01. Go with IATA. Rule Uruguay 1990 1992 - Mar Sun>=1 0:00 0 - Rule Uruguay 1990 1991 - Oct Sun>=21 0:00 1:00 S Rule Uruguay 1992 only - Oct 18 0:00 1:00 S Rule Uruguay 1993 only - Feb 28 0:00 0 - # From Eduardo Cota (2004-09-20): # The uruguayan government has decreed a change in the local time.... # http://www.presidencia.gub.uy/decretos/2004091502.htm Rule Uruguay 2004 only - Sep 19 0:00 1:00 S # From Steffen Thorsen (2005-03-11): # Uruguay's DST was scheduled to end on Sunday, 2005-03-13, but in order to # save energy ... it was postponed two weeks.... # http://www.presidencia.gub.uy/_Web/noticias/2005/03/2005031005.htm Rule Uruguay 2005 only - Mar 27 2:00 0 - # From Eduardo Cota (2005-09-27): # http://www.presidencia.gub.uy/_Web/decretos/2005/09/CM%20119_09%2009%202005_... # This means that from 2005-10-09 at 02:00 local time, until 2006-03-12 at # 02:00 local time, official time in Uruguay will be at GMT -2. Rule Uruguay 2005 only - Oct 9 2:00 1:00 S Rule Uruguay 2006 only - Mar 12 2:00 0 - # From Jesper Norgaard Welen (2006-09-06): # http://www.presidencia.gub.uy/_web/decretos/2006/09/CM%20210_08%2006%202006_... Rule Uruguay 2006 max - Oct Sun>=1 2:00 1:00 S Rule Uruguay 2007 max - Mar Sun>=8 2:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Montevideo -3:44:44 - LMT 1898 Jun 28 -3:44:44 - MMT 1920 May 1 # Montevideo MT -3:30 Uruguay UY%sT 1942 Dec 14 # Uruguay Time -3:00 Uruguay UY%sT # Venezuela # # From John Stainforth (2007-11-28): # ... the change for Venezuela originally expected for 2007-12-31 has # been brought forward to 2007-12-09. The official announcement was # published today in the "Gaceta Oficial de la Republica Bolivariana # de Venezuela, numero 38.819" (official document for all laws or # resolution publication) # http://www.globovision.com/news.php?nid=72208 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Caracas -4:27:44 - LMT 1890 -4:27:40 - CMT 1912 Feb 12 # Caracas Mean Time? -4:30 - VET 1965 # Venezuela Time -4:00 - VET 2007 Dec 9 03:00 -4:30 - VET

Hi http://www.stuff.co.nz//4454030a28.html suggests Tasmania / Hobart is different, does anyone know? Kind regards David Hingston

Dr David Hingston wrote:
Hi http://www.stuff.co.nz//4454030a28.html suggests Tasmania / Hobart is different, does anyone know? Kind regards David Hingston
my wife who lived in Hobart says they do start daylight savings time earlier than NSW, but ends at the same time. -- Lorn 'ljp' Potter Software Engineer, Systems Group, MES, Trolltech

Running zdump on the current Australia files and asking what happens in 2009, I get this: Script started on Thu Mar 27 17:09:58 2008 lecserver$ zdump -v Australia/* | grep 2009 Australia/ACT Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/ACT Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/ACT Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/ACT Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Adelaide Sat Apr 4 16:29:59 2009 UTC = Sun Apr 5 02:59:59 2009 CST isdst=1 Australia/Adelaide Sat Apr 4 16:30:00 2009 UTC = Sun Apr 5 02:00:00 2009 CST isdst=0 Australia/Adelaide Sat Oct 3 16:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 CST isdst=0 Australia/Adelaide Sat Oct 3 16:30:00 2009 UTC = Sun Oct 4 03:00:00 2009 CST isdst=1 Australia/Broken_Hill Sat Apr 4 16:29:59 2009 UTC = Sun Apr 5 02:59:59 2009 CST isdst=1 Australia/Broken_Hill Sat Apr 4 16:30:00 2009 UTC = Sun Apr 5 02:00:00 2009 CST isdst=0 Australia/Broken_Hill Sat Oct 3 16:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 CST isdst=0 Australia/Broken_Hill Sat Oct 3 16:30:00 2009 UTC = Sun Oct 4 03:00:00 2009 CST isdst=1 Australia/Canberra Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Canberra Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Canberra Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Canberra Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Currie Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Currie Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Currie Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Currie Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Eucla Sat Mar 28 17:14:59 2009 UTC = Sun Mar 29 02:59:59 2009 CWST isdst=1 Australia/Eucla Sat Mar 28 17:15:00 2009 UTC = Sun Mar 29 02:00:00 2009 CWST isdst=0 Australia/Hobart Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Hobart Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Hobart Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Hobart Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/LHI Sat Apr 4 14:59:59 2009 UTC = Sun Apr 5 01:59:59 2009 LHST isdst=1 Australia/LHI Sat Apr 4 15:00:00 2009 UTC = Sun Apr 5 01:30:00 2009 LHST isdst=0 Australia/LHI Sat Oct 3 15:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 LHST isdst=0 Australia/LHI Sat Oct 3 15:30:00 2009 UTC = Sun Oct 4 02:30:00 2009 LHST isdst=1 Australia/Lord_Howe Sat Apr 4 14:59:59 2009 UTC = Sun Apr 5 01:59:59 2009 LHST isdst=1 Australia/Lord_Howe Sat Apr 4 15:00:00 2009 UTC = Sun Apr 5 01:30:00 2009 LHST isdst=0 Australia/Lord_Howe Sat Oct 3 15:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 LHST isdst=0 Australia/Lord_Howe Sat Oct 3 15:30:00 2009 UTC = Sun Oct 4 02:30:00 2009 LHST isdst=1 Australia/Melbourne Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Melbourne Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Melbourne Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Melbourne Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/NSW Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/NSW Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/NSW Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/NSW Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Perth Sat Mar 28 17:59:59 2009 UTC = Sun Mar 29 02:59:59 2009 WST isdst=1 Australia/Perth Sat Mar 28 18:00:00 2009 UTC = Sun Mar 29 02:00:00 2009 WST isdst=0 Australia/South Sat Apr 4 16:29:59 2009 UTC = Sun Apr 5 02:59:59 2009 CST isdst=1 Australia/South Sat Apr 4 16:30:00 2009 UTC = Sun Apr 5 02:00:00 2009 CST isdst=0 Australia/South Sat Oct 3 16:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 CST isdst=0 Australia/South Sat Oct 3 16:30:00 2009 UTC = Sun Oct 4 03:00:00 2009 CST isdst=1 Australia/Sydney Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Sydney Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Sydney Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Sydney Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Tasmania Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Tasmania Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Tasmania Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Tasmania Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/Victoria Sat Apr 4 15:59:59 2009 UTC = Sun Apr 5 02:59:59 2009 EST isdst=1 Australia/Victoria Sat Apr 4 16:00:00 2009 UTC = Sun Apr 5 02:00:00 2009 EST isdst=0 Australia/Victoria Sat Oct 3 15:59:59 2009 UTC = Sun Oct 4 01:59:59 2009 EST isdst=0 Australia/Victoria Sat Oct 3 16:00:00 2009 UTC = Sun Oct 4 03:00:00 2009 EST isdst=1 Australia/West Sat Mar 28 17:59:59 2009 UTC = Sun Mar 29 02:59:59 2009 WST isdst=1 Australia/West Sat Mar 28 18:00:00 2009 UTC = Sun Mar 29 02:00:00 2009 WST isdst=0 Australia/Yancowinna Sat Apr 4 16:29:59 2009 UTC = Sun Apr 5 02:59:59 2009 CST isdst=1 Australia/Yancowinna Sat Apr 4 16:30:00 2009 UTC = Sun Apr 5 02:00:00 2009 CST isdst=0 Australia/Yancowinna Sat Oct 3 16:29:59 2009 UTC = Sun Oct 4 01:59:59 2009 CST isdst=0 Australia/Yancowinna Sat Oct 3 16:30:00 2009 UTC = Sun Oct 4 03:00:00 2009 CST isdst=1 lecserver$ exit script done on Thu Mar 27 17:10:31 2008 Tasmania follows the bulk of Australia, with transitions on April 4 and October 3. So we may need a change. --ado

On Fri, Mar 28, 2008 at 8:20 AM, Olson, Arthur David (NIH/NCI) [E] <olsona@dc37a.nci.nih.gov> wrote: [zdump generates]
Tasmania follows the bulk of Australia, with transitions on April 4 and October 3.
This is correct. The news article says "with the exception of Tasmania, recommence three weeks earlier on the first Sunday in October." Tasmania already was starting DST on first Sunday in October - the other states changed

On Fri, Mar 28, 2008 at 09:45:48AM +1100, Eric Ulevik wrote:
The news article says "with the exception of Tasmania, recommence three weeks earlier on the first Sunday in October." Tasmania already was starting DST on first Sunday in October - the other states changed
The following URLs may be relevant. http://www.nsw.gov.au/daylightsaving.asp http://www.vic.gov.au/VictoriaOnline?action=content&id=4388&image_id=371&pag... http://www.dpac.tas.gov.au/divisions/policy/daylightsavings/ http://www.cmd.act.gov.au/holidays

It might be a good idea to include the link to the law passed for the Argentinian DST change "Ley 26.350", published on page 10 of the "Boletín Oficial de la República Argentina" # 31.312 (Dec 28, 2007) http://www.boletinoficial.gov.ar/Bora.Portal/CustomControls/PdfContent.aspx?...

Alex Mayorga Adame escribió el 12/28/2007 01:20 PM:
It might be a good idea to include the link to the law passed for the Argentinian DST change "Ley 26.350", published on page 10 of the "Boletín Oficial de la República Argentina" # 31.312 (Dec 28, 2007) http://www.boletinoficial.gov.ar/Bora.Portal/CustomControls/PdfContent.aspx?...
That'd be nice... unlike what Daniel said (who also posted the URL), I think the URL will keep working in the next days (at least, my stupid test browsing http://www.boletinoficial.gov.ar/Bora.Portal/CustomControls/PdfContent.aspx?... gave me the "Boletín Oficial" # 31.308 dated Dec 21, 2007). Anyway, as I said before, I'm worried that if the actual cities entries are not changes, nothing will actually be effective, or will it? Regards -- Mariano Absatz - "El Baby" baby@baby.com.ar -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- I.R.S.: We've got what it takes to take what you've got! -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- * TagZilla 0.066 * http://tagzilla.mozdev.org
participants (13)
-
Alex Mayorga Adame
-
Arthur David Olson
-
Clint Adams
-
DONATELLA SABELLICO
-
Dr David Hingston
-
Eric Ulevik
-
Ezequiel Colombo
-
Jesper Norgaard Welen
-
Lorn Potter
-
Mariano Absatz
-
Masayoshi Okutsu
-
Olson, Arthur David (NIH/NCI) [E]
-
Paul Eggert