[squeak-dev] The Trunk: Kernel-bf.702.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 3 22:11:11 UTC 2012


Bert Freudenberg uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-bf.702.mcz

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

Name: Kernel-bf.702
Author: bf
Time: 4 July 2012, 12:10:20.238 am
UUID: a349f289-2b28-4e98-abfc-5b4d199aa8f1
Ancestors: Kernel-bf.701

Make 7 more Date/Time tests pass. To make the remaining 3 tests pass we need to decide if unspecified timezones should be taken as local time (as per ISO 8601) or as UTC (as per changes by cmm). Currently there is a mix if the two.

=============== Diff against Kernel-bf.701 ===============

Item was changed:
  ----- Method: DateAndTime class>>date:time: (in category 'squeak protocol') -----
  date: aDate time: aTime
  
  	^ self 
  		year: aDate year 
  		day: aDate dayOfYear 
  		hour: aTime hour 
  		minute: aTime minute 
+ 		second: aTime second
+ 		offset: aDate start offset!
- 		second: aTime second!



More information about the Squeak-dev mailing list