4491N/A#
4491N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4491N/A#
4491N/A# This code is free software; you can redistribute it and/or modify it
4491N/A# under the terms of the GNU General Public License version 2 only, as
4491N/A# published by the Free Software Foundation. Oracle designates this
4491N/A# particular file as subject to the "Classpath" exception as provided
4491N/A# by Oracle in the LICENSE file that accompanied this code.
4491N/A#
4491N/A# This code is distributed in the hope that it will be useful, but WITHOUT
4491N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4491N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4491N/A# version 2 for more details (a copy is included in the LICENSE file that
4491N/A# accompanied this code).
4491N/A#
4491N/A# You should have received a copy of the GNU General Public License version
4491N/A# 2 along with this work; if not, write to the Free Software Foundation,
4491N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4491N/A#
4491N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4491N/A# or visit www.oracle.com if you need additional information or have any
4491N/A# questions.
4491N/A#
1627N/A# <pre>
1627N/A# This file is in the public domain, so clarified as of
1627N/A# 2009-05-17 by Arthur David Olson.
0N/A
0N/A# These entries are mostly present for historical reasons, so that
0N/A# people in areas not otherwise covered by the tz files could "zic -l"
0N/A# to a time zone that was right for their area. These days, the
0N/A# tz files cover almost all the inhabited world, and the only practical
0N/A# need now for the entries that are not on UTC are for ships at sea
0N/A# that cannot use POSIX TZ settings.
0N/A
0N/AZone Etc/GMT 0 - GMT
0N/AZone Etc/UTC 0 - UTC
0N/AZone Etc/UCT 0 - UCT
0N/A
0N/A# The following link uses older naming conventions,
0N/A# but it belongs here, not in the file `backward',
0N/A# as functions like gmtime load the "GMT" file to handle leap seconds properly.
0N/A# We want this to work even on installations that omit the other older names.
0N/ALink Etc/GMT GMT
0N/A
0N/ALink Etc/UTC Etc/Universal
0N/ALink Etc/UTC Etc/Zulu
0N/A
0N/ALink Etc/GMT Etc/Greenwich
0N/ALink Etc/GMT Etc/GMT-0
0N/ALink Etc/GMT Etc/GMT+0
0N/ALink Etc/GMT Etc/GMT0
0N/A
0N/A# We use POSIX-style signs in the Zone names and the output abbreviations,
0N/A# even though this is the opposite of what many people expect.
0N/A# POSIX has positive signs west of Greenwich, but many people expect
0N/A# positive signs east of Greenwich. For example, TZ='Etc/GMT+4' uses
0N/A# the abbreviation "GMT+4" and corresponds to 4 hours behind UTC
0N/A# (i.e. west of Greenwich) even though many people would expect it to
0N/A# mean 4 hours ahead of UTC (i.e. east of Greenwich).
0N/A#
3732N/A# In the draft 5 of POSIX 1003.1-200x, the angle bracket notation allows for
0N/A# TZ='<GMT-4>+4'; if you want time zone abbreviations conforming to
0N/A# ISO 8601 you can use TZ='<-0400>+4'. Thus the commonly-expected
0N/A# offset is kept within the angle bracket (and is used for display)
0N/A# while the POSIX sign is kept outside the angle bracket (and is used
0N/A# for calculation).
0N/A#
0N/A# Do not use a TZ setting like TZ='GMT+4', which is four hours behind
0N/A# GMT but uses the completely misleading abbreviation "GMT".
0N/A
0N/A# Earlier incarnations of this package were not POSIX-compliant,
0N/A# and had lines such as
0N/A# Zone GMT-12 -12 - GMT-1200
0N/A# We did not want things to change quietly if someone accustomed to the old
0N/A# way does a
0N/A# zic -l GMT-12
0N/A# so we moved the names into the Etc subdirectory.
0N/A
0N/AZone Etc/GMT-14 14 - GMT-14 # 14 hours ahead of GMT
0N/AZone Etc/GMT-13 13 - GMT-13
0N/AZone Etc/GMT-12 12 - GMT-12
0N/AZone Etc/GMT-11 11 - GMT-11
0N/AZone Etc/GMT-10 10 - GMT-10
0N/AZone Etc/GMT-9 9 - GMT-9
0N/AZone Etc/GMT-8 8 - GMT-8
0N/AZone Etc/GMT-7 7 - GMT-7
0N/AZone Etc/GMT-6 6 - GMT-6
0N/AZone Etc/GMT-5 5 - GMT-5
0N/AZone Etc/GMT-4 4 - GMT-4
0N/AZone Etc/GMT-3 3 - GMT-3
0N/AZone Etc/GMT-2 2 - GMT-2
0N/AZone Etc/GMT-1 1 - GMT-1
0N/AZone Etc/GMT+1 -1 - GMT+1
0N/AZone Etc/GMT+2 -2 - GMT+2
0N/AZone Etc/GMT+3 -3 - GMT+3
0N/AZone Etc/GMT+4 -4 - GMT+4
0N/AZone Etc/GMT+5 -5 - GMT+5
0N/AZone Etc/GMT+6 -6 - GMT+6
0N/AZone Etc/GMT+7 -7 - GMT+7
0N/AZone Etc/GMT+8 -8 - GMT+8
0N/AZone Etc/GMT+9 -9 - GMT+9
0N/AZone Etc/GMT+10 -10 - GMT+10
0N/AZone Etc/GMT+11 -11 - GMT+11
0N/AZone Etc/GMT+12 -12 - GMT+12