1 #
   2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   3 #  
   4 # This code is free software; you can redistribute it and/or modify it
   5 # under the terms of the GNU General Public License version 2 only, as
   6 # published by the Free Software Foundation.  Sun designates this
   7 # particular file as subject to the "Classpath" exception as provided
   8 # by Sun in the LICENSE file that accompanied this code.
   9 #  
  10 # This code is distributed in the hope that it will be useful, but WITHOUT
  11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13 # version 2 for more details (a copy is included in the LICENSE file that
  14 # accompanied this code).
  15 #  
  16 # You should have received a copy of the GNU General Public License version
  17 # 2 along with this work; if not, write to the Free Software Foundation,
  18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19 #  
  20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  21 # CA 95054 USA or visit www.sun.com if you need additional information or
  22 # have any questions.
  23 #
  24 # <pre>
  25 # This file is in the public domain, so clarified as of
  26 # 2009-05-17 by Arthur David Olson.
  27 
  28 # These entries are mostly present for historical reasons, so that
  29 # people in areas not otherwise covered by the tz files could "zic -l"
  30 # to a time zone that was right for their area.  These days, the
  31 # tz files cover almost all the inhabited world, and the only practical
  32 # need now for the entries that are not on UTC are for ships at sea
  33 # that cannot use POSIX TZ settings.
  34 
  35 Zone    Etc/GMT         0       -       GMT
  36 Zone    Etc/UTC         0       -       UTC
  37 Zone    Etc/UCT         0       -       UCT
  38 
  39 # The following link uses older naming conventions,
  40 # but it belongs here, not in the file `backward',
  41 # as functions like gmtime load the "GMT" file to handle leap seconds properly.
  42 # We want this to work even on installations that omit the other older names.
  43 Link    Etc/GMT                         GMT
  44 
  45 Link    Etc/UTC                         Etc/Universal
  46 Link    Etc/UTC                         Etc/Zulu
  47 
  48 Link    Etc/GMT                         Etc/Greenwich
  49 Link    Etc/GMT                         Etc/GMT-0
  50 Link    Etc/GMT                         Etc/GMT+0
  51 Link    Etc/GMT                         Etc/GMT0
  52 
  53 # We use POSIX-style signs in the Zone names and the output abbreviations,
  54 # even though this is the opposite of what many people expect.
  55 # POSIX has positive signs west of Greenwich, but many people expect
  56 # positive signs east of Greenwich.  For example, TZ='Etc/GMT+4' uses
  57 # the abbreviation "GMT+4" and corresponds to 4 hours behind UTC
  58 # (i.e. west of Greenwich) even though many people would expect it to
  59 # mean 4 hours ahead of UTC (i.e. east of Greenwich).
  60 #
  61 # In the draft 5 of POSIX 1003.1-200x, the angle bracket notation
  62 # (which is not yet supported by the tz code) allows for
  63 # TZ='<GMT-4>+4'; if you want time zone abbreviations conforming to
  64 # ISO 8601 you can use TZ='<-0400>+4'.  Thus the commonly-expected
  65 # offset is kept within the angle bracket (and is used for display)
  66 # while the POSIX sign is kept outside the angle bracket (and is used
  67 # for calculation).
  68 #
  69 # Do not use a TZ setting like TZ='GMT+4', which is four hours behind
  70 # GMT but uses the completely misleading abbreviation "GMT".
  71 
  72 # Earlier incarnations of this package were not POSIX-compliant,
  73 # and had lines such as
  74 #               Zone    GMT-12          -12     -       GMT-1200
  75 # We did not want things to change quietly if someone accustomed to the old
  76 # way does a
  77 #               zic -l GMT-12
  78 # so we moved the names into the Etc subdirectory.
  79 
  80 Zone    Etc/GMT-14      14      -       GMT-14  # 14 hours ahead of GMT
  81 Zone    Etc/GMT-13      13      -       GMT-13
  82 Zone    Etc/GMT-12      12      -       GMT-12
  83 Zone    Etc/GMT-11      11      -       GMT-11
  84 Zone    Etc/GMT-10      10      -       GMT-10
  85 Zone    Etc/GMT-9       9       -       GMT-9
  86 Zone    Etc/GMT-8       8       -       GMT-8
  87 Zone    Etc/GMT-7       7       -       GMT-7
  88 Zone    Etc/GMT-6       6       -       GMT-6
  89 Zone    Etc/GMT-5       5       -       GMT-5
  90 Zone    Etc/GMT-4       4       -       GMT-4
  91 Zone    Etc/GMT-3       3       -       GMT-3
  92 Zone    Etc/GMT-2       2       -       GMT-2
  93 Zone    Etc/GMT-1       1       -       GMT-1
  94 Zone    Etc/GMT+1       -1      -       GMT+1
  95 Zone    Etc/GMT+2       -2      -       GMT+2
  96 Zone    Etc/GMT+3       -3      -       GMT+3
  97 Zone    Etc/GMT+4       -4      -       GMT+4
  98 Zone    Etc/GMT+5       -5      -       GMT+5
  99 Zone    Etc/GMT+6       -6      -       GMT+6
 100 Zone    Etc/GMT+7       -7      -       GMT+7
 101 Zone    Etc/GMT+8       -8      -       GMT+8
 102 Zone    Etc/GMT+9       -9      -       GMT+9
 103 Zone    Etc/GMT+10      -10     -       GMT+10
 104 Zone    Etc/GMT+11      -11     -       GMT+11
 105 Zone    Etc/GMT+12      -12     -       GMT+12