The Trunk: Kernel-tbn.288.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-tbn.288.mcz

commits-2
Torsten Bergmann uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-tbn.288.mcz

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

Name: Kernel-tbn.288
Author: tbn
Time: 6 November 2009, 11:34:20 am
UUID: aad7e55c-fd95-f744-8a85-e7b176c70810
Ancestors: Kernel-ul.287

categorize and format ChronologyConstants>>initialize as a first commit test

=============== Diff against Kernel-ul.287 ===============

Item was changed:
+ ----- Method: ChronologyConstants class>>initialize (in category 'class initialization') -----
- ----- Method: ChronologyConstants class>>initialize (in category 'as yet unclassified') -----
  initialize
+ "ChronologyConstants initialize"
+
+ SqueakEpoch := 2415386. "Julian day number of 1 Jan 1901"
- "ChronologyConstants initialize" SqueakEpoch := 2415386. "Julian day number of 1 Jan 1901"
  SecondsInDay := 86400.
  SecondsInHour := 3600.
  SecondsInMinute := 60.
  NanosInSecond := 10 raisedTo: 9.
  NanosInMillisecond := 10 raisedTo: 6.
  DayNames := #(Sunday Monday Tuesday Wednesday Thursday Friday Saturday).
 
  MonthNames := #(January February March April May June July
    August September October November December).
  DaysInMonth := #(31 28 31 30 31 30 31 31 30 31 30 31)
  !