Date.st
author Claus Gittinger <cg@exept.de>
Mon, 26 Sep 2005 17:21:18 +0200
changeset 8943 eff0b1c83c65
parent 8878 7c7825a1f269
child 8944 7ca394905f4f
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
    13
"{ Package: 'stx:libbasic' }"
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
    14
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    15
Magnitude subclass:#Date
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    16
	instanceVariableNames:'dateEncoding'
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
    17
	classVariableNames:'DayNames MonthNames DayAbbrevs MonthAbbrevs DefaultFormats
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
    18
		ShortFormats LongFormats EnvironmentChange'
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    19
	poolDictionaries:''
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
    20
	category:'Magnitude-Time'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
    23
!Date class methodsFor:'documentation'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    24
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    25
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    26
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
    28
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    29
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    30
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    31
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    33
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    34
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    35
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    36
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    37
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    38
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    39
documentation
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    40
"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    41
    Instances of Date represent dates as year, month and day encoded in the 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    42
    (private & hidden) instance dateEncoding. The value found there is 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    43
    year*100*100 + month*100 + day (which makes magnitude-like comparison of 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    44
    dates easy, but is not guaranteed for future versions).
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    45
    Do not depend on the internal representation.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    46
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    47
    The old representation used days since 1st Jan. 1901 internally - 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    48
    with the new implementation, it is possible to reasonably represent almost 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    49
    any Date.  (which insurance companies will like, since they can now 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    50
    represent even very old peoples birthday :-)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    51
    Notice: no correction for pre-Julian dates is done.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    52
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    53
    The printed representation of dates is controlled by resource definitions -
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    54
    thus national variants are already supported (see file 'resources/Date.rs').
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    55
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    56
    Compatibility notice:
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    57
        due to some historic reasons, there are some methods found twice
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    58
        with different names in this class. The old ST/X methods will vanish in
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    59
        one of the next releases, and kept for a while to support existing
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    60
        applications (the info on how these methods should be named came 
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    61
        somewhat late from the testers ..).
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    62
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    63
        Please do not use methods marked as obsolete in their comment.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    64
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    65
    Most useful methods:
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    66
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    67
        Date today
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    68
        (Date today) addDays:
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    69
        (Date today) subtractDays:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    70
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    71
    [author:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    72
        Claus Gittinger
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    73
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    74
    [see also:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    75
        Time AbstractTime
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    76
        Filename
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    77
        OperatingSystem
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    78
"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    79
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    80
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    81
!Date class methodsFor:'initialization'!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    82
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    83
initDefaultNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    84
    "read the language specific names."
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    85
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    86
    |enDayNames enDayAbbrevs enMonthNames enMonthAbbrevs
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    87
     enDefaultFormat enLongFormat enShortFormat|
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    88
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    89
    DayNames := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    90
    DayAbbrevs := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    91
    MonthNames := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    92
    MonthAbbrevs := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    93
    DefaultFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    94
    LongFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    95
    ShortFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    96
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    97
    enDayNames := #('monday'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
    98
                    'tuesday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
    99
                    'wednesday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   100
                    'thursday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   101
                    'friday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   102
                    'saturday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   103
                    'sunday').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   104
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   105
    enDayAbbrevs := #('mon' 
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   106
                      'tue' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   107
                      'wed'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   108
                      'thu' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   109
                      'fri' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   110
                      'sat' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   111
                      'sun').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   112
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   113
    enMonthNames := #('january'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   114
                      'february'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   115
                      'march'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   116
                      'april'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   117
                      'may'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   118
                      'june'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   119
                      'july'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   120
                      'august'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   121
                      'september'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   122
                      'october'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   123
                      'november'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   124
                      'december').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   125
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   126
    enMonthAbbrevs := #('jan'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   127
                        'feb'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   128
                        'mar'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   129
                        'apr'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   130
                        'may'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   131
                        'jun'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   132
                        'jul'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   133
                        'aug'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   134
                        'sep'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   135
                        'oct'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   136
                        'nov'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   137
                        'dec').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   138
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   139
    DayNames at:#'en' put:enDayNames.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   140
    DayAbbrevs at:#'en' put:enDayAbbrevs.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   141
    MonthNames at:#'en' put:enMonthNames.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   142
    MonthAbbrevs at:#'en' put:enMonthAbbrevs.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   143
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   144
    DefaultFormats at:#'en' put:(enDefaultFormat := '%d-%m-%y').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   145
    ShortFormats at:#'en' put:(enShortFormat := '%d-%m-%y').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   146
    LongFormats at:#'en' put:(enLongFormat := '%(dayName), %d-%m-%y').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   147
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   148
    EnvironmentChange := (Smalltalk language asSymbol ~~ #'en').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   149
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   150
    "
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   151
     Date initNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   152
    "
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   153
!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   154
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   155
initNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   156
    "read the language specific names."
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   157
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   158
    |resources lang 
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   159
     enDayNames enDayAbbrevs enMonthNames enMonthAbbrevs monthAbbrevKeys
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   160
     enDefaultFormat enLongFormat enShortFormat may|
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   161
8943
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   162
    DayNames isNil ifTrue:[
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   163
        self initDefaultNames.
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   164
    ].
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   165
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   166
    lang := Smalltalk language asSymbol.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   167
    lang ~~ #'en' ifTrue:[
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   168
        ResourcePack notNil ifTrue:[
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   169
            enDayNames := DayNames at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   170
            enDayAbbrevs := DayAbbrevs at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   171
            enMonthNames := MonthNames at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   172
            enMonthAbbrevs := MonthAbbrevs at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   173
            monthAbbrevKeys := enMonthAbbrevs copy.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   174
            monthAbbrevKeys at:5 put:'MAY_ABBREV'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   175
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   176
            enDefaultFormat := DefaultFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   177
            enShortFormat := ShortFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   178
            enLongFormat := LongFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   179
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   180
            resources := ResourcePack forPackage:(self package).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   181
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   182
            DefaultFormats at:lang put:(resources at:'DATEFORMAT' default:enDefaultFormat).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   183
            ShortFormats at:lang put:(resources at:'SHORTDATEFORMAT' default:enShortFormat).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   184
            LongFormats at:lang put:(resources at:'LONGDATEFORMAT' default:enLongFormat).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   185
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   186
            DayNames at:lang put:(resources array:enDayNames).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   187
            DayAbbrevs at:lang put:(resources array:enDayAbbrevs).
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   188
            MonthNames at:lang put:(resources array:enMonthNames).
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   189
            MonthAbbrevs at:lang put:(resources array:monthAbbrevKeys).
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   190
            "/ may needs special care (same key for long and short name)
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   191
            may := resources at:'MAY_ABBREV' ifAbsent:nil.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   192
            may isNil ifTrue:[
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   193
                may := resources at:'may'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   194
            ].
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   195
            (MonthAbbrevs at:lang) at:5 put:may.
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   196
        ].
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   197
    ].
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   198
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   199
    EnvironmentChange := false
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   200
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   201
    "
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   202
     Date initNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   203
    "
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   204
!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   205
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   206
initialize
8943
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   207
    DayNames isNil ifTrue:[
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   208
        self initDefaultNames.
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   209
    ].
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   210
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   211
    Smalltalk addDependent:self.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   212
    Language ~= 'en' ifTrue:[
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   213
        EnvironmentChange := true
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   214
    ]
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   215
! !
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   216
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
   217
!Date class methodsFor:'instance creation'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   218
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   219
fromDays:dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   220
    "return a new Date, given the day-number starting with 0 at 1.Jan 1901;
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   221
     (i.e. 'Date fromDays:0' returns 1st Jan. 1901).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   222
     Date asDays is the reverse operation.
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   223
     Added for GNU/ST-80 compatibility"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   224
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   225
    |yr rest d|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   226
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   227
    "approx. year"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   228
    yr := (dayCount // 366) + 1901.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   229
    rest := dayCount - (self yearAsDays:yr) + 1. "+1 for ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   230
    d := self daysInYear:yr.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   231
    (rest > d) ifTrue:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   232
        "adjust"
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   233
        yr := yr + 1.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   234
        rest := rest - d.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   235
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   236
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   237
    ^ self newDay:rest year:yr
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   238
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   239
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   240
     Date fromDays:0     -> 1 jan 1901
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   241
     Date fromDays:365   -> 1 jan 1902
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   242
     Date fromDays:730   -> 1 jan 1903
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   243
     Date fromDays:1095  -> 1 jan 1903
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   244
     Date fromDays:1460  ->31 dec 1904 since 1904 was a leap year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   245
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   246
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   247
    "Modified: 1.7.1996 / 14:24:25 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   248
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   249
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   250
newDay:day month:month year:year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   251
    "return a new Date, given the day, month and year.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   252
     For your convenience, month may be either an integer 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   253
     or the months name as a string. 
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   254
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   255
     WARNING: semantics changed: 0..99 is no longer treated as 1900..1999,
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   256
              but as 0..99 now.
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   257
              Any such adjustments must be made by the caller of this method now
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   258
              (see those, for example readFrom:onError:)"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   259
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   260
    |monthIndex ok|
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   261
8446
e19765545de6 Dont generate a warning for years between -1 and -99
Stefan Vogel <sv@exept.de>
parents: 8247
diff changeset
   262
    (year < 100 and:[year > 0]) ifTrue:[
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   263
        'Date [warning]: year in [0..99] no longer converted to [1900..1999]' infoPrintCR.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   264
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   265
    month isInteger ifTrue:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   266
        monthIndex := month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   267
    ] ifFalse:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   268
        monthIndex := self indexOfMonth:month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   269
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   270
    (monthIndex == 2 and:[day == 29]) ifTrue:[
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   271
        ok := self leapYear:year
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   272
    ] ifFalse:[
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   273
        ok := day <= (self daysInMonth:month forYear:year)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   274
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   275
    ((day > 0) and:[ok]) ifTrue:[
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   276
        ^ self basicNew dateEncoding:(((year * 100) + monthIndex) * 100) + day
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   277
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   278
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   279
    "this error is triggered if you try to create a date from an
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   280
     invalid year/month/day combination;
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   281
     Such as 29-feb-year, where year is no leap year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   282
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   283
    self error:'invalid date'
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   284
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   285
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   286
     Date newDay:8  month:'may' year:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   287
     Date newDay:8  month:5     year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   288
     Date newDay:29 month:'feb' year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   289
     Date newDay:29 month:'feb' year:1993
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   290
     Date newDay:28 month:'feb' year:5   
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   291
     Date newDay:28 month:'feb' year:95  
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   292
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   293
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   294
    "Modified: 19.4.1996 / 15:28:15 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   295
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   296
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   297
newDay:dayInYear year:year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   298
    "return a new Date, given the year and the day-in-year (starting at 1).
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   299
     See also: Date today / Time now / Timestamp now.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   300
     ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   301
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   302
    |monthAndDay|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   303
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   304
    (dayInYear between:1 and:365) ifFalse:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   305
        ((dayInYear == 366) and:[self leapYear:year]) ifFalse:[
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   306
            "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   307
             this error is triggered, when you try to create a
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   308
             day from an invalid day-in-year; 
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   309
             for example, 366 in a non-leap year.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   310
             I dont know, if ST-80 wraps to the next year(s) in this case.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   311
            "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   312
            ^ self error:'invalid date'
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   313
        ]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   314
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   315
    monthAndDay := self monthAndDayFromDayInYear:dayInYear forYear:year.
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   316
    ^ self newDay:(monthAndDay at:2) month:(monthAndDay at:1) year:year
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   317
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   318
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   319
     Date newDay:150 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   320
     Date newDay:1 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   321
     Date newDay:1 year:1901
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   322
     Date newDay:1 year:1902
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   323
     Date newDay:365 year:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   324
     Date newDay:366 year:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   325
     Date newDay:365 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   326
     Date newDay:366 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   327
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   328
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   329
    "Modified: 1.7.1996 / 14:22:24 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   330
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   331
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   332
readFrom:aStringOrStream onError:exceptionBlock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   333
    "return a new Date, reading a printed representation from aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   334
     Notice, that this is not the storeString format and 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   335
     is different from the format expected by readFrom:.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   336
     BUG:
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   337
       This method assumes american format (i.e. month-day-year) instead
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   338
       of the german/french and other day-month-year.
4998
010c3ab0cdc6 Comments
Stefan Vogel <sv@exept.de>
parents: 4997
diff changeset
   339
       There ought to be a internationalized variant of this."
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   340
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   341
    ^ [
1701
80d13adb2e77 better errorHandling in readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1501
diff changeset
   342
        |str month day year|
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   343
        str := aStringOrStream readStream.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   344
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   345
        [str peek isLetterOrDigit] whileFalse:[str next].
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   346
        (str peek isDigit) ifTrue:[
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   347
            day := Integer readFrom:str
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   348
        ].
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   349
        [str peek isLetterOrDigit] whileFalse:[str next].
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   350
        (str peek isLetter) ifTrue:[
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   351
            month := str nextAlphaNumericWord.
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   352
            day isNil ifTrue:[
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   353
                [str peek isLetterOrDigit] whileFalse:[str next].
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   354
                day := Integer readFrom:str.
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   355
            ]
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   356
        ] ifFalse:[
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   357
            month := self nameOfMonth:day.
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   358
            day := Integer readFrom:str
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   359
        ].
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   360
        [str peek isLetterOrDigit] whileFalse:[str next].
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   361
        year := Integer readFrom:str.
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   362
        (year between:0 and:99) ifTrue:[
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   363
            year := UserPreferences current twoDigitDateHandler value:year.
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   364
        ].
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   365
        self newDay:day month:month year:year
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   366
    ] on:Error do:exceptionBlock.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   367
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   368
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   369
     Date readFromString:'31 December 1992'  
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   370
     Date readFrom:'19:11:1999'  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   371
     Date readFromString:'December, 5 1992'  
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   372
     Date readFromString:'12/31/1992'        
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   373
     Date readFromString:'3-jan-95'           
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   374
     Date readFromString:'3-jan-01'           
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   375
     Date readFromString:'12/31/01'        
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   376
     Date readFromString:'15.4.1992'         -> german; leads to an error
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   377
     Date readFromString:'10.4.1992'         -> german; leads to a wrong date
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   378
     Date readFromString:'10.4.1992' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   379
     Date readFromString:'32.4.1992' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   380
     Date readFromString:'fooBar' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   381
     Date readFromString:'10.4' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   382
     Date readFromString:'10041999' onError:['wrong date']  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   383
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   384
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   385
    "Created: 16.11.1995 / 22:50:17 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   386
    "Modified: 8.10.1996 / 19:25:39 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   387
!
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   388
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   389
readFrom:aStringOrStream printFormat:aSqueakFormatArrayOrFormatString
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   390
    "return a new Date, reading a printed representation from aStream.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   391
     aSqueakFormatArrayOrFormatString may either be a squeak formatArray
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   392
         1   day position (1, 2 or 3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   393
         2   month position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   394
         3   year position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   395
     or a formatString (see printing instance protocol).
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   396
    "
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   397
    ^ self 
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   398
        readFrom:aStringOrStream
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   399
        printFormat:aSqueakFormatArrayOrFormatString 
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   400
        onError:[self error:'expected: ' , self name]
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   401
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   402
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   403
     Date readFrom:'19:11:1999' printFormat:#( 1 2 3 )
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   404
     Date readFrom:'19-nov-1999' printFormat:#( 1 2 3 )
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   405
     Date readFrom:'19:11:1999' printFormat:#( 2 1 3 )  -> exception: wrong month
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   406
     Date readFrom:'5:12:1999' printFormat:#( 2 1 3 )  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   407
     Date readFrom:'may-12-1999' printFormat:#( 2 1 3 )  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   408
     Date readFrom:'1999 may 12' printFormat:#( 3 2 1 )  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   409
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   410
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   411
    "Created: 16.11.1995 / 22:50:17 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   412
    "Modified: 8.10.1996 / 19:25:39 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   413
!
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   414
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   415
readFrom:aStringOrStream printFormat:aSqueakFormatArrayOrFormatString onError:exceptionBlock
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   416
    "return a new Date, reading a printed representation from aStream.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   417
     aSqueakFormatArrayOrFormatString may either be a squeak formatArray
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   418
         1   day position (1, 2 or 3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   419
         2   month position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   420
         3   year position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   421
     or a formatString (see printing instance protocol).
7651
e128b10201fb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
   422
     For now, only %d, %m and %y are supported in the formatString.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   423
     TODO: make this a general feature of all DateAndTime classes.
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   424
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   425
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   426
    |str day month year|
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   427
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   428
    str := aStringOrStream readStream.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   429
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   430
    aSqueakFormatArrayOrFormatString isArray 
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   431
        ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   432
            [
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   433
                |arg|
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   434
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   435
                arg := Array new:3.
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   436
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   437
                1 to:3 do:[:i||v|
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   438
                    [str peek isLetterOrDigit] whileFalse:[str next].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   439
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   440
                    v := (str peek isDigit) ifTrue:[Integer readFrom:str]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   441
                                           ifFalse:[str nextAlphaNumericWord].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   442
                    arg at:i put:v
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   443
                ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   444
                year := (arg at:(aSqueakFormatArrayOrFormatString at:3)).
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   445
                day := arg at:(aSqueakFormatArrayOrFormatString at:1).
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   446
                month := arg at:(aSqueakFormatArrayOrFormatString at:2).
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   447
            ] on:Error do:[:ex| ^ exceptionBlock value].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   448
        ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   449
            [
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   450
                |formatStream fc c sel|
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   451
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   452
                formatStream := aSqueakFormatArrayOrFormatString readStream.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   453
                [formatStream atEnd] whileFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   454
                    fc := formatStream next.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   455
                    fc == $% ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   456
                        sel := ''.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   457
                        [(fc := formatStream peek) notNil and:[ fc isLetter]] whileTrue:[ sel := sel , (formatStream next) ].
7650
11ef2ccbfb2e better date conversion.
Claus Gittinger <cg@exept.de>
parents: 7649
diff changeset
   458
                        (sel asLowercase = 'd') ifTrue:[
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   459
                            day := Integer readFrom:str
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   460
                        ] ifFalse:[
7650
11ef2ccbfb2e better date conversion.
Claus Gittinger <cg@exept.de>
parents: 7649
diff changeset
   461
                            (sel asLowercase = 'm') ifTrue:[
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   462
                                month := Integer readFrom:str
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   463
                            ] ifFalse:[
7650
11ef2ccbfb2e better date conversion.
Claus Gittinger <cg@exept.de>
parents: 7649
diff changeset
   464
                                (sel asLowercase = 'y') ifTrue:[
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   465
                                    year := Integer readFrom:str
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   466
                                ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   467
                            ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   468
                        ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   469
                    ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   470
                        fc == Character space ifTrue:[
8480
e7635256139d reading: skip over '-'-characters
Claus Gittinger <cg@exept.de>
parents: 8446
diff changeset
   471
                            [(c := str peek) isSeparator or:[ '-.:,;/' includes:c ] ] whileTrue:[ str next ].    
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   472
                        ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   473
                            str skipSeparators.
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   474
                            str next == fc ifFalse:[^ exceptionBlock value].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   475
                            str skipSeparators.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   476
                        ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   477
                    ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   478
                ].
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   479
            ] on:Error do:[:ex| ^ exceptionBlock value].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   480
        ].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   481
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   482
    day isNil ifTrue:[ day := 1 ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   483
    month isNil ifTrue:[ month := 1 ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   484
    year isNil ifTrue:[ year := Date today year ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   485
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   486
    (year between:0 and:99) ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   487
        year := UserPreferences current twoDigitDateHandler value:year.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   488
    ].
8878
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   489
    [
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   490
        ^ self newDay:day month:month year:year.
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   491
    ] on:Error do:[:ex| ^ exceptionBlock value].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   492
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   493
    "
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   494
     Date readFrom:'31 December 1992' printFormat:#(1 2 3) onError:'fail' 
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   495
     Date readFrom:'19:11:1999' printFormat:#(1 2 3) onError:'fail'  
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   496
     Date readFrom:'December, 5 1992' printFormat:#(1 2 3) onError:'fail' 
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   497
     Date readFrom:'3-jan-95' printFormat:#(1 2 3) onError:'fail'          
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   498
     Date readFrom:'12/31/1992' printFormat:#(1 2 3) onError:'fail'       
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   499
     Date readFrom:'15.4.1992' printFormat:#(1 2 3) onError:'wrong date'  -> german
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   500
     Date readFrom:'10.4.1992' printFormat:#(1 2 3) onError:'fail'        -> german
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   501
     Date readFrom:'10.4.1992' printFormat:#(1 2 3) onError:['wrong date']
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   502
     Date readFrom:'32.4.1992' printFormat:#(1 2 3) onError:['wrong date']
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   503
     Date readFrom:'fooBar' printFormat:#(1 2 3) onError:['wrong date']
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   504
     Date readFrom:'10.4' printFormat:#(1 2 3) onError:['wrong date']
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   505
     Date readFrom:'10041999' printFormat:#(1 2 3) onError:['wrong date']  
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   506
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   507
     Date readFrom:'31/12/92' printFormat:#(1 2 3) onError:'fail'       
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   508
     Date readFrom:'31/12/01' printFormat:#(1 2 3) onError:'fail'       
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   509
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   510
     Date readFrom:'31/12/01' printFormat:'%d %m %y' onError:'fail'       
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   511
     Date readFrom:'12/01' printFormat:'%m %y' onError:'fail'       
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   512
     Date readFrom:'01' printFormat:'%y' onError:'fail'       
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   513
     Date readFrom:'30.01' printFormat:'%d %m' onError:'fail'       
4421
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   514
    "
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   515
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   516
    "Created: 16.11.1995 / 22:50:17 / cg"
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   517
    "Modified: 8.10.1996 / 19:25:39 / cg"
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   518
!
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   519
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   520
readMMDDYYYYFrom:aStringOrStream onError:exceptionBlock
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   521
    "return a new Date, reading a printed representation from aStream.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   522
     Notice, that this is not the storeString format and 
4998
010c3ab0cdc6 Comments
Stefan Vogel <sv@exept.de>
parents: 4997
diff changeset
   523
     is different from the format expected by readFrom:"
4421
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   524
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   525
    ^ [
4421
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   526
        |str month day year|
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   527
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   528
        str := aStringOrStream readStream.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   529
        month := str next:2.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   530
        month := Integer readFrom:month.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   531
        day := str next:2.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   532
        day := Integer readFrom:day.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   533
        year := str next:4.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   534
        year := Integer readFrom:year.
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   535
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   536
        self newDay:day month:month year:year
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   537
    ] on:Error do:exceptionBlock
4421
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   538
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   539
    "
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   540
     Date readMMDDYYYYFrom:'10041999' onError:['wrong date']  
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   541
     Date readMMDDYYYYFrom:'100419' onError:['wrong date']  
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   542
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   543
     Date readMMDDYYYYFrom:'10040001' onError:['wrong date']  
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   544
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   545
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   546
    "Created: 16.11.1995 / 22:50:17 / cg"
1701
80d13adb2e77 better errorHandling in readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 1501
diff changeset
   547
    "Modified: 8.10.1996 / 19:25:39 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   548
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   549
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   550
today
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   551
    "return a date, representing today.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   552
     See also: Time now / Timestamp now."
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   553
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   554
    ^ self fromOSTime:(OperatingSystem getOSTime)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   555
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   556
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   557
     Date today
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   558
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   559
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   560
    "Modified: 1.7.1996 / 15:20:16 / cg"
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   561
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   562
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   563
tomorrow
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   564
    "return a date, representing tomorrow.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   565
     See also: Time now / Timestamp now."
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   566
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   567
    ^ Date today addDays:1
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   568
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   569
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   570
     Date tomorrow 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   571
     Date tomorrow dayInWeek
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   572
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   573
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   574
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   575
yesterday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   576
    "return a date, representing yesterday.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   577
     See also: Time now / Timestamp now."
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   578
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   579
    ^ Date today subtractDays:1
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   580
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   581
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   582
     Date yesterday 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   583
     Date yesterday dayInWeek
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   584
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   585
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   586
7299
ae1b90fe7c4f category
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   587
!Date class methodsFor:'Compatibility-Dolphin'!
6872
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   588
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   589
newDay:day monthIndex:month year:year
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   590
    ^ self newDay:day month:month year:year
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   591
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   592
    "
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   593
     Date newDay:8 monthIndex:5 year:1993
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   594
    "
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   595
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   596
    "Modified: 19.4.1996 / 15:28:15 / cg"
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   597
! !
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   598
7646
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   599
!Date class methodsFor:'Compatibility-ST80'!
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   600
7648
61b7826a9a0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7646
diff changeset
   601
newDay:day monthNumber:monthIndex year:year
7646
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   602
    "ST80 compatibility"
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   603
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   604
    ^ self newDay:day month:monthIndex year:year
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   605
! !
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   606
7299
ae1b90fe7c4f category
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   607
!Date class methodsFor:'Compatibility-Squeak'!
7005
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   608
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   609
fromSeconds:seconds
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   610
    "Answer an instance of me which is 'seconds' seconds after January 1, 1901."
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   611
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   612
    | secondsInDay |
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   613
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   614
    secondsInDay := 24 * 60 * 60.
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   615
    ^self fromDays: seconds // secondsInDay
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   616
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   617
    "
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   618
     Date fromSeconds:0
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   619
     Date fromSeconds:(24 * 60 * 60 * 365)
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   620
    "
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   621
! !
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   622
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
   623
!Date class methodsFor:'general queries'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   624
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   625
abbreviatedNameOfDay:dayIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   626
    "given a day index (1..7), return the abbreviated name
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   627
     of the day"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   628
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   629
    ^ self abbreviatedNameOfDay:dayIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   630
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   631
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   632
     Date abbreviatedNameOfDay:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   633
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   634
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   635
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   636
abbreviatedNameOfDay:dayIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   637
    "given a day index (1..7), return the abbreviated name
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   638
     of the day.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   639
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   640
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   641
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   642
    ^ (self dayAbbrevsForLanguage:lang) at:dayIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   643
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   644
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   645
     Date abbreviatedNameOfDay:4 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   646
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   647
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   648
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   649
abbreviatedNameOfMonth:monthIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   650
    "given a month index (1..12), return the abbreviated name
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   651
     of the month"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   652
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   653
    ^ self abbreviatedNameOfMonth:monthIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   654
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   655
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   656
     Date abbreviatedNameOfMonth:11
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   657
     Date abbreviatedNameOfMonth:12
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   658
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   659
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   660
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   661
abbreviatedNameOfMonth:monthIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   662
    "given a month index (1..12), return the abbreviated name
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   663
     of the month.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   664
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   665
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   666
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   667
    ^ (self monthAbbrevsForLanguage:lang) at:monthIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   668
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   669
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   670
     Date abbreviatedNameOfMonth:11 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   671
     Date abbreviatedNameOfMonth:12 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   672
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   673
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   674
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   675
dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   676
    "return an array containing the date and time of now"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   677
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   678
    ^ Time dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   679
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   680
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   681
     Date dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   682
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   683
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   684
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   685
dayOfFirstWeekInYear:aYear
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   686
    "for a given year, return the day corresponding to that years monday of week-01.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   687
     The 1st week is the one, in which the first thursday is found;
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   688
     and the 1st day of that week is the preceeding monday 
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   689
     (that means: that the returned day might be a day of the previous year)"
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   690
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   691
    |day dayInWeekOf1stJan firstThursday firstDayInWeek|
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   692
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   693
    "/ find the first thursday ...
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   694
    day := Timestamp newDay:1 year:aYear.
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   695
    dayInWeekOf1stJan := day dayInWeek.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   696
    dayInWeekOf1stJan > 4 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   697
        firstThursday := day addDays:(4 - dayInWeekOf1stJan + 7).
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   698
    ] ifFalse:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   699
        firstThursday := day addDays:(4 - dayInWeekOf1stJan).
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   700
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   701
    "/ back to the preceeding monday
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   702
    firstDayInWeek := firstThursday subtractDays:3.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   703
    ^ firstDayInWeek
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   704
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   705
    "
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   706
     Date dayOfFirstWeekInYear:1998   
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   707
     Date dayOfFirstWeekInYear:1999    
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   708
     Date dayOfFirstWeekInYear:2000  
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   709
     Date dayOfFirstWeekInYear:2001   
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   710
    "
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   711
!
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   712
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   713
dayOfWeek:dayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   714
    "given the name of a day (either string or symbol),
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   715
     return the day-index (1 for monday; 7 for sunday).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   716
     Return 0 for invalid day name"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   717
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   718
    ^ self dayOfWeek:dayName language:nil
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   719
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   720
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   721
     Date dayOfWeek:'wednesday' 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   722
     Date dayOfWeek:'Wednesday' 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   723
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   724
!
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   725
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   726
dayOfWeek:dayName language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   727
    "given the name of a day (either string or symbol),
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   728
     return the day-index (1 for monday; 7 for sunday).
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   729
     Return 0 for invalid day name.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   730
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   731
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   732
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   733
    |idx langDayNames|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   734
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   735
    langDayNames := self dayNamesForLanguage:lang.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   736
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   737
    idx := langDayNames indexOf:dayName.
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   738
    idx == 0 ifTrue:[
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   739
        idx := langDayNames indexOf:dayName asLowercase.
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   740
    ].
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   741
    ^ idx
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   742
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   743
    "
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   744
     Date dayOfWeek:'wednesday' language:'en'
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   745
     Date dayOfWeek:'Wednesday' language:'en'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   746
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   747
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   748
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   749
daysInMonth:month forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   750
    "given the name of a month and a year, return the number 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   751
     of days this month has (modified GNU).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   752
     return 0 if the month name was invalid.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   753
     For your convenience, month maybe an integer or name-string."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   754
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   755
    |monthIndex "{ Class: SmallInteger }"|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   756
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   757
    month isInteger ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   758
	monthIndex := month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   759
    ] ifFalse:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   760
	monthIndex := self indexOfMonth:month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   761
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   762
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   763
    ^ self daysInMonthIndex:monthIndex forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   764
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   765
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   766
     Date daysInMonth:2 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   767
     Date daysInMonth:2 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   768
     Date daysInMonth:'feb' forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   769
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   770
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   771
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   772
daysInYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   773
    "return the number of days in a year"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   774
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   775
    (self leapYear:yearInteger) ifTrue:[^ 366].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   776
    ^ 365
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   777
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   778
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   779
     Date daysInYear:1900  
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   780
     Date daysInYear:1901 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   781
     Date daysInYear:1904 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   782
     Date daysInYear:1980 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   783
     Date daysInYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   784
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   785
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   786
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   787
daysUntilMonth:month forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   788
    "given the name of a month and a year, return the number 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   789
     of days from 1st january to last of prev month of that year.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   790
     Return 0 if the month name/index is invalid or is january.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   791
     For your convenience, month maybe an integer or name-string."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   792
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   793
    |monthIndex "{ Class: SmallInteger }"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   794
     sumDays    "{ Class: SmallInteger }" |
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   795
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   796
    month isInteger ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   797
	monthIndex := month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   798
    ] ifFalse:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   799
	monthIndex := self indexOfMonth:month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   800
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   801
    (monthIndex between:1 and:12) ifFalse:[^ 0].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   802
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   803
    sumDays := 0.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   804
    1 to:monthIndex-1 do:[:m |
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   805
	sumDays := sumDays + (self daysInMonthIndex:m forYear:yearInteger)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   806
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   807
    ^ sumDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   808
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   809
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   810
     Date daysUntilMonth:'feb' forYear:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   811
     Date daysUntilMonth:'jan' forYear:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   812
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   813
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   814
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   815
defaultFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   816
    (DefaultFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   817
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   818
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   819
    ^ DefaultFormats at:Language ifAbsent:(DefaultFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   820
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   821
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   822
     Date today printStringFormat:(Date defaultFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   823
     Date today printStringFormat:(Date longFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   824
     Date today printStringFormat:(Date shortFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   825
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   826
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   827
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   828
firstDayOfYear:inYear
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   829
    "return the weekDay-index of the 1st-january of the given year.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   830
     1->monday, 2->tuesday, ... 7->sunday"
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   831
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   832
    | t d |
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   833
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   834
    ((inYear < 1) or:[ inYear > 9999]) ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   835
        ^ 0.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   836
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   837
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   838
    "/ normal Gregorian calendar: one extra day per four years 
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   839
    t := 4 + inYear + ((inYear + 3) // 4).
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   840
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   841
    inYear > 1800 ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   842
        "/ Julian calendar: regular Gregorian less 3 days per 400
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   843
        t := t - ((inYear - 1701) // 100) + ((inYear - 1601) // 400).
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   844
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   845
    inYear > 1752 ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   846
        "/ calendar changeover
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   847
        t := t + 3.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   848
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   849
    d := t \\ 7.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   850
    "/ convert from 0 (sunday) .. 6 (saturday)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   851
    "/ to 1 (munday) .. 7 (sunday)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   852
    d == 0 ifTrue:[^ 7].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   853
    ^ d
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   854
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   855
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   856
     self firstDayOfYear:2000           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   857
     (Date newDay:1 year:2000) dayInWeek 
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   858
     self firstDayOfYear:1999      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   859
     (Date newDay:1 year:1999) dayInWeek
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   860
     self firstDayOfYear:1998      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   861
     (Date newDay:1 year:1998) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   862
     self firstDayOfYear:2001           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   863
     (Date newDay:1 year:2001) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   864
     self firstDayOfYear:2002           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   865
     (Date newDay:1 year:2002) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   866
     self firstDayOfYear:2006           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   867
     (Date newDay:1 year:2006) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   868
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   869
     self firstDayOfYear:1800           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   870
     (Date newDay:1 year:1800) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   871
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   872
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
   873
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   874
indexOfMonth:aMonthString
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   875
    "given the name of a month (either string or symbol),
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   876
     return the month-index (1 for jan; 12 for december).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   877
     The given string may be a full or abbreviated name,
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   878
     case is ignored.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   879
     Return 0 for invalid month name."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   880
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   881
    ^ self indexOfMonth:aMonthString language:nil
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   882
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   883
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   884
     Date indexOfMonth:'jan'
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   885
     Date indexOfMonth:'Jan'
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   886
     Date indexOfMonth:'December'
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   887
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   888
!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   889
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   890
indexOfMonth:aMonthString language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   891
    "given the name of a month (either string or symbol),
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   892
     return the month-index (1 for jan; 12 for december).
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   893
     The given string may be a full or abbreviated name,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   894
     case is ignored.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   895
     Return 0 for invalid month name.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   896
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   897
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   898
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   899
    |idx name langMonthNames langMonthAbbrevs|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   900
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   901
    langMonthNames := self monthNamesForLanguage:lang.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   902
    langMonthAbbrevs := self monthAbbrevsForLanguage:lang.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   903
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   904
    name := aMonthString asLowercase.
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   905
    idx := langMonthAbbrevs indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   906
    idx ~~ 0 ifTrue:[^ idx].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   907
    idx := langMonthNames indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   908
    idx ~~ 0 ifTrue:[^ idx].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   909
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   910
    name at:1 put:(name at:1) asUppercase.
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   911
    idx := langMonthAbbrevs indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   912
    idx ~~ 0 ifTrue:[^ idx].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   913
    idx := langMonthNames indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   914
    idx ~~ 0 ifTrue:[^ idx].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   915
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   916
    ^ idx
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   917
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   918
    "
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   919
     Date indexOfMonth:'jan'      language:#en 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   920
     Date indexOfMonth:'Jan'      language:#en 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   921
     Date indexOfMonth:'December' language:#en 
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   922
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   923
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   924
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   925
isLeapYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   926
    "Return true, if a year is a leap year.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   927
     Obsolete:
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   928
	 Please use the ST-80 compatible #leapYear for new programs, 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   929
	 since this method will vanish."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   930
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   931
    ^ self leapYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   932
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   933
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   934
leapYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   935
    "return true, if yearInteger is a leap year."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   936
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   937
    |y "{ Class: SmallInteger }"|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   938
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   939
    y := yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   940
    (y \\ 4 == 0) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   941
	(y \\ 100 ~~ 0) ifTrue:[^ true].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   942
	(y \\ 400 == 0) ifTrue:[^ true]
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   943
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   944
    ^ false
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   945
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   946
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   947
     Date leapYear:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   948
     Date leapYear:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   949
     Date leapYear:1900
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   950
     Date leapYear:2000
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   951
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   952
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   953
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   954
longFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   955
    (LongFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   956
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
   957
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   958
    ^ LongFormats at:Language ifAbsent:(LongFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   959
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   960
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   961
     Date today printStringFormat:(Date defaultFormatString). 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   962
     Date today printStringFormat:(Date longFormatString).    
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   963
     Date today printStringFormat:(Date shortFormatString).   
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   964
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   965
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
   966
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   967
monthAndDayFromDayInYear:aDayInYear forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   968
    "given a day-in-year (1..365) return an Array containing the
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   969
     month index and the day-in-month. Return nil if the argument is invalid."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   970
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   971
    |restDays daysInMonth|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   972
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   973
    restDays := aDayInYear.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   974
    restDays < 1 ifTrue:[^ nil].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   975
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   976
    1 to:12 do:[:m |
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   977
	daysInMonth := self daysInMonthIndex:m forYear:yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   978
	restDays <= daysInMonth ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   979
	    ^ Array with:m with:restDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   980
	].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   981
	restDays := restDays - daysInMonth 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   982
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   983
    restDays > daysInMonth ifTrue:[^ nil].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   984
    ^ Array with:12 with:restDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   985
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   986
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   987
     Date monthAndDayFromDayInYear:66 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   988
     Date monthAndDayFromDayInYear:66 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   989
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   990
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   991
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   992
nameOfDay:dayIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   993
    "given a day index (1..7), return the name of the day" 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   994
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   995
    ^ self nameOfDay:dayIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   996
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   997
    "
8795
7fc3fbba3b63 comment
Claus Gittinger <cg@exept.de>
parents: 8626
diff changeset
   998
     Date nameOfDay:1
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   999
     Date nameOfDay:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1000
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1001
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1002
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1003
nameOfDay:dayIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1004
    "given a day index (1..7), return the name of the day.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1005
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1006
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1007
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1008
    ^ (self dayNamesForLanguage:lang) at:dayIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1009
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1010
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1011
     Date nameOfDay:4 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1012
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1013
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1014
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1015
nameOfMonth:monthIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1016
    "given a month index (1..12), return the name of the month"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1017
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1018
    ^ self nameOfMonth:monthIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1019
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1020
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1021
     Date nameOfMonth:11
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1022
     Date nameOfMonth:12
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1023
     Date nameOfMonth:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1024
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1025
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1026
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1027
nameOfMonth:monthIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1028
    "given a month index (1..12), return the name of the month.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1029
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1030
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1031
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1032
    ^ (self monthNamesForLanguage:lang) at:monthIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1033
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1034
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1035
     Date nameOfMonth:11 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1036
     Date nameOfMonth:12 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1037
     Date nameOfMonth:4  language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1038
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1039
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1040
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1041
shortFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1042
    (ShortFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1043
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1044
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1045
    ^ ShortFormats at:Language ifAbsent:(ShortFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1046
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1047
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1048
     Date today printStringFormat:(Date defaultFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1049
     Date today printStringFormat:(Date longFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1050
     Date today printStringFormat:(Date shortFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1051
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1052
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1053
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1054
weekInYearOf:aDateOrTimestamp
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1055
    "for a given date or timeStamp, return the week-number.
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1056
     the returned week number starts with 1 for the first week which has a thursday in it.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1057
     The above definition can lead to the 1st week starting in the old year!!"
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1058
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1059
    |dayInYear numDays dayOfFirstWeekInYear dayOfFirstWeekInNextYear week|
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1060
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1061
    dayInYear := aDateOrTimestamp dayInYear.
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1062
    dayOfFirstWeekInYear := self dayOfFirstWeekInYear:aDateOrTimestamp year.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1063
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1064
    numDays := aDateOrTimestamp asDate subtractDate:dayOfFirstWeekInYear asDate.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1065
    "/ careful with the first days - could be W52/W53 of the previous year ...
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1066
    numDays < 0 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1067
        "/ not in a week here ...
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1068
        "/ can be either 52 or 53, depending on the previous year.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1069
        ^ self weekInYearOf:(Date day:31 month:12 year:aDateOrTimestamp year - 1)
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1070
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1071
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1072
    "/ compute the week 
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1073
    week := numDays // 7 + 1.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1074
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1075
    "/ careful with the last days - could be W01 of the next year ...
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1076
    week == 53 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1077
        dayOfFirstWeekInNextYear := self dayOfFirstWeekInYear:aDateOrTimestamp year + 1.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1078
        aDateOrTimestamp asDate >= dayOfFirstWeekInNextYear asDate ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1079
            ^ 1
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1080
        ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1081
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1082
    ^ week
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1083
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1084
    "
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1085
     Timestamp now weekInYear    
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1086
     Date weekInYearOf:(Date day:31 month:12 year:1999)     was a friday; 
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1087
     Date weekInYearOf:(Timestamp newDay:1 year:2000)    was a saturday; therefore last week of 1999
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1088
     Date weekInYearOf:(Timestamp newDay:2 year:2000)    was a sunday; therefore last week of 1999
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1089
     Date weekInYearOf:(Timestamp newDay:3 year:2000)    was a monday -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1090
     Date weekInYearOf:(Timestamp newDay:4 year:2000)    was a tuesday -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1091
     Date weekInYearOf:(Timestamp newDay:5 year:2000)    was a wed    -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1092
     Date weekInYearOf:(Timestamp newDay:6 year:2000)    was a thursday -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1093
     Date weekInYearOf:(Timestamp newDay:7 year:2000)    was a fri    -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1094
     Date weekInYearOf:(Timestamp newDay:8 year:2000)    was a sat   -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1095
     Date weekInYearOf:(Timestamp newDay:9 year:2000)    was a sun   -> W01
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1096
     Date weekInYearOf:(Timestamp newDay:10 year:2000)   was a monday -> W02
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1097
     Date weekInYearOf:(Timestamp newDay:16 year:2000)   was a sunday -> W02
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1098
     Date weekInYearOf:(Timestamp newDay:17 year:2000)   was a monday -> W03
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1099
     Date weekInYearOf:(Date day:1 month:1 year:2001)     
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1100
     Date weekInYearOf:(Date day:2 month:1 year:2001)     
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1101
     Date weekInYearOf:(Date day:3 month:1 year:2001)     
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1102
     Date weekInYearOf:(Date day:24 month:12 year:2001)   -> W52
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1103
     Date weekInYearOf:(Date day:30 month:12 year:2001)   -> W52
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1104
     Date weekInYearOf:(Date day:31 month:12 year:2001)   -> W01
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1105
     Date weekInYearOf:(Date day:1 month:1 year:2002)    
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1106
     Date weekInYearOf:(Date day:2 month:1 year:2002)      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1107
     Date weekInYearOf:(Date day:7 month:1 year:2002)      
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1108
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1109
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1110
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1111
yearAsDays: yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1112
    "Returns the number of days since Jan 1, 1901. (GNU)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1113
     to the first Jan of the year, yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1114
     For 1901 this is zero, for 1902 its 365.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1115
     Defined for years >= 1901"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1116
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1117
    |y "{ Class: SmallInteger }"|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1118
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1119
    y := yearInteger - 1900.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1120
    y := y - 1.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1121
    ^ (y * 365)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1122
	+ (y // 4)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1123
	- (y // 100)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1124
	+ ((y + 300) // 400)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1125
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1126
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1127
     Date yearAsDays:1901 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1128
     Date yearAsDays:1902   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1129
     Date yearAsDays:1903   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1130
     Date yearAsDays:1904    
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1131
     Date yearAsDays:1905     
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1132
     Date yearAsDays:1994   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1133
     (Date yearAsDays:2001) - (Date yearAsDays:2000)   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1134
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1135
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1136
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  1137
!Date class methodsFor:'handling language changes'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1138
1468
cb156455b046 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1139
update:something with:aParameter from:changedObject
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1140
    ((something == #Language) or:[something == #LanguageTerritory]) ifTrue:[
1468
cb156455b046 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1141
        "just remember change for next access"
cb156455b046 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1142
        EnvironmentChange := true
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1143
    ]
1468
cb156455b046 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1144
cb156455b046 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1145
    "Created: 15.6.1996 / 15:19:25 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1146
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1147
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  1148
!Date class methodsFor:'obsolete instance creation'!
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1149
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1150
day:day month:month year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1151
    "return a new Date, given the day, month and year.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1152
     Obsolete:
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1153
	use newDay:month:year: for ST-80 compatibility"
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1154
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1155
    ^ self newDay:day month:month year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1156
!
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1157
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1158
day:dayInYear year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1159
    "return a new Date, given the year and the day-in-year (starting at 1).
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1160
     Obsolete:
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1161
	use newDay:year: for ST-80 compatibility"
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1162
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1163
    ^ self newDay:dayInYear year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1164
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1165
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  1166
!Date class methodsFor:'private'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1167
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1168
dayAbbrevsForLanguage:language
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1169
    |langDayAbbrevs|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1170
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1171
    (DayAbbrevs isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1172
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1173
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1174
    langDayAbbrevs := DayAbbrevs at:(language ? Smalltalk language) ifAbsent:nil.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1175
    langDayAbbrevs isNil ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1176
        langDayAbbrevs := DayAbbrevs at:#en.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1177
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1178
    ^ langDayAbbrevs
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1179
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1180
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1181
dayNamesForLanguage:language
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1182
    |langDayNames|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1183
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1184
    (DayNames isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1185
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1186
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1187
    langDayNames := DayNames at:(language ? Smalltalk language) ifAbsent:nil.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1188
    langDayNames isNil ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1189
        langDayNames := DayNames at:#en.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1190
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1191
    ^ langDayNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1192
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1193
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1194
daysInMonthIndex: monthIndex forYear: yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1195
    "return the number of days in month monthIndex of
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1196
     year yearInteger (modified GNU).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1197
     Return 0 for invalid month index.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1198
     This is the internal version of daysInMonth:forYear:"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1199
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1200
    |days|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1201
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1202
    (monthIndex between:1 and:12) ifFalse:[^ 0].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1203
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1204
    days := #(31 28 31           "Jan Feb Mar"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1205
	      30 31 30           "Apr May Jun"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1206
	      31 31 30           "Jul Aug Sep"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1207
	      31 30 31           "Oct Nov Dec"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1208
	     ) at: monthIndex.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1209
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1210
    (monthIndex == 2) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1211
	(self leapYear:yearInteger) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1212
	    ^ days + 1
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1213
	]
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1214
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1215
    ^ days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1216
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1217
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1218
     Date daysInMonthIndex:2 forYear:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1219
     Date daysInMonthIndex:2 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1220
     Date daysInMonthIndex:2 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1221
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1222
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1223
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1224
monthAbbrevsForLanguage:language
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1225
    |langMonthAbbrevs|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1226
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1227
    (MonthAbbrevs isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1228
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1229
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1230
    langMonthAbbrevs := MonthAbbrevs at:(language ? Smalltalk language) ifAbsent:nil.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1231
    langMonthAbbrevs isNil ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1232
        langMonthAbbrevs := MonthAbbrevs at:#en.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1233
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1234
    ^ langMonthAbbrevs
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1235
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1236
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1237
monthNamesForLanguage:language
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1238
    |langMonthNames|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1239
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1240
    (MonthNames isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1241
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1242
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1243
    langMonthNames := MonthNames at:(language ? Smalltalk language) ifAbsent:nil.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1244
    langMonthNames isNil ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1245
        langMonthNames := MonthNames at:#en.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1246
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1247
    ^ langMonthNames
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1248
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1249
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7023
diff changeset
  1250
!Date class methodsFor:'private-encoding'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1251
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1252
encodeYear:y month:m day:d
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1253
    "the internal encoding is stricktly private, 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1254
     and should not be used outside."
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1255
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1256
    ^ (((y * 100) + m) * 100) + d
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1257
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1258
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7023
diff changeset
  1259
!Date class methodsFor:'private-instance creation'!
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1260
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1261
fromOSTime:osTime
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1262
    "return a date, representing the date given by the operatingSystem time.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1263
     This somewhat clumsy implementation hides the OS's date representation
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1264
     (i.e. makes this class independent of what the OS starts its time values with).
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1265
     Dont use this method, the osTime representation is totally unportable."
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1266
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1267
    ^ self basicNew fromOSTime:osTime
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1268
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1269
    "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1270
     Date fromOSTime:#(0 0)      -> on UNIX: this should return 1st Jan 1970
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1271
				    thats where Unix time starts
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1272
				    On other systems, it may be something different.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1273
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1274
     Date fromOSTime:#(86400 0)  -> on UNIX: the day after
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1275
    "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1276
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1277
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1278
!Date methodsFor:'Compatibility-ANSI'!
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1279
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1280
dayOfWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1281
    "return the week-day of the receiver - 1 is sunday, 7 for saturday.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1282
     WARNING: different from dayInWeek (which returns 1 for monday, ... 7 for sunday).  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1283
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1284
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1285
    |d|
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1286
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1287
    d := self dayInWeek.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1288
    d == 7 ifTrue:[
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1289
        ^ 1
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1290
    ].
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1291
    ^ d + 1
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1292
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1293
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1294
     Date today dayOfWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1295
     Date today dayInWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1296
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1297
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1298
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1299
dayOfWeekAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1300
    "return the short week-day of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1301
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1302
     Expect things like 'mon', 'tue' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1303
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1304
    ^ self abbreviatedDayName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1305
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1306
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1307
     Date today dayOfWeekAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1308
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1309
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1310
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1311
dayOfWeekName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1312
    "return the week-day of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1313
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1314
     Expect things like 'monday', 'tuesday' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1315
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1316
    ^ self weekday
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1317
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1318
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1319
     Date today dayOfWeekName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1320
     Date today dayOfWeekAbbreviation 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1321
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1322
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1323
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1324
dayOfYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1325
    "return the day-nr within the year of the receiver - 1..365/366"
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1326
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1327
    ^ self dayInYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1328
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1329
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1330
     Date today dayOfYear 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1331
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1332
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1333
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1334
isLeapYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1335
    "return true, if the receivers year is a leap year"
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1336
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1337
    ^ self leap
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1338
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1339
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1340
     Date today isLeapYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1341
     (Date day:1 month:1 year:1992) isLeapYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1342
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1343
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1344
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1345
monthAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1346
    "return the month of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1347
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1348
     Expect things like 'jan', 'feb' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1349
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1350
    ^ self abbreviatedMonthName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1351
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1352
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1353
     Date today monthAbbreviation  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1354
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1355
! !
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1356
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1357
!Date methodsFor:'Compatibility-ST80'!
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1358
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1359
previous:dayName 
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1360
    "Return the previous date whose weekday name is dayName.
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1361
     Caveat; dayName is expected to be in the current language"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1362
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1363
    ^ self subtractDays:(self weekdayIndex - (self class dayOfWeek:dayName) - 1 \\ 7 + 1)
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1364
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1365
    "
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1366
     Date today                 
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1367
     Date today previous:#Monday 
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1368
     Date today previous:#Friday 
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1369
    "
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1370
!
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1371
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1372
printFormat:aFormatArray
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1373
    "Obsolete, backward ST-80 compatible formatted printing - see printStringFormat:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1374
     Return a string containing a printed representation of the receiver.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1375
     The formatArray argument consists of 6 or 7 integers which control
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1376
     the resulting string. The entries are:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1377
     1   day position (1, 2 or 3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1378
     2   month position (1..3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1379
     3   year position (1..3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1380
     4   asciiValue of separator character or separator character
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1381
         or collection of 2 separator characters
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1382
     5   month format (1: numeric; 2: abbreviated name; 3: fullname
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1383
         4: abbreviated uppercase 5: full uppercase)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1384
     6   year format (1 include century; 2 exclude century)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1385
     7  (optional) true/false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1386
         if true, print numbers in 2-digit format
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1387
         (i.e. with leading zeros); 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1388
         Taken as false, if ommited
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1389
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1390
     Day and monthnames are in the currently active language.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1391
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1392
     This method supports more options than the ST-80 version; month formats 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1393
     4 and 5, non-numeric separators and the optional 7th parameter are not 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1394
     supported by ST-80. Be aware of this for compatibility reasons.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1395
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1396
     Notice that not all formats can be scanned (correctly) by #readFrom:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1397
     This is an ST-80 compatibility method - I would have choosen another
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1398
     (less cryptic) formatString ...
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1399
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1400
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1401
    ^ self printFormat:aFormatArray forLanguage:nil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1402
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1403
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1404
     Date today printFormat:#(1 2 3 '' 1 2)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1405
     Date today printFormat:#(1 2 3 $- 1 2)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1406
     Date today printFormat:#(1 2 3 $. 1 2 true)     
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1407
     Date today printFormat:#(2 1 3 32 3 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1408
     Date today printFormat:#(2 1 3 #(' ' ', ') 3 1)  
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1409
     Date today printFormat:#(1 2 3 $- 2 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1410
     Date today printFormat:#(1 2 3 $- 4 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1411
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1412
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1413
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1414
printFormat:aFormatArray forLanguage:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1415
    "Obsolete, backward ST-80 compatible formatted printing - see printStringFormat:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1416
     Return a string containing a printed representation of the receiver.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1417
     The formatArray argument consists of 6 or 7 integers which control
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1418
     the resulting string. The entries are:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1419
     1   day position (1, 2 or 3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1420
     2   month position (1..3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1421
     3   year position (1..3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1422
     4   asciiValue of separator character or separator character
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1423
         or collection of 2 separator characters
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1424
     5   month format (1: numeric; 2: abbreviated name; 3: fullname
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1425
         4: abbreviated uppercase 5: full uppercase)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1426
     6   year format (1 include century; 2 exclude century)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1427
     7  (optional) true/false.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1428
         if true, print numbers in 2-digit format
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1429
         (i.e. with leading zeros); 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1430
         Taken as false, if ommited
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1431
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1432
     Day and monthnames are in the currently active language.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1433
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1434
     This method supports more options than the ST-80 version; month formats 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1435
     4 and 5, non-numeric separators and the optional 7th parameter are not 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1436
     supported by ST-80. Be aware of this for compatibility reasons.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1437
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1438
     Notice that not all formats can be scanned (correctly) by #readFrom:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1439
     This is an ST-80 compatibility method - I would have choosen another
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1440
     (less cryptic) formatString ...
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1441
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1442
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1443
    |mf upperCase day month year components sep1 sep2 leadingZeros|
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1444
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1445
    aFormatArray size > 6 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1446
        leadingZeros := aFormatArray at:7
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1447
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1448
        leadingZeros := false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1449
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1450
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1451
    components := Array new:3.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1452
    day := self day.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1453
    leadingZeros ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1454
        day := day printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1455
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1456
        day := day printString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1457
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1458
    components at:(aFormatArray at:1) put:day.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1459
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1460
    upperCase := false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1461
    mf := aFormatArray at:5.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1462
    (mf between:4 and:5) ifTrue:[mf := mf - 2. upperCase := true].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1463
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1464
    mf == 1 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1465
        month := self month.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1466
        leadingZeros ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1467
            month := month printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1468
        ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1469
            month := month printString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1470
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1471
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1472
        mf == 2 ifTrue:[
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1473
            month := self abbreviatedMonthNameForLanguage:languageOrNil
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1474
        ] ifFalse:[
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1475
            month := self monthNameForLanguage:languageOrNil
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1476
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1477
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1478
    upperCase ifTrue:[month := month asUppercase].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1479
    components at:(aFormatArray at:2) put:month.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1480
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1481
    year := self year.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1482
    (aFormatArray at:6) == 2 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1483
        year := year \\ 100.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1484
        year := year printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1485
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1486
    year := year printString.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1487
    components at:(aFormatArray at:3) put:year.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1488
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1489
    sep1 := sep2 := (aFormatArray at:4).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1490
    sep1 isString ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1491
        sep1 isCollection ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1492
            sep2 := (sep1 at:2).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1493
            sep1 := (sep1 at:1).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1494
        ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1495
            sep1 := sep2 := sep1 asCharacter
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1496
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1497
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1498
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1499
    ^ (components at:1)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1500
      , sep1 asString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1501
      , (components at:2)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1502
      , sep2 asString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1503
      , (components at:3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1504
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1505
    "
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1506
     Date today printFormat:#(1 2 3 '' 1 2)         
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1507
     Date today printFormat:#(1 2 3 $- 1 2)         
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1508
     Date today printFormat:#(1 2 3 $. 1 2 true)     
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1509
     Date today printFormat:#(2 1 3 32 3 1)          
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1510
     Date today printFormat:#(2 1 3 #(' ' ', ') 3 1)  
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1511
     Date today printFormat:#(1 2 3 $- 2 1) forLanguage:#en           
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1512
     Date today printFormat:#(1 2 3 $- 4 1) forLanguage:#en          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1513
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1514
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1515
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1516
printFormat:aFormatArray forLanguage:languageOrNil on:aStream
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1517
    "Obsolete, backward ST-80 compatible formatted printing - see comment
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1518
     in printFormat:.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1519
     Append a printed representation of the receiver to aStream.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1520
     The argument, aFormatString controls the format, as described
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1521
     in the #printFormat: method.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1522
     Notice that not all formats can be scanned (correctly) by #readFrom:"
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1523
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1524
    aStream nextPutAll:(self printFormat:aFormatArray forLanguage:languageOrNil)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1525
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1526
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1527
    "european formats:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1528
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1529
     Date today printFormat:#(1 2 3 $- 1 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1530
     Date today printFormat:#(1 2 3 $- 2 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1531
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1532
     Date today printFormat:#(1 2 3 $- 3 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1533
     Date today printFormat:#(1 2 3 $. 1 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1534
     Date today printFormat:#(1 2 3 $. 1 2 true) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1535
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1536
     US formats:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1537
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1538
     Date today printFormat:#(2 1 3 32 3 1) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1539
     Date today printFormat:#(2 1 3 32 2 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1540
     Date today printFormat:#(2 1 3 $/ 1 2) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1541
     Date today printFormat:#(2 1 3 $- 2 1) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1542
     Date today printFormat:#(2 1 3 #(' ' ', ') 2 1) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1543
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1544
     Date today printFormat:#(1 2 3 $- 4 1) on:Transcript. Transcript cr.
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1545
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1546
!
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1547
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1548
printFormat:aFormatArray on:aStream
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1549
    "Obsolete, backward ST-80 compatible formatted printing - see comment
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1550
     in printFormat:.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1551
     Append a printed representation of the receiver to aStream.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1552
     The argument, aFormatString controls the format, as described
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1553
     in the #printFormat: method.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1554
     Notice that not all formats can be scanned (correctly) by #readFrom:"
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1555
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1556
    aStream nextPutAll:(self printFormat:aFormatArray)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1557
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1558
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1559
    "european formats:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1560
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1561
     Date today printFormat:#(1 2 3 $- 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1562
     Date today printFormat:#(1 2 3 $- 2 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1563
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1564
     Date today printFormat:#(1 2 3 $- 3 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1565
     Date today printFormat:#(1 2 3 $. 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1566
     Date today printFormat:#(1 2 3 $. 1 2 true) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1567
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1568
     US formats:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1569
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1570
     Date today printFormat:#(2 1 3 32 3 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1571
     Date today printFormat:#(2 1 3 32 2 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1572
     Date today printFormat:#(2 1 3 $/ 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1573
     Date today printFormat:#(2 1 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1574
     Date today printFormat:#(2 1 3 #(' ' ', ') 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1575
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1576
     Date today printFormat:#(1 2 3 $- 4 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1577
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1578
!
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1579
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1580
shortPrintString
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1581
    "dummy - for now"
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1582
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1583
    ^ self printString
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1584
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1585
    "Created: 20.6.1997 / 17:16:48 / cg"
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1586
!
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1587
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1588
weekdayIndex
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1589
    "Return the day index; Monday=1, ... , Sunday=7"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1590
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1591
    ^ (self asDays + 1) \\ 7 + 1  "1 January 1901 was a Tuesday"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1592
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1593
    "
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1594
     Date today dayName
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1595
     Date today weekdayIndex      
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1596
    "
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1597
! !
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1598
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1599
!Date methodsFor:'Compatibility-Squeak'!
4407
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1600
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1601
mmddyyyy
4462
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  1602
    "return a printed representation of the receiver in the
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  1603
     form mmddyyyy.
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  1604
     The receiver can be reconstructed with: 
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  1605
        Date readMMDDYYYYFrom:aStringOrStream onError:[...]"
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  1606
4407
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1607
    ^ (self month printStringLeftPaddedTo:2 with:$0)
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1608
       , (self day printStringLeftPaddedTo:2 with:$0) 
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1609
       , (self year printStringLeftPaddedTo:4 with:$0)
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1610
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1611
    "
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1612
     Date today mmddyyyy
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1613
    "
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1614
! !
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  1615
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1616
!Date methodsFor:'accessing'!
241
6f30be88e314 *** empty log message ***
claus
parents: 202
diff changeset
  1617
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1618
abbreviatedDayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1619
    "return the short week-day of the receiver as a string.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1620
     The returned string depends on the language setting.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1621
     Expect things like 'mon', 'tue' ..."
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1622
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1623
    ^ self class abbreviatedNameOfDay:(self dayInWeek)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1624
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1625
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1626
     Date today abbreviatedDayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1627
     (Date day:15 month:4 year:1959) abbreviatedDayName
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1628
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1629
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1630
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1631
abbreviatedMonthName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1632
    "return the month of the receiver as a string.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1633
     The returned string depends on the language setting.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1634
     Expect things like 'jan', 'feb' ..."
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1635
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1636
    ^ self class abbreviatedNameOfMonth:(self month)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1637
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1638
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1639
     Date today abbreviatedMonthName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1640
     (Date day:15 month:4 year:1959) abbreviatedMonthName
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1641
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1642
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1643
7794
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1644
abbreviatedMonthNameForLanguage:lang
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1645
    "return the month of the receiver as a string.
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1646
     The returned string depends on the language setting.
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1647
     Expect things like 'jan', 'feb' ..."
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1648
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1649
    ^ self class abbreviatedNameOfMonth:(self month) language:lang
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1650
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1651
    "
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1652
     Date today abbreviatedMonthNameForLanguage:#en 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1653
     Date today abbreviatedMonthNameForLanguage:#de 
7794
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1654
    "
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1655
!
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  1656
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1657
asDays
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1658
    "return the number of days elapsed since 01-Jan-1901
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1659
     and the receiver's day; starts with 0 for 1-1-1901.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1660
     Date>>fromDays: is the reverse operation.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1661
     For ST-80 compatibility."
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1662
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1663
    |yr|
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1664
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1665
    yr := self year.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1666
    ^ (self class yearAsDays:yr)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1667
      + (self class daysUntilMonth:self month forYear:yr)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1668
      + self day
85
claus
parents: 77
diff changeset
  1669
      - 1
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1670
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1671
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1672
     (Date day: 5 month: 8 year: 1962) asDays  -> should be 22496
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1673
     (Date day: 1 month: 1 year: 1901) asDays  -> 0
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1674
     Date today asDays
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1675
     Date fromDays:(Date today asDays + 7)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1676
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1677
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1678
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1679
asSeconds
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1680
    "return the seconds between 1.jan.1901 and the same time in the receivers 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1681
     day. (i.e. midnight to midnight).
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1682
     This does not include any leapSeconds ... strictly speaking, this is incorrect.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1683
     ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1684
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1685
    ^ 60*60*24 * self asDays
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1686
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1687
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1688
     (Date day: 5 month: 8 year: 1962) asSeconds
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1689
     (Date day: 1 month: 1 year: 1901) asSeconds
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1690
     (Date today addDays:7) asSeconds - Date today asSeconds
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1691
    "
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1692
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1693
    "Modified: 1.7.1996 / 14:19:17 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1694
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1695
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1696
day
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1697
    "return the day (1..31) of the receiver"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1698
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1699
    ^ dateEncoding \\ 100
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1700
8626
ae1fcb227a45 example
penk
parents: 8480
diff changeset
  1701
    "example:
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1702
     Date today day
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1703
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1704
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1705
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1706
dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1707
    "return the number of days since 1st. Jan. 1901;
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1708
     starting with 0 for this date.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1709
     Date>>fromDays: is the reverse operation.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1710
     Obsolete:
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1711
	 please use asDays for ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1712
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1713
    ^ self asDays.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1714
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1715
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1716
     (Date day:1 month:1 year:1901) dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1717
     Date fromDays:(Date day:1 month:1 year:1994) dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1718
     Date today dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1719
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1720
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1721
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1722
dayInWeek
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1723
    "return the week-day of the receiver - 1 for monday, 7 for sunday.
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1724
     WARNING: different from ANSIs dayOfWeek (which returns 1 for sunday, ... 7 for saturday).  
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1725
     WARNING: does not care for pre-julian dates 
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1726
        (i.e. do not use this for dates before 1752)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1727
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1728
3256
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1729
    |wday|
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1730
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1731
    wday := (1 "knowing, that 1st Jan 1901 was a tuesday"
3256
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1732
            + self asDays) \\ 7 + 1.
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1733
    wday < 1 ifTrue:[
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1734
        wday := wday + 7
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1735
    ].
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1736
    ^ wday
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1737
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1738
    "
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1739
     Date today dayInWeek      
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1740
     Date tomorrow dayInWeek 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1741
     Date yesterday dayInWeek 
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1742
     (Date today subtractDays:2) dayInWeek 
3257
db002a9bf071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3256
diff changeset
  1743
     Date today weekday 
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1744
     Date tomorrow weekday 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1745
     Date yesterday weekday 
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1746
     (Date day:15 month:4 year:1959) dayInWeek 
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1747
     (Date day:1 month:1 year:1901) dayInWeek 
3256
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  1748
     (Date day:31 month:12 year:1899) dayInWeek 
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1749
    "
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  1750
3257
db002a9bf071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3256
diff changeset
  1751
    "Modified: / 1.2.1998 / 14:10:27 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1752
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1753
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1754
dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1755
    "return the day-nr within the year of the receiver - 1 .. 365/366"
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1756
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1757
    ^ self asTimestamp dayInYear
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1758
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1759
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1760
     Date today dayInYear 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1761
     (Date newDay:1 year:1999) dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1762
     (Date newDay:1 year:2000) dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1763
     (Date newDay:2 year:2000) dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1764
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1765
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1766
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1767
dayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1768
    "return the week-day of the receiver as a string.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1769
     The returned string depends on the language setting.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1770
     Expect things like 'monday', 'tuesday' ...
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1771
     Obsolete:
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1772
	use #weekday for ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1773
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1774
    ^ self weekday
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1775
!
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1776
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1777
dayOfMonth
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1778
    "Answer the day of the month represented by me.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1779
     Same as day; for ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1780
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1781
    ^ self day
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1782
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1783
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1784
     Date today dayOfMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1785
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1786
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1787
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1788
daysInMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1789
    "return the number of days in the month of the receiver"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1790
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1791
    ^ Date daysInMonth:(self month) forYear:(self year)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1792
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1793
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1794
     Date today daysInMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1795
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1796
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1797
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1798
daysInYear
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1799
    "return the number of days in the year of the receiver"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1800
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1801
    ^ Date daysInYear:(self year)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1802
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1803
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1804
     Date today daysInYear
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1805
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1806
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1807
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1808
daysLeftInMonth
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1809
    "return the number of days left in the month of the receiver"
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1810
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1811
    ^ self daysInMonth - self day
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1812
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1813
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1814
     Date today daysLeftInMonth             
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1815
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1816
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1817
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1818
daysLeftInYear
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1819
    "return the number of days left in the year of the receiver"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1820
5282
d38c5238399c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  1821
    ^ (Date daysInYear:(self year)) - self day
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1822
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1823
    "
5282
d38c5238399c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  1824
     Date today daysLeftInYear             
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1825
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1826
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1827
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1828
leap
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1829
    "return true, if the receivers year is a leap year"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1830
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1831
    ^ Date leapYear:(self year)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1832
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1833
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1834
     Date today leap
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1835
     (Date day:1 month:1 year:1992) leap
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1836
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1837
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1838
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1839
month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1840
    "return the month (1..12) of the receiver"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1841
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1842
    ^ (dateEncoding // 100) \\ 100
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1843
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1844
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1845
     Date today month
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1846
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1847
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1848
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1849
monthIndex
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1850
    "return the index of the month (e.g. Feb.=2).
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1851
     Same as month; for ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1852
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1853
    ^ self month  
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1854
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1855
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1856
monthName
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1857
    "return the month of the receiver as a string.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1858
     The returned string depends on the language setting.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1859
     Expect things like 'january', 'february' ..."
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1860
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1861
    ^ self class nameOfMonth:(self month)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1862
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1863
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1864
     Date today monthName
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1865
     (Date day:15 month:4 year:1959) monthName
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1866
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1867
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1868
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1869
monthNameForLanguage:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1870
    "return the month of the receiver as a string.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1871
     The returned string depends on the language setting.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1872
     Expect things like 'january', 'february' ..."
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1873
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1874
    ^ self class nameOfMonth:(self month) language:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1875
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1876
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1877
     Date today monthName
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1878
     Date today monthNameForLanguage:#en
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1879
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1880
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1881
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1882
weekInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1883
    "return the week number of the receiver - 1 for Jan, 1st.
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1884
     each week is Mon .. Sun (i.e. Sunday belongs to the previous week)"
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1885
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1886
    ^ self class weekInYearOf:self
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1887
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1888
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1889
     Date today weekInYear    
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1890
     (Date newDay:1 year:2000) weekInYear   was a saturday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1891
     (Date newDay:2 year:2000) weekInYear   was a sunday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1892
     (Date newDay:3 year:2000) weekInYear   was a monday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1893
     (Date newDay:4 year:2000) weekInYear   was a tuesday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1894
     (Date newDay:5 year:2000) weekInYear   was a wed
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1895
     (Date newDay:6 year:2000) weekInYear   was a thursday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1896
     (Date newDay:7 year:2000) weekInYear   was a fri
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1897
     (Date newDay:8 year:2000) weekInYear   was a sat
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1898
     (Date newDay:9 year:2000) weekInYear   was a sun
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1899
     (Date newDay:10 year:2000) weekInYear  was a monday
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1900
     (Date day:3 month:1 year:2001) weekInYear 
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1901
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1902
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1903
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1904
weekday
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1905
    "return the week-day of the receiver as a string.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1906
     The returned string depends on the language setting.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1907
     Expect things like 'monday', 'tuesday' ...
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1908
     For ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1909
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1910
    ^ self class nameOfDay:(self dayInWeek)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1911
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1912
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1913
     Date today weekday
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1914
     (Date day:15 month:4 year:1959) weekday
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1915
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1916
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1917
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1918
year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1919
    "return the year (1..12) of the receiver"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1920
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1921
    ^ dateEncoding // (100*100)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1922
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1923
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1924
     Date today year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1925
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1926
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1927
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1928
!Date methodsFor:'arithmetic'!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1929
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1930
+ days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1931
    "return a new date representing 'days' after the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1932
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1933
     This is the same as #addDays."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1934
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1935
    ^ self class fromDays:(self asDays + days)
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1936
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1937
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1938
     Date today + 7.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1939
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1940
     Date today to:(Date today + 28) by:7 do:[:date|
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1941
        Transcript show:date weekday; show:', '; showCr:date
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1942
     ].
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1943
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1944
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1945
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1946
- aDateOrNumberOfDays
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1947
    "return the delta in days (anInteger) between 2 dates or 
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1948
     subtract a number of days from a date returning a Date"
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1949
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1950
    aDateOrNumberOfDays class == self class ifTrue:[
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1951
        ^ self asDays - aDateOrNumberOfDays asDays
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1952
    ].
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1953
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1954
    ^ self class fromDays:(self asDays - aDateOrNumberOfDays asInteger)
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1955
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1956
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1957
        Date today - Date yesterday
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1958
        Date today - 3
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1959
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1960
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1961
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1962
addDays:days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1963
    "return a new date representing 'days' after the receiver.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1964
     The argument should be some kind of integer.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1965
     For ST-80 compatibility."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1966
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1967
    ^ self class fromDays:(self asDays + days)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1968
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1969
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1970
     Date today addDays:7
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1971
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1972
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1973
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1974
daysUntil:aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1975
    "return the number of days between the receiver and the argument,
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1976
     aDate, which should be some kind of date"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1977
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1978
    ^ aDate asDays - self asDays
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  1979
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1980
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1981
     (Date day:24 month:12 year:1994) daysUntil:(Date day:1 month:1 year:1995)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1982
     (Date day:1 month:2 year:1992) daysUntil:(Date day:1 month:3 year:1992)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1983
     (Date day:1 month:2 year:1994) daysUntil:(Date day:1 month:3 year:1994)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1984
    
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1985
     |delta|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1986
     delta := Date today
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1987
                daysUntil:(Date day:25 month:12 year:Date today year).
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1988
     Transcript show:'still ';
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1989
                show:delta ;
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  1990
                showCR:' days till xmas'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1991
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1992
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1994
subtractDate:aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1995
    "return the number of days between the receiver and aDate"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1996
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1997
    ^ self asDays - aDate asDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1998
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1999
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2000
    (Date day:1 month:1 year:1995) subtractDate:(Date day:24 month:12 year:1994)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2001
    (Date day:1 month:3 year:1992) subtractDate:(Date day:1 month:2 year:1992)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2002
    (Date day:1 month:3 year:1994) subtractDate:(Date day:1 month:2 year:1994)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2003
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2004
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2005
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2006
subtractDays:days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2007
    "return a new date representing 'days' before the receiver.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2008
     The argument should be some kind of integer.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2009
     For ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2010
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2011
    ^ self class fromDays:(self asDays - days)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2012
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2013
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2014
     Date today subtractDays:7
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2015
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2016
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2017
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2018
!Date methodsFor:'comparing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2019
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2020
< aDate
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2021
    "return true, if the date represented by the receiver
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2022
     is before the argument, aDate"
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2023
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2024
    (aDate isMemberOf:Date) ifTrue:[
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2025
	^ dateEncoding < aDate dateEncoding
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2026
    ].
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2027
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2028
    "the argument must understand year, month and day to be
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2029
     comparable, whatever it is"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2030
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2031
    ^ dateEncoding < (Date encodeYear:aDate year
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2032
				month:aDate month
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2033
				  day:aDate day)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2034
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2035
    "Date today < (Date day:24 month:12 year:2000)"
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2036
    "Date today < (Date day:24 month:12 year:1900)"
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2037
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2038
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2039
= aDate
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2040
    "return true, if the date represented by the receiver
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2041
     is the same as the one represented by argument, aDate"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2042
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2043
    (aDate isMemberOf:Date) ifFalse:[^ false].
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2044
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2045
    ^ dateEncoding = aDate dateEncoding
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2046
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2047
    "the argument must understand year, month and day to be
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2048
     comparable, whatever it is"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2049
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2050
"
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2051
    ^ dateEncoding = (Date encodeYear:aDate year
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2052
				month:aDate month
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2053
				  day:aDate day)
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2054
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2055
    "Date today = ((Date today plusDays:7) minusDays:7)"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2056
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2057
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2058
> aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2059
    "return true, if the date represented by the receiver
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2060
     is after the argument, aDate"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2061
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2062
    (aDate isMemberOf:Date) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2063
	^ dateEncoding > aDate dateEncoding
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2064
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2065
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2066
    "the argument must understand year, month and day to be
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2067
     comparable, whatever it is"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2068
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2069
    ^ dateEncoding > (Date encodeYear:aDate year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2070
				month:aDate month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2071
				  day:aDate day)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2072
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2073
    "Date today > (Date day:24 month:12 year:2000)"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2074
    "Date today > (Date day:24 month:12 year:1900)"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2075
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2076
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2077
hash
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2078
    "return an integer useful for hashing on dates"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2079
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2080
    ^ dateEncoding
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2081
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2082
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2083
!Date methodsFor:'converting'!
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2084
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2085
asAbsoluteTime
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2086
    "deprecated, use #asTimestamp"
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2087
    <resource:#obsolete>
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2088
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2089
    ^ self asTimestamp
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  2090
!
4408
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2091
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2092
asDate
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2093
    "return the receiver"
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2094
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2095
    ^ self
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2096
!
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2097
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2098
asTimestamp
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2099
    "return an TimeStamp instance, representing midnight of last night"
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2100
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2101
    ^ Timestamp year:(self year) month:(self month) day:(self day)  
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2102
                   hour:0 minute:0 second:0 millisecond:0
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2103
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2104
    "
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2105
     Date today asTimestamp
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2106
    "
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  2107
! !
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2108
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2109
!Date methodsFor:'obsolete'!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2110
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2111
minusDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2112
    "return a new date representing 'days' before the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2113
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2114
     Obsolete:
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2115
         Please dont use this method since it will vanish.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2116
         Use #subtractDays: instead for ST-80 compatibility."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2117
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2118
    <resource: #obsolete>
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2119
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2120
    self obsoleteMethodWarning:'use #substractDays:'.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2121
    ^ self subtractDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2122
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2123
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2124
plusDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2125
    "return a new date representing 'days' after the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2126
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2127
     Obsolete:
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2128
         Please dont use this method since it will vanish.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2129
         Use #addDays: instead for ST-80 compatibility."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2130
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2131
    <resource: #obsolete>
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2132
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2133
    self obsoleteMethodWarning:'use #addDays:'.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2134
    ^ self addDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2135
! !
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2136
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2137
!Date methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2138
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2139
addPrintBindingsTo:aDictionary
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2140
    "private print support: add bindings for printing to aDictionary.
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2141
     valid format items are:
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2142
        %d              - day, 01..31                    0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2143
        %m              - month, 01..12                  0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2144
        %w              - week in year, 00..53           0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2145
        %y              - year, full                     i.e. 1999, 2004
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2146
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2147
     special:
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2148
        %D              - day - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2149
        %M              - month - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2150
        %W              - week in year - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2151
        %Y              - year, last 2 digits only i.e. 99, 04 (danger: year 2k bug)                     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2152
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2153
        %weekDay        - day in week (1->monday, 2->tuesday, ... ,7->sunday)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2154
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2155
        %dayName        - full day name     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2156
        %DayName        - full day name, first character uppercase      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2157
        %DAYNAME        - full day name, all uppercase       
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2158
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2159
        %monthName      - full month name     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2160
        %MonthName      - full month name, first character uppercase      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2161
        %MONTHNAME      - full month name, all uppercase       
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2162
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2163
        %shortDayName   - short (abbreviated) day name     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2164
        %ShortDayName   - short (abbreviated) day name, first character uppercase      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2165
        %SHORTDAYNAME   - short (abbreviated) day name, all uppercase       
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2166
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2167
        %shortMonthName - short (abbreviated) month name     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2168
        %ShortMonthName - short (abbreviated) month name, first character uppercase      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2169
        %SHORTMONTHNAME - short (abbreviated) month name, all uppercase       
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2170
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2171
        %nth            - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2172
        %weekDayNth     - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2173
        %weekNth        - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')"     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2174
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2175
    self addPrintBindingsTo:aDictionary language:nil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2176
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2177
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2178
addPrintBindingsTo:aDictionary language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2179
    "private print support: add bindings for printing to aDictionary.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2180
     languageOrNil can only be #en or nil for the current language.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2181
     valid format items are:
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2182
        %d              - day, 01..31                    0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2183
        %m              - month, 01..12                  0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2184
        %w              - week in year, 00..53           0-padded to length 2
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2185
        %y              - year, full                     i.e. 1999, 2004
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2186
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2187
     special:
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2188
        %D              - day - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2189
        %M              - month - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2190
        %W              - week in year - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2191
        %Y              - year, last 2 digits only i.e. 99, 04 (danger: year 2k bug)                     
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2192
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2193
        %weekDay        - day in week (1->monday, 2->tuesday, ... ,7->sunday)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2194
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2195
        %dayName        - full day name     
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2196
        %DayName        - full day name, first character uppercase      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2197
        %DAYNAME        - full day name, all uppercase       
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2198
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2199
        %monthName      - full month name     
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2200
        %MonthName      - full month name, first character uppercase      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2201
        %MONTHNAME      - full month name, all uppercase       
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2202
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2203
        %shortDayName   - short (abbreviated) day name     
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2204
        %ShortDayName   - short (abbreviated) day name, first character uppercase      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2205
        %SHORTDAYNAME   - short (abbreviated) day name, all uppercase       
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2206
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2207
        %shortMonthName - short (abbreviated) month name     
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2208
        %ShortMonthName - short (abbreviated) month name, first character uppercase      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2209
        %SHORTMONTHNAME - short (abbreviated) month name, all uppercase       
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2210
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2211
        %nth            - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2212
        %weekDayNth     - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2213
        %weekNth        - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')"     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2214
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2215
    |day ds dsPadded0 dsPaddedB month ms msPadded0 msPaddedB 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2216
     year weekInYear monthName shortMonthName 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2217
     dayInWeek dayOfWeek dayName shortDayName ws wsPadded0|
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2218
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2219
    day := self day.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2220
    ds := day printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2221
    dsPaddedB := day printStringLeftPaddedTo:2.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2222
    dsPadded0 := day printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2223
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2224
    month := self month.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2225
    ms := month printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2226
    msPaddedB := month printStringLeftPaddedTo:2.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2227
    msPadded0 := month printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2228
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2229
    year := self year.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2230
    weekInYear := self weekInYear.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2231
    ws := weekInYear printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2232
    wsPadded0 := weekInYear printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2233
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2234
    dayInWeek := self dayInWeek.   "/ 1 .. 7
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2235
    dayOfWeek := self dayOfWeek.   "/ 0 .. 6
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2236
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2237
    monthName := self class nameOfMonth:(self month) language:languageOrNil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2238
    dayName := self class nameOfDay:dayInWeek language:languageOrNil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2239
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2240
    aDictionary at:#day put:dsPadded0.          "/ 0-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2241
    aDictionary at:#daypadded put:dsPaddedB.    "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2242
    aDictionary at:#dayPadded put:dsPaddedB.    "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2243
    aDictionary at:#Day put:ds.                 "/ unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2244
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2245
    aDictionary at:#month put:msPadded0.        "/ 0-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2246
    aDictionary at:#monthPadded put:msPaddedB.  "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2247
    aDictionary at:#monthpadded put:msPaddedB.  "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2248
    aDictionary at:#Month put:ms.               "/ unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2249
    aDictionary at:#mon put:msPadded0.          "/ 0-padded - for backward compatibility only
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2250
    aDictionary at:#Mon put:ms.                 "/ unpadded - for backward compatibility only
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2251
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2252
    aDictionary at:#year put:year.              "/ padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2253
    aDictionary at:#week put:wsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2254
    aDictionary at:#Week put:ws.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2255
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2256
    year ~~ Date today year ifTrue:[
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2257
        aDictionary at:#yearOrTime put:(' ' , year printString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2258
    ].
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2259
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2260
    aDictionary at:$d put:dsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2261
    aDictionary at:$D put:ds.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2262
    aDictionary at:$m put:msPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2263
    aDictionary at:$M put:ms.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2264
    aDictionary at:$y put:year.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2265
    aDictionary at:$Y put:((year \\ 100)printStringLeftPaddedTo:2 with:$0).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2266
    aDictionary at:$w put:wsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2267
    aDictionary at:$W put:ws.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2268
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2269
    aDictionary at:#monthName put:monthName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2270
    aDictionary at:#monthname put:monthName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2271
    aDictionary at:#MonthName put:monthName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2272
    aDictionary at:#MONTHNAME put:monthName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2273
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2274
    aDictionary at:#dayName put:dayName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2275
    aDictionary at:#dayname put:dayName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2276
    aDictionary at:#DayName put:dayName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2277
    aDictionary at:#DAYNAME put:dayName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2278
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2279
    aDictionary at:#weekDay put:dayInWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2280
    aDictionary at:#weekday put:dayInWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2281
    aDictionary at:#weekDayUS put:dayOfWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2282
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2283
    aDictionary at:#shortDayName put:(shortDayName := self class abbreviatedNameOfDay:(self dayInWeek) language:languageOrNil).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2284
    aDictionary at:#shortdayname put:shortDayName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2285
    aDictionary at:#ShortDayName put:shortDayName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2286
    aDictionary at:#SHORTDAYNAME put:shortDayName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2287
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2288
    aDictionary at:#shortMonthName put:(shortMonthName := self class abbreviatedNameOfMonth:(self month) language:languageOrNil).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2289
    aDictionary at:#shortmonthname put:shortMonthName.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2290
    aDictionary at:#ShortMonthName put:shortMonthName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2291
    aDictionary at:#SHORTMONTHNAME put:shortMonthName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2292
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2293
    aDictionary at:#nth        put:(#('th' 'st' 'nd' 'rd' 'th' 'th' 'th' 'th' 'th' 'th') at:day \\ 10 + 1).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2294
                                     "/ 0   1    2    3    4    5    6    7    8    9
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2295
    aDictionary at:#weekDayNth put:(#('th' 'st' 'nd' 'rd' 'th' 'th' 'th') at:dayOfWeek-1 \\ 10 + 1). 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2296
                                     "/ 0   1    2    3    4    5    6      
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2297
    aDictionary at:#weekNth    put:(#('th' 'st' 'nd' 'rd' 'th' 'th' 'th' 'th' 'th' 'th') at:weekInYear \\ 10 + 1).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2298
                                     "/ 0   1    2    3    4    5    6    7    8    9     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2299
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2300
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2301
printOn:aStream
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2302
    "append a printed representation of the receiver to aStream"
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2303
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2304
    aStream nextPutAll:(self printStringFormat:(self class defaultFormatString) language:nil).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2305
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2306
    "
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2307
     Date today printOn:Transcript. Transcript cr.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2308
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2309
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2310
    "Modified: 27.8.1995 / 01:01:49 / claus"
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2311
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2312
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2313
printOn:aStream format:aFormatStringOrSqueakFormatArray
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2314
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2315
     see #addPrintBindingsTo: for a list of valid format strings"
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2316
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2317
    aFormatStringOrSqueakFormatArray isArray ifTrue:[
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2318
        "/ backward compatibility: a squeak/st80 format array
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2319
        ^ self printFormat:aFormatStringOrSqueakFormatArray on:aStream
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2320
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2321
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2322
    aStream nextPutAll:(self printStringFormat:aFormatStringOrSqueakFormatArray language:nil)
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2323
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2324
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2325
     Date today printOn:Transcript format:'%y%m%d'                                      (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2326
     Date today printOn:Transcript format:'%y-%m-%d'                                    (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2327
     Date today printOn:Transcript format:'%y-W%w'                                      (iso format - working week)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2328
     Date today printOn:Transcript format:'%d-%m-%y'                                    (european trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2329
     Date today printOn:Transcript format:'%m/%d/%y'                                    (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2330
     Date today printOn:Transcript format:'%D-%(monthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2331
     Date today printOn:Transcript format:'%D-%(MonthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2332
     Date today printOn:Transcript format:'%D-%(MONTHNAME)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2333
     Date today printOn:Transcript format:'%(DayName), %D%(nth) of %(MonthName), %y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2334
     Date today printOn:Transcript format:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2335
     Date today printOn:Transcript format:'%d%m%Y'                                      (millenium bug format - danger)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2336
     Date today printOn:Transcript format:'Today is the %(weekDay) day of the week'     
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2337
    "
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2338
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2339
     String streamContents:[:s |
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2340
        Date today printOn:s format:#(1 2 3 $/ 1 2)
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2341
     ]    
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2342
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2343
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2344
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2345
printOn:aStream format:aFormatStringOrSqueakFormatArray language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2346
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2347
     languageOrNil can only be #en or nil for the current language.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2348
     see #addPrintBindingsTo: for a list of valid format strings"
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2349
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2350
    aStream nextPutAll:(self printStringFormat:aFormatStringOrSqueakFormatArray language:languageOrNil)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2351
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2352
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2353
     Date today 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2354
        printOn:Transcript 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2355
        format:'%y%m%d'                             
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2356
        language:#en                             
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2357
    "
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2358
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2359
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2360
printOn:aStream language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2361
    "append a printed representation of the receiver to aStream.
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2362
     The argument languageOrNil can only be #en or nil for the current language."
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2363
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2364
    |format|
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2365
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  2366
    (DefaultFormats isNil or:[EnvironmentChange]) ifTrue:[
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
  2367
        self class initNames
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  2368
    ].
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2369
    format := DefaultFormats at:(languageOrNil ? Language) ifAbsent:[DefaultFormats at:#en].
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2370
    self printOn:aStream format:format language:languageOrNil.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2371
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2372
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2373
     Date today printOn:Transcript language:#en
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2374
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2375
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2376
    "Modified: / 27-08-1995 / 01:01:49 / claus"
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2377
    "Modified: / 12-03-2004 / 19:23:54 / cg"
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2378
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2379
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2380
printStringFormat:aFormatStringOrArray
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2381
    "print using a format string;
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2382
     see #addPrintBindingsTo: for a list of valid format strings"
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2383
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2384
    ^ self printStringFormat:aFormatStringOrArray language:nil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2385
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2386
    "
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2387
     Date today printStringFormat:'%y%m%d'                                      (iso format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2388
     Date today printStringFormat:'%y-%m-%d'                                    (iso format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2389
     Date today printStringFormat:'%y-W%w'                                      (iso format - working week)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2390
     Date today printStringFormat:'%d-%m-%y'                                    (european trivia format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2391
     Date today printStringFormat:'%m/%d/%y'                                    (us trivia format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2392
     Date today printStringFormat:'%D-%(monthName)-%y'                          (us trivia format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2393
     Date today printStringFormat:'%D-%(MonthName)-%y'                          (us trivia format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2394
     Date today printStringFormat:'%D-%(MONTHNAME)-%y'                          (us trivia format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2395
     Date today printStringFormat:'%(DayName), %D%(nth) of %(MonthName), %y'   
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2396
     Date today printStringFormat:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2397
     Date today printStringFormat:'%d%m%Y'                                      (millenium bug format - danger)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2398
     Date today printStringFormat:'Today is day %(weekDay) of the week'              
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2399
     Date today printStringFormat:'Today is the %(weekDay)%(weekDayNth) day of the week'     
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2400
     Date today printStringFormat:'Today is the %(Day)%(nth) day of the month'           
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2401
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2402
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2403
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2404
printStringFormat:aFormatStringOrArray language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2405
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2406
     languageOrNil can only be #en or nil for the current language.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2407
     see #addPrintBindingsTo: for a list of valid format strings"
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2408
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2409
    |dict|
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2410
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2411
    dict := IdentityDictionary new.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2412
    self addPrintBindingsTo:dict language:languageOrNil.
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2413
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2414
    ^ (aFormatStringOrArray expandPlaceholdersWith:dict)
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2415
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2416
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2417
     Date today printStringFormat:'%y%m%d'                                      (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2418
     Date today printStringFormat:'%y-%m-%d'                                    (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2419
     Date today printStringFormat:'%y-W%w'                                      (iso format - working week)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2420
     Date today printStringFormat:'%d-%m-%y'                                    (european trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2421
     Date today printStringFormat:'%m/%d/%y'                                    (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2422
     Date today printStringFormat:'%D-%(monthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2423
     Date today printStringFormat:'%D-%(MonthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2424
     Date today printStringFormat:'%D-%(MONTHNAME)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2425
     Date today printStringFormat:'%(DayName), %D%(nth) of %(MonthName), %y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2426
     Date today printStringFormat:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2427
     Date today printStringFormat:'%d%m%Y'                                      (millenium bug format - danger)
7327
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  2428
     Date today printStringFormat:'Today is day %(weekDay) of the week'              
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  2429
     Date today printStringFormat:'Today is the %(weekDay)%(weekDayNth) day of the week'     
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  2430
     Date today printStringFormat:'Today is the %(Day)%(nth) day of the month'           
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2431
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2432
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2433
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2434
storeOn:aStream
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2435
    "append a representation to aStream, from which the receiver
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2436
     can be reconstructed"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2437
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2438
    aStream nextPutAll:'('; nextPutAll:'Date day:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2439
    self day printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2440
    aStream nextPutAll:' month:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2441
    self month printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2442
    aStream nextPutAll:' year:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2443
    self year printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2444
    aStream nextPutAll:')'
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2445
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2446
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2447
     Date today storeOn:Transcript
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2448
     Date today storeString
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2449
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2450
! !
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2451
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7023
diff changeset
  2452
!Date methodsFor:'private-accessing'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2453
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2454
dateEncoding
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2455
    "the internal encoding is stricktly private, 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2456
     and should not be used outside."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2457
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2458
    ^ dateEncoding
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2459
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2460
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2461
dateEncoding:anInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2462
    "the internal encoding is stricktly private, 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2463
     and should not be used outside."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2464
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2465
    dateEncoding := anInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2466
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2467
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2468
fromOSTime:osTime
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2469
    "set my dateEncoding from an OS time.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2470
     This somewhat clumsy implementation hides the OS's date representation
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2471
     (i.e. makes this class independent of what the OS starts its time values with).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2472
     Dont use this method, the osTime representation is totally unportable."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2473
5858
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  2474
    |v y m d|
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  2475
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  2476
    v := OperatingSystem computeTimeAndDateFrom:osTime.
7512
07c56e8934f4 OS returns OSTimeInfo (instead of an Array)
Claus Gittinger <cg@exept.de>
parents: 7327
diff changeset
  2477
    y := v year.
07c56e8934f4 OS returns OSTimeInfo (instead of an Array)
Claus Gittinger <cg@exept.de>
parents: 7327
diff changeset
  2478
    m := v month.
07c56e8934f4 OS returns OSTimeInfo (instead of an Array)
Claus Gittinger <cg@exept.de>
parents: 7327
diff changeset
  2479
    d := v day.
07c56e8934f4 OS returns OSTimeInfo (instead of an Array)
Claus Gittinger <cg@exept.de>
parents: 7327
diff changeset
  2480
5858
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  2481
    dateEncoding := (((y * 100) + m) * 100) + d
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2482
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2483
    "Modified: 1.7.1996 / 15:23:12 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2484
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2485
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  2486
!Date class methodsFor:'documentation'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2487
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2488
version
8943
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
  2489
    ^ '$Header: /cvs/stx/stx/libbasic/Date.st,v 1.97 2005-09-26 15:21:18 cg Exp $'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2490
! !
6795
519894240d97 more printFormats: yearOrDate (as in unix); dayPadded and monthPadded
penk
parents: 6624
diff changeset
  2491
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2492
Date initialize!