Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 147693 Details for
Bug 227884
RHEL-4.4 DST changes required for libgcj
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
libgcj patch for DST timezone changes
libgcj.patch (text/plain), 20.42 KB, created by
Alan Matsuoka
on 2007-02-08 19:32:20 UTC
(
hide
)
Description:
libgcj patch for DST timezone changes
Filename:
MIME Type:
Creator:
Alan Matsuoka
Created:
2007-02-08 19:32:20 UTC
Size:
20.42 KB
patch
obsolete
>--- libjava/classpath/java/util/TimeZone.java 2006-10-05 00:31:11.000000000 +0200 >+++ libjava/classpath/java/util/TimeZone.java 2007-02-06 11:47:11.000000000 +0100 >@@ -153,8 +153,8 @@ public abstract class TimeZone implement > timezones0.put("Pacific/Pago_Pago", tz); > tz = new SimpleTimeZone > (-10000 * 3600, "America/Adak", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("America/Adak", tz); > tz = new SimpleTimeZone(-10000 * 3600, "HST"); > timezones0.put("HST", tz); >@@ -167,8 +167,8 @@ public abstract class TimeZone implement > timezones0.put("Pacific/Marquesas", tz); > tz = new SimpleTimeZone > (-9000 * 3600, "AST", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("AST", tz); > timezones0.put("America/Anchorage", tz); > timezones0.put("America/Juneau", tz); >@@ -177,55 +177,56 @@ public abstract class TimeZone implement > tz = new SimpleTimeZone(-9000 * 3600, "Pacific/Gambier"); > timezones0.put("Pacific/Gambier", tz); > tz = new SimpleTimeZone >- (-8000 * 3600, "PST", >+ (-8000 * 3600, "America/Tijuana", > Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, > Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ timezones0.put("America/Tijuana", tz); >+ tz = new SimpleTimeZone >+ (-8000 * 3600, "PST", >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("PST", tz); > timezones0.put("PST8PDT", tz); > timezones0.put("America/Dawson", tz); > timezones0.put("America/Los_Angeles", tz); >- timezones0.put("America/Tijuana", tz); > timezones0.put("America/Vancouver", tz); > timezones0.put("America/Whitehorse", tz); > timezones0.put("US/Pacific-New", tz); > tz = new SimpleTimeZone(-8000 * 3600, "Pacific/Pitcairn"); > timezones0.put("Pacific/Pitcairn", tz); > tz = new SimpleTimeZone >- (-7000 * 3600, "MST", >+ (-7000 * 3600, "America/Chihuahua", > Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, > Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ timezones0.put("America/Chihuahua", tz); >+ timezones0.put("America/Mazatlan", tz); >+ tz = new SimpleTimeZone(-7000 * 3600, "MST7"); >+ timezones0.put("MST7", tz); >+ timezones0.put("PNT", tz); >+ timezones0.put("America/Dawson_Creek", tz); >+ timezones0.put("America/Hermosillo", tz); >+ timezones0.put("America/Phoenix", tz); >+ tz = new SimpleTimeZone >+ (-7000 * 3600, "MST", >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("MST", tz); > timezones0.put("MST7MDT", tz); > timezones0.put("America/Boise", tz); > timezones0.put("America/Cambridge_Bay", tz); >- timezones0.put("America/Chihuahua", tz); > timezones0.put("America/Denver", tz); > timezones0.put("America/Edmonton", tz); > timezones0.put("America/Inuvik", tz); >- timezones0.put("America/Mazatlan", tz); > timezones0.put("America/Shiprock", tz); > timezones0.put("America/Yellowknife", tz); >- tz = new SimpleTimeZone(-7000 * 3600, "MST7"); >- timezones0.put("MST7", tz); >- timezones0.put("PNT", tz); >- timezones0.put("America/Dawson_Creek", tz); >- timezones0.put("America/Hermosillo", tz); >- timezones0.put("America/Phoenix", tz); > tz = new SimpleTimeZone >- (-6000 * 3600, "CST", >+ (-6000 * 3600, "America/Cancun", > Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, > Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >- timezones0.put("CST", tz); >- timezones0.put("CST6CDT", tz); > timezones0.put("America/Cancun", tz); >- timezones0.put("America/Chicago", tz); >- timezones0.put("America/Menominee", tz); > timezones0.put("America/Merida", tz); > timezones0.put("America/Mexico_City", tz); > timezones0.put("America/Monterrey", tz); >- timezones0.put("America/North_Dakota/Center", tz); >- timezones0.put("America/Rainy_River", tz); >- timezones0.put("America/Rankin_Inlet", tz); > tz = new SimpleTimeZone(-6000 * 3600, "America/Belize"); > timezones0.put("America/Belize", tz); > timezones0.put("America/Costa_Rica", tz); >@@ -237,53 +238,62 @@ public abstract class TimeZone implement > timezones0.put("America/Tegucigalpa", tz); > timezones0.put("Pacific/Galapagos", tz); > tz = new SimpleTimeZone >- (-6000 * 3600, "America/Winnipeg", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); >+ (-6000 * 3600, "CST", >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); >+ timezones0.put("CST", tz); >+ timezones0.put("CST6CDT", tz); >+ timezones0.put("America/Chicago", tz); >+ timezones0.put("America/Indiana/Knox", tz); >+ timezones0.put("America/Indiana/Petersburg", tz); >+ timezones0.put("America/Indiana/Vincennes", tz); >+ timezones0.put("America/Menominee", tz); >+ timezones0.put("America/North_Dakota/Center", tz); >+ timezones0.put("America/North_Dakota/New_Salem", tz); >+ timezones0.put("America/Rainy_River", tz); >+ timezones0.put("America/Rankin_Inlet", tz); > timezones0.put("America/Winnipeg", tz); > tz = new SimpleTimeZone > (-6000 * 3600, "Pacific/Easter", > Calendar.OCTOBER, 2, Calendar.SATURDAY, 23000 * 3600, > Calendar.MARCH, 2, Calendar.SATURDAY, 22000 * 3600); > timezones0.put("Pacific/Easter", tz); >- tz = new SimpleTimeZone >- (-5000 * 3600, "America/Grand_Turk", >- Calendar.APRIL, 1, Calendar.SUNDAY, 0 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); >- timezones0.put("America/Grand_Turk", tz); >- tz = new SimpleTimeZone >- (-5000 * 3600, "America/Havana", >- Calendar.APRIL, 1, Calendar.SUNDAY, 1000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 1000 * 3600); >- timezones0.put("America/Havana", tz); > tz = new SimpleTimeZone(-5000 * 3600, "EST5"); > timezones0.put("EST5", tz); > timezones0.put("IET", tz); >+ timezones0.put("America/Atikokan", tz); > timezones0.put("America/Bogota", tz); > timezones0.put("America/Cayman", tz); > timezones0.put("America/Eirunepe", tz); > timezones0.put("America/Guayaquil", tz); >- timezones0.put("America/Indiana/Indianapolis", tz); >- timezones0.put("America/Indiana/Knox", tz); >- timezones0.put("America/Indiana/Marengo", tz); >- timezones0.put("America/Indiana/Vevay", tz); >- timezones0.put("America/Indianapolis", tz); > timezones0.put("America/Jamaica", tz); > timezones0.put("America/Lima", tz); > timezones0.put("America/Panama", tz); >- timezones0.put("America/Port-au-Prince", tz); > timezones0.put("America/Rio_Branco", tz); > tz = new SimpleTimeZone >+ (-5000 * 3600, "America/Havana", >+ Calendar.APRIL, 1, Calendar.SUNDAY, 1000 * 3600, >+ Calendar.OCTOBER, -1, Calendar.SUNDAY, 1000 * 3600); >+ timezones0.put("America/Havana", tz); >+ tz = new SimpleTimeZone >+ (-5000 * 3600, "America/Grand_Turk", >+ Calendar.APRIL, 1, Calendar.SUNDAY, 0 * 3600, >+ Calendar.OCTOBER, -1, Calendar.SUNDAY, 0 * 3600); >+ timezones0.put("America/Grand_Turk", tz); >+ timezones0.put("America/Port-au-Prince", tz); >+ tz = new SimpleTimeZone > (-5000 * 3600, "EST", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("EST", tz); > timezones0.put("EST5EDT", tz); > timezones0.put("America/Detroit", tz); >+ timezones0.put("America/Indiana/Indianapolis", tz); >+ timezones0.put("America/Indiana/Marengo", tz); >+ timezones0.put("America/Indiana/Vevay", tz); > timezones0.put("America/Iqaluit", tz); > timezones0.put("America/Kentucky/Louisville", tz); > timezones0.put("America/Kentucky/Monticello", tz); >- timezones0.put("America/Louisville", tz); > timezones0.put("America/Montreal", tz); > timezones0.put("America/Nassau", tz); > timezones0.put("America/New_York", tz); >@@ -291,12 +301,18 @@ public abstract class TimeZone implement > timezones0.put("America/Pangnirtung", tz); > timezones0.put("America/Thunder_Bay", tz); > timezones0.put("America/Toronto", tz); >+ tz = new SimpleTimeZone >+ (-4000 * 3600, "America/Asuncion", >+ Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, >+ Calendar.MARCH, 2, Calendar.SUNDAY, 0 * 3600); >+ timezones0.put("America/Asuncion", tz); > tz = new SimpleTimeZone(-4000 * 3600, "PRT"); > timezones0.put("PRT", tz); > timezones0.put("America/Anguilla", tz); > timezones0.put("America/Antigua", tz); > timezones0.put("America/Aruba", tz); > timezones0.put("America/Barbados", tz); >+ timezones0.put("America/Blanc-Sablon", tz); > timezones0.put("America/Boa_Vista", tz); > timezones0.put("America/Caracas", tz); > timezones0.put("America/Curacao", tz); >@@ -318,38 +334,30 @@ public abstract class TimeZone implement > timezones0.put("America/St_Vincent", tz); > timezones0.put("America/Tortola", tz); > tz = new SimpleTimeZone >- (-4000 * 3600, "America/Asuncion", >- Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, >- Calendar.MARCH, 2, Calendar.SUNDAY, 0 * 3600); >- timezones0.put("America/Asuncion", tz); >- tz = new SimpleTimeZone > (-4000 * 3600, "America/Campo_Grande", >- Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, >- Calendar.FEBRUARY, 3, Calendar.SUNDAY, 0 * 3600); >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 0 * 3600, >+ Calendar.FEBRUARY, -1, Calendar.SUNDAY, 0 * 3600); > timezones0.put("America/Campo_Grande", tz); > timezones0.put("America/Cuiaba", tz); > tz = new SimpleTimeZone > (-4000 * 3600, "America/Goose_Bay", >- Calendar.APRIL, 1, Calendar.SUNDAY, 60000, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 60000); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 60000, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 60000); > timezones0.put("America/Goose_Bay", tz); > tz = new SimpleTimeZone >- (-4000 * 3600, "America/Santiago", >- Calendar.OCTOBER, 9, -Calendar.SUNDAY, 1000 * 3600, >- Calendar.MARCH, 9, -Calendar.SUNDAY, 0 * 3600); >- timezones0.put("America/Santiago", tz); >- tz = new SimpleTimeZone > (-4000 * 3600, "America/Glace_Bay", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("America/Glace_Bay", tz); > timezones0.put("America/Halifax", tz); >+ timezones0.put("America/Moncton", tz); > timezones0.put("America/Thule", tz); > timezones0.put("Atlantic/Bermuda", tz); > tz = new SimpleTimeZone >- (-4000 * 3600, "Antarctica/Palmer", >- Calendar.OCTOBER, 9, -Calendar.SUNDAY, 0 * 3600, >+ (-4000 * 3600, "America/Santiago", >+ Calendar.OCTOBER, 9, -Calendar.SUNDAY, 1000 * 3600, > Calendar.MARCH, 9, -Calendar.SUNDAY, 0 * 3600); >+ timezones0.put("America/Santiago", tz); > timezones0.put("Antarctica/Palmer", tz); > tz = new SimpleTimeZone > (-4000 * 3600, "Atlantic/Stanley", >@@ -358,8 +366,8 @@ public abstract class TimeZone implement > timezones0.put("Atlantic/Stanley", tz); > tz = new SimpleTimeZone > (-3500 * 3600, "CNT", >- Calendar.APRIL, 1, Calendar.SUNDAY, 60000, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 60000); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 60000, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 60000); > timezones0.put("CNT", tz); > timezones0.put("America/St_Johns", tz); > tz = new SimpleTimeZone >@@ -369,20 +377,24 @@ public abstract class TimeZone implement > timezones0.put("America/Godthab", tz); > tz = new SimpleTimeZone > (-3000 * 3600, "America/Miquelon", >- Calendar.APRIL, 1, Calendar.SUNDAY, 2000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("America/Miquelon", tz); > tz = new SimpleTimeZone >+ (-3000 * 3600, "America/Montevideo", >+ Calendar.OCTOBER, 1, Calendar.SUNDAY, 2000 * 3600, >+ Calendar.MARCH, 2, Calendar.SUNDAY, 2000 * 3600); >+ timezones0.put("America/Montevideo", tz); >+ tz = new SimpleTimeZone > (-3000 * 3600, "America/Sao_Paulo", >- Calendar.OCTOBER, 3, Calendar.SUNDAY, 0 * 3600, >- Calendar.FEBRUARY, 3, Calendar.SUNDAY, 0 * 3600); >+ Calendar.NOVEMBER, 1, Calendar.SUNDAY, 0 * 3600, >+ Calendar.FEBRUARY, -1, Calendar.SUNDAY, 0 * 3600); > timezones0.put("America/Sao_Paulo", tz); > tz = new SimpleTimeZone(-3000 * 3600, "AGT"); > timezones0.put("AGT", tz); > timezones0.put("America/Araguaina", tz); > timezones0.put("America/Argentina/Buenos_Aires", tz); > timezones0.put("America/Argentina/Catamarca", tz); >- timezones0.put("America/Argentina/ComodRivadavia", tz); > timezones0.put("America/Argentina/Cordoba", tz); > timezones0.put("America/Argentina/Jujuy", tz); > timezones0.put("America/Argentina/La_Rioja", tz); >@@ -396,7 +408,6 @@ public abstract class TimeZone implement > timezones0.put("America/Cayenne", tz); > timezones0.put("America/Fortaleza", tz); > timezones0.put("America/Maceio", tz); >- timezones0.put("America/Montevideo", tz); > timezones0.put("America/Paramaribo", tz); > timezones0.put("America/Recife", tz); > timezones0.put("Antarctica/Rothera", tz); >@@ -429,12 +440,13 @@ public abstract class TimeZone implement > timezones0.put("Africa/Nouakchott", tz); > timezones0.put("Africa/Ouagadougou", tz); > timezones0.put("Africa/Sao_Tome", tz); >- timezones0.put("Africa/Timbuktu", tz); > timezones0.put("America/Danmarkshavn", tz); > timezones0.put("Atlantic/Reykjavik", tz); > timezones0.put("Atlantic/St_Helena", tz); >- timezones0.put("Europe/Belfast", tz); > timezones0.put("Europe/Dublin", tz); >+ timezones0.put("Europe/Guernsey", tz); >+ timezones0.put("Europe/Isle_of_Man", tz); >+ timezones0.put("Europe/Jersey", tz); > timezones0.put("Europe/London", tz); > tz = new SimpleTimeZone > (0 * 3600, "WET", >@@ -442,7 +454,7 @@ public abstract class TimeZone implement > Calendar.OCTOBER, -1, Calendar.SUNDAY, 2000 * 3600); > timezones0.put("WET", tz); > timezones0.put("Atlantic/Canary", tz); >- timezones0.put("Atlantic/Faeroe", tz); >+ timezones0.put("Atlantic/Faroe", tz); > timezones0.put("Atlantic/Madeira", tz); > timezones0.put("Europe/Lisbon", tz); > tz = new SimpleTimeZone(1000 * 3600, "Africa/Algiers"); >@@ -458,7 +470,6 @@ public abstract class TimeZone implement > timezones0.put("Africa/Ndjamena", tz); > timezones0.put("Africa/Niamey", tz); > timezones0.put("Africa/Porto-Novo", tz); >- timezones0.put("Africa/Tunis", tz); > tz = new SimpleTimeZone > (1000 * 3600, "Africa/Windhoek", > Calendar.SEPTEMBER, 1, Calendar.SUNDAY, 2000 * 3600, >@@ -472,6 +483,7 @@ public abstract class TimeZone implement > timezones0.put("ECT", tz); > timezones0.put("MET", tz); > timezones0.put("Africa/Ceuta", tz); >+ timezones0.put("Africa/Tunis", tz); > timezones0.put("Arctic/Longyearbyen", tz); > timezones0.put("Atlantic/Jan_Mayen", tz); > timezones0.put("Europe/Amsterdam", tz); >@@ -490,6 +502,7 @@ public abstract class TimeZone implement > timezones0.put("Europe/Monaco", tz); > timezones0.put("Europe/Oslo", tz); > timezones0.put("Europe/Paris", tz); >+ timezones0.put("Europe/Podgorica", tz); > timezones0.put("Europe/Prague", tz); > timezones0.put("Europe/Rome", tz); > timezones0.put("Europe/San_Marino", tz); >@@ -527,7 +540,7 @@ public abstract class TimeZone implement > tz = new SimpleTimeZone > (2000 * 3600, "Asia/Amman", > Calendar.MARCH, -1, Calendar.THURSDAY, 1000 * 3600, >- Calendar.SEPTEMBER, -1, Calendar.THURSDAY, 1000 * 3600); >+ Calendar.OCTOBER, -1, Calendar.FRIDAY, 1000 * 3600); > timezones0.put("Asia/Amman", tz); > tz = new SimpleTimeZone > (2000 * 3600, "Asia/Beirut", >@@ -541,7 +554,7 @@ public abstract class TimeZone implement > timezones0.put("Asia/Damascus", tz); > tz = new SimpleTimeZone > (2000 * 3600, "Asia/Gaza", >- Calendar.APRIL, 3, Calendar.FRIDAY, 0 * 3600, >+ Calendar.APRIL, 1, 0, 0 * 3600, > Calendar.OCTOBER, 3, Calendar.FRIDAY, 0 * 3600); > timezones0.put("Asia/Gaza", tz); > tz = new SimpleTimeZone >@@ -578,15 +591,15 @@ public abstract class TimeZone implement > Calendar.OCTOBER, 1, 0, 4000 * 3600); > timezones0.put("Asia/Baghdad", tz); > tz = new SimpleTimeZone >- (3000 * 3600, "Asia/Tbilisi", >+ (3000 * 3600, "Europe/Moscow", > Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, > Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); >- timezones0.put("Asia/Tbilisi", tz); > timezones0.put("Europe/Moscow", tz); >+ timezones0.put("Europe/Volgograd", tz); > tz = new SimpleTimeZone(3000 * 3600, "EAT"); > timezones0.put("EAT", tz); > timezones0.put("Africa/Addis_Ababa", tz); >- timezones0.put("Africa/Asmera", tz); >+ timezones0.put("Africa/Asmara", tz); > timezones0.put("Africa/Dar_es_Salaam", tz); > timezones0.put("Africa/Djibouti", tz); > timezones0.put("Africa/Kampala", tz); >@@ -606,8 +619,8 @@ public abstract class TimeZone implement > timezones0.put("Asia/Tehran", tz); > tz = new SimpleTimeZone > (4000 * 3600, "Asia/Baku", >- Calendar.MARCH, -1, Calendar.SUNDAY, 1000 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 1000 * 3600); >+ Calendar.MARCH, -1, Calendar.SUNDAY, 4000 * 3600, >+ Calendar.OCTOBER, -1, Calendar.SUNDAY, 5000 * 3600); > timezones0.put("Asia/Baku", tz); > tz = new SimpleTimeZone > (4000 * 3600, "Asia/Yerevan", >@@ -617,46 +630,43 @@ public abstract class TimeZone implement > timezones0.put("Europe/Samara", tz); > tz = new SimpleTimeZone(4000 * 3600, "NET"); > timezones0.put("NET", tz); >- timezones0.put("Asia/Aqtau", tz); > timezones0.put("Asia/Dubai", tz); > timezones0.put("Asia/Muscat", tz); >- timezones0.put("Asia/Oral", tz); >+ timezones0.put("Asia/Tbilisi", tz); > timezones0.put("Indian/Mahe", tz); > timezones0.put("Indian/Mauritius", tz); > timezones0.put("Indian/Reunion", tz); > tz = new SimpleTimeZone(4500 * 3600, "Asia/Kabul"); > timezones0.put("Asia/Kabul", tz); > tz = new SimpleTimeZone >- (5000 * 3600, "Asia/Bishkek", >- Calendar.MARCH, -1, Calendar.SUNDAY, 2500 * 3600, >- Calendar.OCTOBER, -1, Calendar.SUNDAY, 2500 * 3600); >- timezones0.put("Asia/Bishkek", tz); >- tz = new SimpleTimeZone > (5000 * 3600, "Asia/Yekaterinburg", > Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, > Calendar.OCTOBER, -1, Calendar.SUNDAY, 3000 * 3600); > timezones0.put("Asia/Yekaterinburg", tz); > tz = new SimpleTimeZone(5000 * 3600, "PLT"); > timezones0.put("PLT", tz); >+ timezones0.put("Asia/Aqtau", tz); > timezones0.put("Asia/Aqtobe", tz); > timezones0.put("Asia/Ashgabat", tz); > timezones0.put("Asia/Dushanbe", tz); > timezones0.put("Asia/Karachi", tz); >+ timezones0.put("Asia/Oral", tz); > timezones0.put("Asia/Samarkand", tz); > timezones0.put("Asia/Tashkent", tz); > timezones0.put("Indian/Kerguelen", tz); > timezones0.put("Indian/Maldives", tz); >- tz = new SimpleTimeZone(5500 * 3600, "IST"); >+ tz = new SimpleTimeZone(5500 * 3600, "BST"); >+ timezones0.put("BST", tz); > timezones0.put("IST", tz); > timezones0.put("Asia/Calcutta", tz); >+ timezones0.put("Asia/Colombo", tz); > tz = new SimpleTimeZone(5750 * 3600, "Asia/Katmandu"); > timezones0.put("Asia/Katmandu", tz); >- tz = new SimpleTimeZone(6000 * 3600, "BST"); >- timezones0.put("BST", tz); >+ tz = new SimpleTimeZone(6000 * 3600, "Antarctica/Mawson"); > timezones0.put("Antarctica/Mawson", tz); > timezones0.put("Antarctica/Vostok", tz); > timezones0.put("Asia/Almaty", tz); >- timezones0.put("Asia/Colombo", tz); >+ timezones0.put("Asia/Bishkek", tz); > timezones0.put("Asia/Dhaka", tz); > timezones0.put("Asia/Qyzylorda", tz); > timezones0.put("Asia/Thimphu", tz); >@@ -718,6 +728,8 @@ public abstract class TimeZone implement > Calendar.MARCH, -1, Calendar.SATURDAY, 2000 * 3600, > Calendar.SEPTEMBER, -1, Calendar.SATURDAY, 2000 * 3600); > timezones0.put("Asia/Ulaanbaatar", tz); >+ tz = new SimpleTimeZone(8750 * 3600, "Australia/Eucla"); >+ timezones0.put("Australia/Eucla", tz); > tz = new SimpleTimeZone > (9000 * 3600, "Asia/Choibalsan", > Calendar.MARCH, -1, Calendar.SATURDAY, 2000 * 3600, >@@ -753,7 +765,6 @@ public abstract class TimeZone implement > timezones0.put("Pacific/Port_Moresby", tz); > timezones0.put("Pacific/Saipan", tz); > timezones0.put("Pacific/Truk", tz); >- timezones0.put("Pacific/Yap", tz); > tz = new SimpleTimeZone > (10000 * 3600, "Asia/Sakhalin", > Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600, >@@ -761,9 +772,10 @@ public abstract class TimeZone implement > timezones0.put("Asia/Sakhalin", tz); > timezones0.put("Asia/Vladivostok", tz); > tz = new SimpleTimeZone >- (10000 * 3600, "Australia/Hobart", >+ (10000 * 3600, "Australia/Currie", > Calendar.OCTOBER, 1, Calendar.SUNDAY, 3000 * 3600, > Calendar.MARCH, -1, Calendar.SUNDAY, 3000 * 3600); >+ timezones0.put("Australia/Currie", tz); > timezones0.put("Australia/Hobart", tz); > tz = new SimpleTimeZone > (10000 * 3600, "AET", >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 227884
: 147693