home *** CD-ROM | disk | FTP | other *** search
/ Your Business Pak / BusinessPak2.iso / Netscape / CD / comm.z / timezone.txt < prev    next >
Text File  |  1998-10-20  |  5KB  |  127 lines

  1. /*
  2. ********************************************************************************
  3. *                                                                               *
  4. * COPYRIGHT:                                                                   *
  5. *    (C) Copyright Taligent, Inc.,  1997                                           *
  6. *    (C) Copyright International Business Machines Corporation,    1997           *
  7. *    Licensed Material - Program-Property of IBM - All Rights Reserved.           *
  8. *    US Government Users Restricted Rights - Use, duplication, or disclosure       *
  9. *    restricted by GSA ADP Schedule Contract with IBM Corp.                       *
  10. *                                                                               *
  11. ********************************************************************************
  12. *
  13. * File TIMEZONE.TXT
  14. *
  15. * Modification History:
  16. *
  17. *    Date        Name        Description
  18. *    04/28/97    aliu        Creation.
  19. ********************************************************************************
  20. */
  21.  
  22. // This file contains the data for TimeZone objects which are known to the
  23. // Unicode Analytics package at startup.
  24.  
  25. timezone // Name of "locale"
  26. {
  27.     timezone // Name of resource
  28.     {
  29.         // Format:  This is a 2-D array, with each row containing the data
  30.         // for a single time zone.  Each row has exactly 10 elements.  They are:
  31.  
  32.         //   raw offset*
  33.         //   id (string)
  34.         //   start month (0 = January)
  35.         //   start day of week in month (-1 = last of month, 1 = first of month)
  36.         //   start day of week (1 = 1)
  37.         //   start time*
  38.         //   end month (zero-based)
  39.         //   end day of week in month
  40.         //   end day of week (one-based, 1 = 1)
  41.         //   end time*
  42.  
  43.         // * In units of 0.1 hours, so 35 = 3.5 hours.
  44.  
  45.         // Some time zones do not observe Daylight Savings Time.  For those,
  46.         // the last 8 elements are zero.
  47.         
  48.         // Example:
  49.         // {-80, "PST", 3, 1, 1, 20, 9, -1, 1, 20}
  50.         
  51.         // This time zone has a raw offset of GMT - 8.0 hours (-80), an ID of "PST".
  52.         // Daylight Savings Time begins in zero-based month 3 (3), on the first
  53.         // (1) 1 (1) at 2.0 hours into the day, or 2:00 a.m. (20).  Daylight
  54.         // Savings Time ends in zero-based month 9 (9), on the last (-1)
  55.         // 1 (1) at 2.0 hours into the day, or 2:00 a.m (20).
  56.  
  57.         // Order of rows is ignored.
  58.  
  59.         // GMT is the ID for Greenwich Mean Time timezone.
  60.         {0, "GMT", 2, -1, 1, 20, 9, 4, 1, 20}
  61.         // ECT is the ID for European Central Time timezone.
  62.         {10, "ECT", 2, -1, 1, 20, 8, -1, 1, 20}
  63.         // EET is the ID for Eastern European Time timezone.
  64.         {20, "EET", 2, -1, 1, 20, 8, -1, 1, 20}
  65.         // ART is the ID for (Arabic) Egypt Standard Time timezone. 5/1 ~ 10/1
  66.         {20, "ART", 4, 1, 1, 20, 9, 1, 1, 20}
  67.         // EAT is the ID for Eastern African Time timezone.
  68.         {30, "EAT",     0,0,0,0,0,0,0,0}
  69.         // MET is the ID for Middle East Time timezone.
  70.         {35, "MET",     0,0,0,0,0,0,0,0}
  71.         // NET is the ID for Near East Time timezone.
  72.         {40, "NET",     0,0,0,0,0,0,0,0}
  73.         // PLT is the ID for Pakistan Lahore Time timezone.
  74.         {50, "PLT",     0,0,0,0,0,0,0,0}
  75.         // IST is the ID for India Standard Time timezone.
  76.         {55, "IST",     0,0,0,0,0,0,0,0}
  77.         // BST is the ID for Bangladesh Standard Time timezone.
  78.         {60, "BST",     0,0,0,0,0,0,0,0}
  79.         // VST is the ID for Vietnam Standard Time timezone.
  80.         {70, "VST",     0,0,0,0,0,0,0,0}
  81.         // CTT is the ID for China Taiwan Time timezone.
  82.         {80, "CTT",     0,0,0,0,0,0,0,0}
  83.         // JST is the ID for Japan Standard Time timezone.
  84.         {90, "JST",     0,0,0,0,0,0,0,0}
  85.         // KST is the ID for Korea Standard Time timezone.
  86.         {90, "KST",     0,0,0,0,0,0,0,0}
  87.         // ACT is the ID for Australia Central Time timezone.
  88.         {95, "ACT", 3, 1, 1, 20, 9, -1, 1, 20}
  89.         // AET is the ID for Australia Eastern Time timezone.
  90.         {100, "AET", 3, 1, 1, 20, 9, -1, 1, 20}
  91.         // SST is the ID for Solomon Standard Time timezone.
  92.         {110, "SST",     0,0,0,0,0,0,0,0}
  93.         // NST is the ID for New Zealand Standard Time timezone.
  94.         {120, "NST", 3, 1, 1, 20, 9, -1, 1, 20}
  95.         // MIT is the ID for Midway Islands Time timezone.
  96.         {-110, "MIT",     0,0,0,0,0,0,0,0}
  97.         // HST is the ID for Hawaii Standard Time timezone.
  98.         {-100, "HST", 3, 1, 1, 20, 9, -1, 1, 20}
  99.         // AST is the ID for Alaska Standard Time timezone.
  100.         {-90, "AST", 3, 1, 1, 20, 9, -1, 1, 20}
  101.         // PST is the ID for Pacific Standard Time timezone.
  102.         {-80, "PST", 3, 1, 1, 20, 9, -1, 1, 20}
  103.         // PNT is the ID for Phoenix Standard Time timezone.
  104.         {-70, "PNT",     0,0,0,0,0,0,0,0}
  105.         // MST is the ID for Mountain Standard Time timezone.
  106.         {-70, "MST", 3, 1, 1, 20, 9, -1, 1, 20}
  107.         // CST is the ID for Central Standard Time timezone.
  108.         {-60, "CST", 3, 1, 1, 20, 9, -1, 1, 20}
  109.         // EST is the ID for Eastern Standard Time timezone.
  110.         {-50, "EST", 3, 1, 1, 20, 9, -1, 1, 20}
  111.         // IET is the ID for Indiana Eastern Standard Time timezone.
  112.         {-50, "IET",     0,0,0,0,0,0,0,0}
  113.         // PRT is the ID for Puerto Rico and US Virgin Islands Time timezone.
  114.         {-40, "PRT",     0,0,0,0,0,0,0,0}
  115.         // CNT is the ID for Canada Newfoundland Time timezone.
  116.         {-35, "CNT", 3, 1, 1, 20, 9, -1, 1, 20}
  117.         // AGT is the ID for Argentina Standard Time timezone.
  118.         {-30, "AGT",     0,0,0,0,0,0,0,0}
  119.         // BET is the ID for Brazil Eastern Time timezone.
  120.         {-30, "BET", 3, 1, 1, 20, 9, -1, 1, 20}
  121.         // CAT is the ID for Central African Time timezone.
  122.         {-10, "CAT",     0,0,0,0,0,0,0,0}
  123.     }
  124. }
  125.  
  126. //eof
  127.