The Trunk: Kernel-cmm.426.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Kernel-cmm.426.mcz

commits-2
Chris Muller uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-cmm.426.mcz

==================== Summary ====================

Name: Kernel-cmm.426
Author: cmm
Time: 15 March 2010, 6:56:53.665 pm
UUID: 1718cc0a-19ab-45ed-87b6-1f03715acd98
Ancestors: Kernel-nice.425

Added remaining significant timezones for West / US.

=============== Diff against Kernel-nice.425 ===============

Item was changed:
  ----- Method: TimeZone class>>timeZones (in category 'accessing') -----
  timeZones
+ ^{
-
- ^ {
  self offset:  0 hours name: 'Universal Time' abbreviation: 'UTC'.
  self offset:  0 hours name: 'Greenwich Mean Time' abbreviation: 'GMT'.
  self offset:  1 hours name: 'British Summer Time' abbreviation: 'BST'.
  self offset:  2 hours name: 'South African Standard Time' abbreviation: 'SAST'.
  self offset: -8 hours name: 'Pacific Standard Time' abbreviation: 'PST'.
  self offset: -7 hours name: 'Pacific Daylight Time' abbreviation: 'PDT'.
+ self offset: -7 hours name: 'Mountain Standard Time' abbreviation: 'MST'.
+ self offset: -6 hours name: 'Mountain Daylight Time' abbreviation: 'MDT'.
+ self offset: -6 hours name: 'Central Standard Time' abbreviation: 'CST'.
+ self offset: -5 hours name: 'Central Daylight Time' abbreviation: 'CDT'.
+ self offset: -5 hours name: 'Eastern Standard Time' abbreviation: 'EST'.
+ self offset: -4 hours name: 'Eastern Daylight Time' abbreviation: 'EDT'.
+ }!
- }
-
- !