Date.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 28 Jan 2013 21:53:19 +0000
branchjv
changeset 18017 7fef9e17913f
parent 18011 deb0c3355881
parent 14714 cebd5cc86824
child 18059 b882507b9fdf
permissions -rw-r--r--
Merged 956be83322ff and 8657c48a4c03 (branch default)
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
"
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
    12
"{ Package: 'stx:libbasic' }"
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
    13
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    14
Magnitude subclass:#Date
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    15
	instanceVariableNames:'dateEncoding'
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
    16
	classVariableNames:'DayNames MonthNames DayAbbrevs MonthAbbrevs DefaultFormats
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
    17
		ShortFormats LongFormats EnvironmentChange'
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
    18
	poolDictionaries:''
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
    19
	category:'Magnitude-Time'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
    22
!Date class methodsFor:'documentation'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    23
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    24
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    25
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    26
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
    27
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    28
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    29
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    30
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    32
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    33
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    34
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    36
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    37
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    38
documentation
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    39
"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    40
    Instances of Date represent dates as year, month and day encoded in the 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    41
    (private & hidden) instance dateEncoding. The value found there is 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    42
    year*100*100 + month*100 + day (which makes magnitude-like comparison of 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    43
    dates easy, but is not guaranteed for future versions).
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    44
    Do not depend on the internal representation.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    45
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    46
    The old representation used days since 1st Jan. 1901 internally - 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    47
    with the new implementation, it is possible to reasonably represent almost 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    48
    any Date.  (which insurance companies will like, since they can now 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    49
    represent even very old peoples birthday :-)
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
    50
    Notice: no correction for pre-Gregorian dates (< 1583) is done.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    51
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    52
    The printed representation of dates is controlled by resource definitions -
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    53
    thus national variants are already supported (see file 'resources/Date.rs').
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    54
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    55
    Compatibility notice:
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    56
        due to some historic reasons, there are some methods found twice
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    57
        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
    58
        one of the next releases, and kept for a while to support existing
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    59
        applications (the info on how these methods should be named came 
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    60
        somewhat late from the testers ..).
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    61
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    62
        Please do not use methods marked as obsolete in their comment.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    63
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    64
    Most useful methods:
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    65
1228
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    66
        Date today
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    67
        (Date today) addDays:
127d990e2f77 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    68
        (Date today) subtractDays:
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    69
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    70
    [author:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    71
        Claus Gittinger
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    72
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    73
    [see also:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    74
        Time AbstractTime
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    75
        Filename
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    76
        OperatingSystem
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    77
"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    78
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
    79
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    80
!Date class methodsFor:'initialization'!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    81
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    82
initDefaultNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    83
    "read the language specific names."
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    84
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    85
    |enDayNames enDayAbbrevs enMonthNames enMonthAbbrevs
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
    86
     enDefaultFormat enLongFormat enShortFormat |
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    87
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    88
    DayNames := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    89
    DayAbbrevs := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    90
    MonthNames := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    91
    MonthAbbrevs := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    92
    DefaultFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    93
    LongFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    94
    ShortFormats := Dictionary new.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    95
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    96
    enDayNames := #('monday'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
    97
                    'tuesday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
    98
                    'wednesday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
    99
                    'thursday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   100
                    'friday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   101
                    'saturday'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   102
                    'sunday').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   103
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   104
    enDayAbbrevs := #('mon' 
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   105
                      'tue' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   106
                      'wed'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   107
                      'thu' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   108
                      'fri' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   109
                      'sat' 
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   110
                      'sun').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   111
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   112
    enMonthNames := #('january'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   113
                      'february'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   114
                      'march'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   115
                      'april'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   116
                      'may'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   117
                      'june'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   118
                      'july'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   119
                      'august'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   120
                      'september'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   121
                      'october'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   122
                      'november'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   123
                      'december').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   124
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   125
    enMonthAbbrevs := #('jan'
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   126
                        'feb'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   127
                        'mar'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   128
                        'apr'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   129
                        'may'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   130
                        'jun'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   131
                        'jul'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   132
                        'aug'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   133
                        'sep'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   134
                        'oct'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   135
                        'nov'
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   136
                        'dec').
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   137
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   138
    DayNames at:#'en' put:enDayNames.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   139
    DayAbbrevs at:#'en' put:enDayAbbrevs.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   140
    MonthNames at:#'en' put:enMonthNames.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   141
    MonthAbbrevs at:#'en' put:enMonthAbbrevs.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   142
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   143
    DefaultFormats at:#'en' put:(enDefaultFormat := '%d-%m-%y').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   144
    ShortFormats at:#'en' put:(enShortFormat := '%d-%m-%y').
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   145
    LongFormats at:#'en' put:(enLongFormat := '%(dayName), %d-%m-%y').
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   146
12105
cf33361e1ff2 changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12097
diff changeset
   147
    "/ take the "master" language here, for the caching
cf33361e1ff2 changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12097
diff changeset
   148
    EnvironmentChange := (Smalltalk language asSymbol ~~ #'en').
8145
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
    "
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   151
     Date initDefaultNames
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   152
    "
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   153
!
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   154
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   155
initNames
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   156
    "read the language specific names."
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   157
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   158
    |lang|
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   159
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   160
    DayNames isNil ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   161
        self initDefaultNames.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   162
    ].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   163
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   164
    lang := Smalltalk language asSymbol.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   165
    lang ~~ #'en' ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   166
        self initNamesForLanguage: lang.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   167
    ].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   168
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   169
    EnvironmentChange := false
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   170
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   171
    "
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   172
     Date initNames
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   173
    "
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   174
!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   175
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   176
initNamesForLanguage:language
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   177
    "read the language specific names."
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   178
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   179
    |resources lang 
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   180
     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
   181
     enDefaultFormat enLongFormat enShortFormat may|
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   182
8943
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   183
    DayNames isNil ifTrue:[
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   184
        self initDefaultNames.
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   185
    ].
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   186
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   187
    lang := language asSymbol.
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   188
    lang ~~ #'en' ifTrue:[
14624
58ad30334e84 care for libview not being present (tinytalk)
Claus Gittinger <cg@exept.de>
parents: 14498
diff changeset
   189
	ResourcePack notNil ifTrue:[ "/ guard for tinytalk (no libview)
58ad30334e84 care for libview not being present (tinytalk)
Claus Gittinger <cg@exept.de>
parents: 14498
diff changeset
   190
            resources := ResourcePack forPackage:'stx:libbasic' resourceFileName:(language,'.rs') cached:false.
58ad30334e84 care for libview not being present (tinytalk)
Claus Gittinger <cg@exept.de>
parents: 14498
diff changeset
   191
	].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   192
        resources notNil ifTrue:[
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   193
            enDayNames := DayNames at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   194
            enDayAbbrevs := DayAbbrevs at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   195
            enMonthNames := MonthNames at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   196
            enMonthAbbrevs := MonthAbbrevs at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   197
            monthAbbrevKeys := enMonthAbbrevs copy.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   198
            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
   199
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   200
            enDefaultFormat := DefaultFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   201
            enShortFormat := ShortFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   202
            enLongFormat := LongFormats at:#'en'.
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   203
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   204
            DefaultFormats at:lang put:(resources at:'DATEFORMAT' default:enDefaultFormat).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   205
            ShortFormats at:lang put:(resources at:'SHORTDATEFORMAT' default:enShortFormat).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   206
            LongFormats at:lang put:(resources at:'LONGDATEFORMAT' default:enLongFormat).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   207
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   208
            DayNames at:lang put:(resources array:enDayNames).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   209
            DayAbbrevs at:lang put:(resources array:enDayAbbrevs).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   210
            MonthNames at:lang put:(resources array:enMonthNames).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   211
            MonthAbbrevs at:lang put:(resources array:monthAbbrevKeys).
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   212
            "/ may needs special care (same key for long and short name)
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   213
            may := resources string:'MAY_ABBREV' default:nil.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   214
            may isNil ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   215
                may := resources string:'may'.
8196
3b3407d69207 special care for may (same key for long & short name)
Claus Gittinger <cg@exept.de>
parents: 8179
diff changeset
   216
            ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   217
            (MonthAbbrevs at:lang) at:5 put:may.
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   218
        ].
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   219
    ].
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   220
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   221
    "
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   222
     Date initNamesForLanguage:#de.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   223
     Date initNamesForLanguage:#fr.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   224
     Date initNamesForLanguage:#es.
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   225
    "
13736
599f4686a493 comment/format in: #initNamesForLanguage:
Claus Gittinger <cg@exept.de>
parents: 13509
diff changeset
   226
599f4686a493 comment/format in: #initNamesForLanguage:
Claus Gittinger <cg@exept.de>
parents: 13509
diff changeset
   227
    "Modified (format): / 28-09-2011 / 15:56:41 / cg"
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   228
!
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   229
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   230
initialize
8943
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   231
    DayNames isNil ifTrue:[
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   232
        self initDefaultNames.
eff0b1c83c65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8878
diff changeset
   233
    ].
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   234
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   235
    Smalltalk addDependent:self.
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   236
    Language ~= 'en' ifTrue:[
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   237
        EnvironmentChange := true
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   238
    ]
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   239
! !
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
   240
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
   241
!Date class methodsFor:'instance creation'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   242
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   243
fromDays:dayCount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   244
    "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
   245
     (i.e. 'Date fromDays:0' returns 1st Jan. 1901).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   246
     Date asDays is the reverse operation.
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   247
     Added for GNU/ST-80 compatibility"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   248
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   249
    |year rest d yearIncrement|
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   250
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   251
    "approx. year"
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   252
    year := (dayCount // 366) + 1901.
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   253
    dayCount < 0 ifTrue:[
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   254
        rest := dayCount negated - (self yearAsDays:year) + 1. "+1 for ST-80 compatibility"
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   255
        yearIncrement := -1.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   256
    ] ifFalse:[
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   257
        rest := dayCount - (self yearAsDays:year) + 1. "+1 for ST-80 compatibility"
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   258
        yearIncrement := 1.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   259
    ].
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   260
    rest > 365 ifTrue:[
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   261
        [d := self daysInYear:year. rest > d] whileTrue:[
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   262
            "adjust"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   263
            year := year + yearIncrement.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   264
            rest := rest - d.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   265
        ].
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   266
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   267
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   268
    ^ self newDay:rest year:year
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
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   271
     Date fromDays:0     -> 1 jan 1901
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   272
     Date fromDays:365   -> 1 jan 1902
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   273
     Date fromDays:730   -> 1 jan 1903
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   274
     Date fromDays:1095  -> 1 jan 1904
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   275
     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
   276
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   277
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   278
    "Modified: 1.7.1996 / 14:24:25 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   279
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   280
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   281
newDay:day month:month year:year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   282
    "return a new Date, given the day, month and year.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   283
     For your convenience, month may be either an integer 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   284
     or the months name as a string. 
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   285
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   286
     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
   287
              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
   288
              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
   289
              (see those, for example readFrom:onError:)"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   290
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   291
    |monthIndex ok|
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   292
8446
e19765545de6 Dont generate a warning for years between -1 and -99
Stefan Vogel <sv@exept.de>
parents: 8247
diff changeset
   293
    (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
   294
        '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
   295
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   296
    month isInteger ifTrue:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   297
        monthIndex := month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   298
    ] ifFalse:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   299
        monthIndex := self indexOfMonth:month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   300
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   301
    (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
   302
        ok := self leapYear:year
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   303
    ] ifFalse:[
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   304
        ok := day <= (self daysInMonth:month forYear:year)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   305
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   306
    ((day > 0) and:[ok]) ifTrue:[
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   307
        ^ self basicNew year:year month:monthIndex day:day.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   308
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   309
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   310
    "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
   311
     invalid year/month/day combination;
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   312
     Such as 29-feb-year, where year is no leap year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   313
    "
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   314
    self conversionErrorSignal raiseErrorString:' - invalid date'.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   315
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   316
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   317
     Date newDay:8  month:'may' year:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   318
     Date newDay:8  month:5     year:1994
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   319
     Date newDay:29 month:'feb' year:2004
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   320
     Date newDay:29 month:'feb' year:2003
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   321
     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
   322
     Date newDay:28 month:'feb' year:95  
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   323
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   324
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   325
    "Modified: 19.4.1996 / 15:28:15 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   326
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   327
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   328
newDay:dayInYear year:year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   329
    "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
   330
     See also: Date today / Time now / Timestamp now.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   331
     ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   332
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   333
    |monthAndDay|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   334
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   335
    (dayInYear between:1 and:365) ifFalse:[
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   336
        (dayInYear > 0 or:[(dayInYear == 366) and:[self leapYear:year]]) ifFalse:[
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   337
            "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   338
             this error is triggered, when you try to create a
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   339
             day from an invalid day-in-year; 
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   340
             for example, 366 in a non-leap year.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   341
             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
   342
            "
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   343
            ^ self conversionErrorSignal raiseErrorString:' - invalid day in year'.
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   344
        ]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   345
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   346
    monthAndDay := self monthAndDayFromDayInYear:dayInYear forYear:year.
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   347
    ^ self basicNew year:year month:(monthAndDay at:1) day:(monthAndDay at:2)  
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   348
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   349
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   350
     Date newDay:150 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   351
     Date newDay:1 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   352
     Date newDay:1 year:1901
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   353
     Date newDay:1 year:1902
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   354
     Date newDay:365 year:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   355
     Date newDay:366 year:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   356
     Date newDay:365 year:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   357
     Date newDay:366 year:1994
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
   358
     Date newDay:0 year:1994
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   359
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   360
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   361
    "Modified: 1.7.1996 / 14:22:24 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   362
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   363
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   364
readFrom:aStringOrStream onError:exceptionBlock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   365
    "return a new Date, reading a printed representation from aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   366
     Notice, that this is not the storeString format and 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   367
     is different from the format expected by readFrom:.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   368
     BUG:
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   369
       This method handles american format (i.e. month/day/year),
12168
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   370
       common format with letter month in the middle (10 December 2007)
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   371
       and ISO format (yyyy-mm-dd) - as long as yyyy is > 12.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   372
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   373
       It does not handle the german/french and other dd-mm-yyyy.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   374
       use readFrom:printFormat:onError: for this."
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   375
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   376
    ^ [
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   377
        |str items first second month day year|
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   378
        str := aStringOrStream readStream.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   379
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   380
        items := #(1 2 3) collect:[:idx|
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   381
            [str peek isLetterOrDigit] whileFalse:[str next].
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   382
            (str peek isDigit) ifTrue:[
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   383
                Integer readFrom:str
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   384
            ] ifFalse:[
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   385
                str nextAlphaNumericWord
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   386
            ].
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   387
        ].
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   388
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   389
        first := items at:1.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   390
        second := items at:2.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   391
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   392
        (first isInteger and:[second isInteger and:[first > 12]]) ifTrue:[
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   393
            "ISO Date: yyyy-mm-dd"
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   394
            year := first.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   395
            month := second.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   396
            day := items at:3.
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   397
        ] ifFalse:[
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   398
            second isInteger ifTrue:[
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   399
                "must be an american date mm/dd/yy"
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   400
                month := first.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   401
                day := second.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   402
            ] ifFalse:[
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   403
                "3 Dec 2007"
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   404
                day := first.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   405
                month := second.
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   406
            ].
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   407
            year := items at:3.
972
76cd3ca837e4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   408
        ].
6952
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   409
        (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
   410
            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
   411
        ].
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   412
        self newDay:day month:month year:year
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   413
    ] on:Error do:exceptionBlock.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   414
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   415
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   416
     Date readFromString:'31 December 1992'  
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   417
     Date readFrom:'19:11:1999'  
10760
70bdfdb519e3 #readFrom: handles ISO date too: yyyy-mm-dd
Stefan Vogel <sv@exept.de>
parents: 10056
diff changeset
   418
     Date readFrom:'2007-12-31' onError:'wrong date'.  
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   419
     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
   420
     Date readFromString:'12/31/1992'        
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   421
     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
   422
     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
   423
     Date readFromString:'12/31/01'        
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   424
     Date readFromString:'15.4.1992'         -> german; leads to an error
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   425
     Date readFromString:'10.4.1992'         -> german; leads to a wrong date
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   426
     Date readFromString:'10.4.1992' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   427
     Date readFromString:'32.4.1992' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   428
     Date readFromString:'fooBar' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   429
     Date readFromString:'10.4' onError:['wrong date']
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   430
     Date readFromString:'10041999' onError:['wrong date']  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   431
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   432
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   433
    "Created: 16.11.1995 / 22:50:17 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   434
    "Modified: 8.10.1996 / 19:25:39 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   435
!
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
readFrom:aStringOrStream printFormat:aSqueakFormatArrayOrFormatString
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   438
    "return a new Date, reading a printed representation from aStream.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   439
     aSqueakFormatArrayOrFormatString may either be a squeak formatArray
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   440
         1   day position (1, 2 or 3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   441
         2   month position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   442
         3   year position (1..3)
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   443
     or a formatString (see printing instance protocol)."
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   444
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   445
    ^ self 
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   446
        readFrom:aStringOrStream
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   447
        printFormat:aSqueakFormatArrayOrFormatString 
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
   448
        onError:[ self conversionErrorSignal raise ]
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   449
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   450
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   451
     Date readFrom:'19:11:1999' printFormat:#( 1 2 3 )
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   452
     Date readFrom:'19-nov-1999' printFormat:#( 1 2 3 )
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   453
     Date readFrom:'19:11:1999' printFormat:#( 2 1 3 )  -> exception: wrong month
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   454
     Date readFrom:'5:12:1999' printFormat:#( 2 1 3 )  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   455
     Date readFrom:'may-12-1999' printFormat:#( 2 1 3 )  
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   456
     Date readFrom:'1999 may 12' printFormat:#( 3 2 1 )  
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   457
     Date readFrom:'12/31/2001' printFormat:#( 2 1 3 ) 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   458
     Date readFrom:' 31.08.2001' printFormat:#( 1 2 3 )    
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   459
     Date readFrom:' 31.dec.2001' printFormat:#( 1 2 3 )    
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   460
     Date readFrom:' 31.Dec.2001' printFormat:#( 1 2 3 )    
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   461
     Date readFrom:' 31.dez.2001' printFormat:#( 1 2 3 )    
12168
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   462
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   463
     Date readFrom:'31/12/01' printFormat:'%d %m %y' onError:'fail'       
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   464
     Date readFrom:'12/01' printFormat:'%m %y' onError:'fail'       
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   465
     Date readFrom:'01' printFormat:'%y' onError:'fail'        
d09cdbb899ff comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12105
diff changeset
   466
     Date readFrom:'30.01' printFormat:'%d %m' onError:'fail'       
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   467
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   468
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   469
    "Created: 16.11.1995 / 22:50:17 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   470
    "Modified: 8.10.1996 / 19:25:39 / cg"
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   471
!
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   472
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   473
readFrom:aStringOrStream printFormat:aSqueakFormatArrayOrFormatString language:languageOrNil onError:exceptionBlock
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   474
    "return a new Date, reading a printed representation from aStream.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   475
     aSqueakFormatArrayOrFormatString may either be a squeak formatArray
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   476
         1   day position (1, 2 or 3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   477
         2   month position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   478
         3   year position (1..3)
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   479
     or a formatString (see printing instance protocol).
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   480
     For now %d, %m, %monthName, %shortMonthName and %y are supported in the formatString.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   481
     The formatString can have any of these characters '-.:,;/' as separator. 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   482
     The formatString can also use a space as separator (for  ex. '%d %m %y') and any separator will be allowed.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   483
     However, when a character separator is defined, only that separator will be expected.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   484
     TODO: make this a general feature of all DateAndTime classes.
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   485
    "
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   486
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   487
    |str day month year somePartAssoc|
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   488
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   489
    str := aStringOrStream readStream.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   490
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   491
    aSqueakFormatArrayOrFormatString isArray 
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   492
        ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   493
            [
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   494
                |arg|
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   495
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   496
                arg := Array new:3.
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   497
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   498
                1 to:3 do:[:i||v|
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   499
                    [str peek isLetterOrDigit] whileFalse:[str next].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   500
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   501
                    v := (str peek isDigit) ifTrue:[Integer readFrom:str]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   502
                                           ifFalse:[str nextAlphaNumericWord].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   503
                    arg at:i put:v
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   504
                ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   505
                year := (arg at:(aSqueakFormatArrayOrFormatString at:3)).
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   506
                day := arg at:(aSqueakFormatArrayOrFormatString at:1).
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   507
                month := arg at:(aSqueakFormatArrayOrFormatString at:2).
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   508
            ] on:Error do:[:ex| ^ exceptionBlock value].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   509
        ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   510
            [
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   511
                |formatStream fc c sel|
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   512
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   513
                formatStream := aSqueakFormatArrayOrFormatString readStream.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   514
                
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   515
                [formatStream atEnd] whileFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   516
                    fc := formatStream next.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   517
                    fc == $% ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   518
                        sel := ''.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   519
                        (fc := formatStream peek) notNil ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   520
                            fc = $( ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   521
                                formatStream next.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   522
                                sel := formatStream upTo:$)
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   523
                            ] ifFalse:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   524
                                sel := sel , (formatStream throughAnyForWhich:[:ch | ch isLetter])
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   525
                            ]
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   526
                        ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   527
                        somePartAssoc := self readDatePartFrom:str format:sel language:languageOrNil.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   528
                        somePartAssoc key == #day ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   529
                            day := somePartAssoc value.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   530
                        ] ifFalse:[
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   531
                            somePartAssoc key == #month ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   532
                                month := somePartAssoc value.
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   533
                            ] ifFalse:[
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   534
                                somePartAssoc key == #year ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   535
                                    year := somePartAssoc value.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   536
                                ] ifFalse:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   537
                                    self error:'oops'
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   538
                                ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   539
                            ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   540
                        ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   541
                    ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   542
                        fc == Character space ifTrue:[
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   543
                            "/ Skip most possible separator characters 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   544
                            "/ (if not enought, should check for isNationalAlphaNumeric instead)
12814
3a2276a9de49 changed: #readFrom:printFormat:language:onError:
fm
parents: 12812
diff changeset
   545
                            [(c := str peek) isSeparator or:[ '-.:,;/\|?<>[]{}()#@!!$&^+=~*_"`' includes:c ] ] whileTrue:[ str next ].    
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   546
                        ] ifFalse:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   547
                            str skipSeparators.
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   548
                            str next == fc ifFalse:[^ exceptionBlock value].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   549
                            str skipSeparators.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   550
                        ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   551
                    ]
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   552
                ].
7673
1e802ebb66ea Category change
Stefan Vogel <sv@exept.de>
parents: 7651
diff changeset
   553
            ] on:Error do:[:ex| ^ exceptionBlock value].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   554
        ].
7649
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   555
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   556
    day isNil ifTrue:[ day := 1 ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   557
    month isNil ifTrue:[ month := 1 ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   558
    year isNil ifTrue:[ year := Date today year ].
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   559
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   560
    (year between:0 and:99) ifTrue:[
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   561
        year := UserPreferences current twoDigitDateHandler value:year.
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   562
    ].
8878
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   563
    [
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   564
        ^ self newDay:day month:month year:year.
7c7825a1f269 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8795
diff changeset
   565
    ] on:Error do:[:ex| ^ exceptionBlock value].
4997
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   566
9104a31610cf checkin from browser
tm
parents: 4462
diff changeset
   567
    "
6624
886265eff14c #readFrom:onError: - avoid block creation
Stefan Vogel <sv@exept.de>
parents: 6419
diff changeset
   568
     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
   569
     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
   570
     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
   571
     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
   572
     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
   573
     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
   574
     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
   575
     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
   576
     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
   577
     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
   578
     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
   579
     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
   580
a6704f70a3cf conversion of year in [00..99] to 1900.. no longer done
Claus Gittinger <cg@exept.de>
parents: 6872
diff changeset
   581
     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
   582
     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
   583
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   584
     Date readFrom:'31/12/01' printFormat:'%d %m %y' onError:'fail'       
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   585
     Date readFrom:'12/01' printFormat:'%m %y' onError:'fail'       
1e907123a5c2 readFrom with formatString.
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
   586
     Date readFrom:'01' printFormat:'%y' onError:'fail'       
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   587
     Date readFrom:'30.01' printFormat:'%d %m' onError:'fail'     
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   588
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   589
     Date readFrom:'3-3-1995' printFormat:'%d %m %y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   590
     Date readFrom:'3-März-1995' printFormat:'%d %monthName %y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   591
     Date readFrom:'3-mär-1995' printFormat:'%d %shortMonthName %y' language: #de onError:'fail'   
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   592
     Date readFrom:'3/mär/1995' printFormat:'%d %shortMonthName %y' language: #de onError:'fail'  
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   593
     Date readFrom:'3/mär/1995' printFormat:'%d-%shortMonthName-%y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   594
     Date readFrom:'3-dez-1995' printFormat:'%d %shortMonthName %y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   595
     Date readFrom:'3-Dez-1995' printFormat:'%d %shortMonthName %y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   596
     Date readFrom:'3-Dezember-1995' printFormat:'%d %monthName %y' language: #de onError:'fail'          
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
   597
4421
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   598
    "
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   599
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   600
    "Created: 16.11.1995 / 22:50:17 / cg"
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   601
    "Modified: 8.10.1996 / 19:25:39 / cg"
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   602
!
9ecd9ba9faa4 added inverse to mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4413
diff changeset
   603
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   604
readFrom:aStringOrStream printFormat:aSqueakFormatArrayOrFormatString onError:exceptionBlock
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   605
    "return a new Date, reading a printed representation from aStream.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   606
     aSqueakFormatArrayOrFormatString may either be a squeak formatArray
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   607
         1   day position (1, 2 or 3)
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   608
         2   month position (1..3)
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   609
         3   year position (1..3)
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   610
     or a formatString (see printing instance protocol).
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   611
     All of the %-formats as in the printString are supported here.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   612
     (i.e. %d, %m and %y, %shortMonthName and %monthName)
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   613
     TODO: make this a general feature of all DateAndTime classes.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   614
    "
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   615
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   616
    ^ self
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   617
        readFrom:aStringOrStream 
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   618
        printFormat:aSqueakFormatArrayOrFormatString 
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   619
        language:nil 
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   620
        onError:exceptionBlock
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   621
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   622
    "
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   623
     Date readFrom:'31 December 1992' printFormat:#(1 2 3) onError:'fail' 
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   624
     Date readFrom:'19:11:1999' printFormat:#(1 2 3) onError:'fail'  
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   625
     Date readFrom:'December, 5 1992' printFormat:#(1 2 3) onError:'fail' 
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   626
     Date readFrom:'3-jan-95' printFormat:#(1 2 3) onError:'fail'          
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   627
     Date readFrom:'12/31/1992' printFormat:#(1 2 3) onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   628
     Date readFrom:'15.4.1992' printFormat:#(1 2 3) onError:'wrong date'  -> german
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   629
     Date readFrom:'10.4.1992' printFormat:#(1 2 3) onError:'fail'        -> german
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   630
     Date readFrom:'10.4.1992' printFormat:#(1 2 3) onError:['wrong date']
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   631
     Date readFrom:'32.4.1992' printFormat:#(1 2 3) onError:['wrong date']
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   632
     Date readFrom:'fooBar' printFormat:#(1 2 3) onError:['wrong date']
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   633
     Date readFrom:'10.4' printFormat:#(1 2 3) onError:['wrong date']
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   634
     Date readFrom:'10041999' printFormat:#(1 2 3) onError:['wrong date']  
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   635
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   636
     Date readFrom:'31/12/92' printFormat:#(1 2 3) onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   637
     Date readFrom:'31/12/01' printFormat:#(1 2 3) onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   638
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   639
     Date readFrom:'31/12/01' printFormat:'%d %m %y' onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   640
     Date readFrom:'12/01' printFormat:'%m %y' onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   641
     Date readFrom:'01' printFormat:'%y' onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   642
     Date readFrom:'30.01' printFormat:'%d %m' onError:'fail'       
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   643
    "
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   644
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   645
    "Created: 16.11.1995 / 22:50:17 / cg"
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   646
    "Modified: 8.10.1996 / 19:25:39 / cg"
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   647
!
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
   648
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   649
today
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   650
    "return a date, representing today.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   651
     See also: Time now / Timestamp now."
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   652
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   653
    ^ self fromOSTime:(OperatingSystem getOSTime)
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 today
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   657
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
   658
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
   659
    "Modified: 1.7.1996 / 15:20:16 / cg"
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   660
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   661
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   662
tomorrow
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   663
    "return a date, representing tomorrow.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   664
     See also: Time now / Timestamp now."
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   665
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   666
    ^ Date today addDays:1
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   667
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   668
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   669
     Date tomorrow 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   670
     Date tomorrow dayInWeek
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   671
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   672
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   673
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   674
utcToday
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   675
    "return a date, representing today.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   676
     See also: Time now / Timestamp now."
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   677
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   678
    ^ self new fromUtcOSTime:(OperatingSystem getOSTime)
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   679
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   680
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   681
     Date today
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   682
     Date utcToday
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   683
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   684
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   685
    "Modified: 1.7.1996 / 15:20:16 / cg"
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   686
!
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
   687
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   688
yesterday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   689
    "return a date, representing yesterday.
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
   690
     See also: Time now / Timestamp now."
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   691
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   692
    ^ Date today subtractDays:1
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   693
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   694
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   695
     Date yesterday 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   696
     Date yesterday dayInWeek
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
   697
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   698
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   699
7299
ae1b90fe7c4f category
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   700
!Date class methodsFor:'Compatibility-Dolphin'!
6872
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   701
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   702
newDay:day monthIndex:month year:year
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   703
    ^ self newDay:day month:month year:year
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   704
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   705
    "
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   706
     Date newDay:8 monthIndex:5 year:1993
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   707
    "
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   708
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   709
    "Modified: 19.4.1996 / 15:28:15 / cg"
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   710
! !
c6e1e2bce9e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   711
7646
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   712
!Date class methodsFor:'Compatibility-ST80'!
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   713
7648
61b7826a9a0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7646
diff changeset
   714
newDay:day monthNumber:monthIndex year:year
7646
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   715
    "ST80 compatibility"
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   716
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   717
    ^ self newDay:day month:monthIndex year:year
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   718
! !
94ae479eedbb compatibility
Claus Gittinger <cg@exept.de>
parents: 7512
diff changeset
   719
7299
ae1b90fe7c4f category
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   720
!Date class methodsFor:'Compatibility-Squeak'!
7005
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   721
11815
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   722
current
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   723
    "return the current date"
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   724
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   725
    ^ self today
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   726
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   727
    "
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   728
     Date current
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   729
    "
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   730
!
b9fce735fa98 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11787
diff changeset
   731
7005
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   732
fromSeconds:seconds
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   733
    "Answer an instance of me which is 'seconds' seconds after January 1, 1901."
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   734
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   735
    | secondsInDay |
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   736
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   737
    secondsInDay := 24 * 60 * 60.
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   738
    ^self fromDays: seconds // secondsInDay
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   739
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   740
    "
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   741
     Date fromSeconds:0
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   742
     Date fromSeconds:(24 * 60 * 60 * 365)
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   743
    "
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   744
!
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   745
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   746
readMMDDYYYYFrom:aStringOrStream onError:exceptionBlock
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   747
    "return a new Date, reading a printed representation from aStream.
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   748
     Notice, that this is not the storeString format and 
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   749
     is different from the format expected by readFrom:"
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   750
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   751
    ^ [
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   752
        |str monthString month dayString day year yearString|
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   753
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   754
        str := aStringOrStream readStream.
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   755
        monthString := str next:2.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   756
        dayString := str next:2.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   757
        yearString := str next:4.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   758
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   759
        day := Integer readFrom:dayString.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   760
        month := Integer readFrom:monthString.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   761
        year := Integer readFrom:yearString.
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   762
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   763
        self newDay:day month:month year:year
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   764
    ] on:Error do:exceptionBlock
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   765
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   766
    "
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   767
     Date readMMDDYYYYFrom:'10041999' onError:['wrong date']  
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   768
     Date readMMDDYYYYFrom:'100419' onError:['wrong date']  
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   769
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   770
     Date readMMDDYYYYFrom:'10040001' onError:['wrong date']  
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   771
    "
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   772
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   773
    "Created: 16.11.1995 / 22:50:17 / cg"
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   774
    "Modified: 8.10.1996 / 19:25:39 / cg"
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   775
!
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   776
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   777
readYYYYMMDDFrom:aStringOrStream onError:exceptionBlock
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   778
    "return a new Date, reading a printed representation from aStream.
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   779
     Notice, that this is not the storeString format and 
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   780
     is different from the format expected by readFrom:"
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   781
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   782
    ^ [
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   783
        |str monthString month dayString day yearString year|
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   784
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   785
        str := aStringOrStream readStream.
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   786
        yearString := str next:4.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   787
        monthString := str next:2.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   788
        dayString := str next:2.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   789
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   790
        day := Integer readFrom:dayString.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   791
        month := Integer readFrom:monthString.
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   792
        year := Integer readFrom:yearString.
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   793
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   794
        self newDay:day month:month year:year
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   795
    ] on:Error do:exceptionBlock
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   796
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   797
    "
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   798
     Date readYYYYMMDDFrom:'19991004' onError:['wrong date']  
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
   799
     Date readYYYYMMDDFrom:'911004' onError:['wrong date']  
11181
591c81b496c4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11176
diff changeset
   800
    "
7005
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   801
! !
e8392cfd4341 added fromSeconds
penk
parents: 6976
diff changeset
   802
11553
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   803
!Date class methodsFor:'change & update'!
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   804
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   805
update:something with:aParameter from:changedObject
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   806
    ((something == #Language) or:[something == #LanguageTerritory]) ifTrue:[
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   807
        "just remember change for next access"
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   808
        EnvironmentChange := true
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   809
    ]
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   810
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   811
    "Created: 15.6.1996 / 15:19:25 / cg"
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   812
! !
5f6a4bccb7e7 category
Claus Gittinger <cg@exept.de>
parents: 11350
diff changeset
   813
11127
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   814
!Date class methodsFor:'error handling'!
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   815
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   816
conversionErrorSignal
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   817
    "return the signal used for conversion error handling"
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   818
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   819
    ^ DateConversionError
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   820
! !
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   821
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
   822
!Date class methodsFor:'general queries'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   823
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   824
abbreviatedNameOfDay:dayIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   825
    "given a day index (1..7), return the abbreviated name
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   826
     of the day"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   827
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   828
    ^ self abbreviatedNameOfDay:dayIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   829
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   830
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   831
     Date abbreviatedNameOfDay:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   832
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   833
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   834
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   835
abbreviatedNameOfDay:dayIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   836
    "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
   837
     of the day.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   838
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   839
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   840
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   841
    ^ (self dayAbbrevsForLanguage:lang) at:dayIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   842
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   843
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   844
     Date abbreviatedNameOfDay:4 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   845
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   846
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   847
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   848
abbreviatedNameOfMonth:monthIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   849
    "given a month index (1..12), return the abbreviated name
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   850
     of the month"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   851
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   852
    ^ self abbreviatedNameOfMonth:monthIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   853
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   854
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   855
     Date abbreviatedNameOfMonth:11
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   856
     Date abbreviatedNameOfMonth:12
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   857
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   858
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   859
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   860
abbreviatedNameOfMonth:monthIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   861
    "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
   862
     of the month.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   863
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   864
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   865
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   866
    ^ (self monthAbbrevsForLanguage:lang) at:monthIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   867
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   868
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   869
     Date abbreviatedNameOfMonth:11 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   870
     Date abbreviatedNameOfMonth:12 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   871
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   872
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   873
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   874
dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   875
    "return an array containing the date and time of now"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   876
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   877
    ^ Time dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   878
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   879
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   880
     Date dateAndTimeNow
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   881
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   882
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   883
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   884
dayOfFirstWeekInYear:aYear
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   885
    "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
   886
     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
   887
     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
   888
     (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
   889
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   890
    |day dayInWeekOf1stJan firstThursday firstDayInWeek|
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   891
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   892
    "/ find the first thursday ...
11127
c90d2486fe26 onversion errors
Claus Gittinger <cg@exept.de>
parents: 11079
diff changeset
   893
    day := Date newDay:1 year:aYear.
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   894
    dayInWeekOf1stJan := day dayInWeek.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   895
    dayInWeekOf1stJan > 4 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   896
        firstThursday := day addDays:(4 - dayInWeekOf1stJan + 7).
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   897
    ] ifFalse:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   898
        firstThursday := day addDays:(4 - dayInWeekOf1stJan).
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   899
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   900
    "/ back to the preceeding monday
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   901
    firstDayInWeek := firstThursday subtractDays:3.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   902
    ^ firstDayInWeek
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   903
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   904
    "
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
   905
     Date newDay:1 year:1900  
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
   906
     Date dayOfFirstWeekInYear:1900  
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   907
     Date dayOfFirstWeekInYear:1998   
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   908
     Date dayOfFirstWeekInYear:1999    
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   909
     Date dayOfFirstWeekInYear:2000  
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   910
     Date dayOfFirstWeekInYear:2001   
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   911
    "
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   912
!
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
   913
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   914
dayOfWeek:dayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   915
    "given the name of a day (either string or symbol),
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   916
     return the day-index (1 for monday; 7 for sunday).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   917
     Return 0 for invalid day name"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   918
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   919
    |d|
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   920
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   921
    d := self dayOfWeek:dayName language:nil.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   922
    d == 0 ifTrue:[
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   923
        d := self dayOfWeek:dayName language:'en'.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   924
    ].
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   925
    ^ d
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   926
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   927
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   928
     Date dayOfWeek:'wednesday' 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   929
     Date dayOfWeek:'Wednesday' 
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
   930
     Date dayOfWeek:'Mittwoch' 
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   931
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   932
!
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   933
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   934
dayOfWeek:dayName language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   935
    "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
   936
     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
   937
     Return 0 for invalid day name.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   938
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   939
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   940
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   941
    |idx langDayNames|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   942
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   943
    langDayNames := self dayNamesForLanguage:lang.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   944
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   945
    idx := langDayNames indexOf:dayName.
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   946
    idx == 0 ifTrue:[
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   947
        idx := langDayNames indexOf:dayName asLowercase.
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   948
    ].
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
   949
    ^ idx
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   950
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   951
    "
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   952
     Date dayOfWeek:'wednesday' language:'en'
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
   953
     Date dayOfWeek:'Wednesday' language:'en'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   954
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   955
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   956
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   957
daysInMonth:month forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   958
    "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
   959
     of days this month has (modified GNU).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   960
     return 0 if the month name was invalid.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   961
     For your convenience, month maybe an integer or name-string."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   962
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   963
    |monthIndex "{ Class: SmallInteger }"|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   964
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   965
    month isInteger ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   966
	monthIndex := month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   967
    ] ifFalse:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   968
	monthIndex := self indexOfMonth:month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   969
    ].
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
    ^ self daysInMonthIndex:monthIndex forYear:yearInteger
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
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   974
     Date daysInMonth:2 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   975
     Date daysInMonth:2 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   976
     Date daysInMonth:'feb' forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   977
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   978
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   979
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   980
daysInYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   981
    "return the number of days in a year"
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
    (self leapYear:yearInteger) ifTrue:[^ 366].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   984
    ^ 365
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 daysInYear:1900  
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   988
     Date daysInYear:1901 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   989
     Date daysInYear:1904 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   990
     Date daysInYear:1980 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   991
     Date daysInYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   992
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   993
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   995
daysUntilMonth:month forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   996
    "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
   997
     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
   998
     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
   999
     For your convenience, month maybe an integer or name-string."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1000
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1001
    |monthIndex|
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1002
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1003
    month isInteger ifTrue:[
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1004
        monthIndex := month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1005
    ] ifFalse:[
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1006
        monthIndex := self indexOfMonth:month
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1007
    ].
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1008
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1009
    ^ self daysUntilMonthIndex:monthIndex forYear:yearInteger
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1010
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1011
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1012
     Date daysUntilMonth:'feb' forYear:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1013
     Date daysUntilMonth:'jan' forYear:1993
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1014
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1015
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1016
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1017
defaultFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1018
    (DefaultFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1019
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1020
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1021
    ^ DefaultFormats at:Language ifAbsent:(DefaultFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1022
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1023
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1024
     Date today printStringFormat:(Date defaultFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1025
     Date today printStringFormat:(Date longFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1026
     Date today printStringFormat:(Date shortFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1027
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1028
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1029
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1030
firstDayOfYear:inYear
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1031
    "return the weekDay-index of the 1st-january of the given year.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1032
     1->monday, 2->tuesday, ... 7->sunday"
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1033
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1034
    | t d |
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1035
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1036
    ((inYear < 1) or:[ inYear > 9999]) ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1037
        ^ 0.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1038
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1039
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1040
    "/ normal Gregorian calendar: one extra day per four years 
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1041
    t := 4 + inYear + ((inYear + 3) // 4).
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1042
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1043
    inYear > 1800 ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1044
        "/ Julian calendar: regular Gregorian less 3 days per 400
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1045
        t := t - ((inYear - 1701) // 100) + ((inYear - 1601) // 400).
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1046
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1047
    inYear > 1752 ifTrue:[
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1048
        "/ calendar changeover
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1049
        t := t + 3.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1050
    ].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1051
    d := t \\ 7.
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1052
    "/ convert from 0 (sunday) .. 6 (saturday)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1053
    "/ to 1 (munday) .. 7 (sunday)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1054
    d == 0 ifTrue:[^ 7].
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1055
    ^ d
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1056
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1057
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1058
     self firstDayOfYear:2000           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1059
     (Date newDay:1 year:2000) dayInWeek 
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1060
     self firstDayOfYear:1999      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1061
     (Date newDay:1 year:1999) dayInWeek
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1062
     self firstDayOfYear:1998      
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1063
     (Date newDay:1 year:1998) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1064
     self firstDayOfYear:2001           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1065
     (Date newDay:1 year:2001) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1066
     self firstDayOfYear:2002           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1067
     (Date newDay:1 year:2002) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1068
     self firstDayOfYear:2006           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1069
     (Date newDay:1 year:2006) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1070
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1071
     self firstDayOfYear:1800           
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1072
     (Date newDay:1 year:1800) dayInWeek    
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1073
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1074
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  1075
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1076
indexOfMonth:aMonthString
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1077
    "given the name of a month (either string or symbol),
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1078
     return the month-index (1 for jan; 12 for december).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1079
     The given string may be a full or abbreviated name,
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1080
     case is ignored.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1081
     Return 0 for invalid month name."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1082
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1083
    |monthIndex|
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1084
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1085
    monthIndex := self indexOfMonth:aMonthString language:nil.
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1086
    "/ if not found, retry in english
12105
cf33361e1ff2 changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12097
diff changeset
  1087
    (monthIndex == 0 and:[ Smalltalk language ~= 'en' ])
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1088
    ifTrue:[
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1089
        monthIndex := self indexOfMonth:aMonthString language:'en'.
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1090
    ].
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1091
    ^ monthIndex
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1092
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1093
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1094
     Date indexOfMonth:'jan'
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1095
     Date indexOfMonth:'Jan'  
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1096
     Date indexOfMonth:'December'
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1097
     Date indexOfMonth:'Dezember' 
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1098
     Date indexOfMonth:'december' 
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1099
     Date indexOfMonth:'dezember' 
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1100
    "
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1101
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1102
    "Modified: / 08-10-2006 / 14:22:06 / cg"
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1103
!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1104
14714
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  1105
indexOfMonth:aMonthString language:languageOrNil
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1106
    "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
  1107
     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
  1108
     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
  1109
     case is ignored.
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1110
     Return 0 for invalid month name.
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1111
     For nil, Smalltalk language (i.e. the current language setting) is used,
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1112
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1113
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1114
    |idx name langMonthNames langMonthAbbrevs|
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1115
14714
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  1116
    langMonthNames := self monthNamesForLanguage:languageOrNil.
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  1117
    langMonthAbbrevs := self monthAbbrevsForLanguage:languageOrNil.
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1118
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1119
    name := aMonthString asLowercase.
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1120
    idx := langMonthAbbrevs indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1121
    idx ~~ 0 ifTrue:[^ idx].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1122
    idx := langMonthNames indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1123
    idx ~~ 0 ifTrue:[^ idx].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1124
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1125
    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
  1126
    idx := langMonthAbbrevs indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1127
    idx ~~ 0 ifTrue:[^ idx].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1128
    idx := langMonthNames indexOf:name.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1129
    idx ~~ 0 ifTrue:[^ idx].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1130
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1131
    ^ idx
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1132
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1133
    "
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1134
     Date indexOfMonth:'jan'      language:#en 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1135
     Date indexOfMonth:'Jan'      language:#en 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1136
     Date indexOfMonth:'December' language:#en 
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1137
    "
10056
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1138
3c8e8c867a13 indexofmonth: try english as second chance
Claus Gittinger <cg@exept.de>
parents: 9262
diff changeset
  1139
    "Modified: / 08-10-2006 / 14:20:17 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1140
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1141
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1142
leapYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1143
    "return true, if yearInteger is a leap year."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1144
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1145
    |y "{ Class: SmallInteger }"|
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
    y := yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1148
    (y \\ 4 == 0) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1149
	(y \\ 100 ~~ 0) ifTrue:[^ true].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1150
	(y \\ 400 == 0) ifTrue:[^ true]
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1151
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1152
    ^ false
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1153
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1154
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1155
     Date leapYear:1992
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1156
     Date leapYear:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1157
     Date leapYear:1900
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1158
     Date leapYear:2000
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1159
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1160
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1161
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1162
longFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1163
    (LongFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1164
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1165
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1166
    ^ LongFormats at:Language ifAbsent:(LongFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1167
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1168
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1169
     Date today printStringFormat:(Date defaultFormatString). 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1170
     Date today printStringFormat:(Date longFormatString).    
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1171
     Date today printStringFormat:(Date shortFormatString).   
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1172
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1173
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1174
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1175
monthAndDayFromDayInYear:aDayInYear forYear:yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1176
    "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
  1177
     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
  1178
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1179
    |restDays daysInMonth|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1180
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1181
    restDays := aDayInYear.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1182
    restDays < 1 ifTrue:[^ nil].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1183
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1184
    1 to:12 do:[:m |
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1185
	daysInMonth := self daysInMonthIndex:m forYear:yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1186
	restDays <= daysInMonth ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1187
	    ^ Array with:m with:restDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1188
	].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1189
	restDays := restDays - daysInMonth 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1190
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1191
    restDays > daysInMonth ifTrue:[^ nil].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1192
    ^ Array with:12 with:restDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1193
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1194
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1195
     Date monthAndDayFromDayInYear:66 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1196
     Date monthAndDayFromDayInYear:66 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1197
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1198
!
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
nameOfDay:dayIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1201
    "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
  1202
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1203
    ^ self nameOfDay:dayIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1204
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1205
    "
8795
7fc3fbba3b63 comment
Claus Gittinger <cg@exept.de>
parents: 8626
diff changeset
  1206
     Date nameOfDay:1
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1207
     Date nameOfDay:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1208
    "
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
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1211
nameOfDay:dayIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1212
    "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
  1213
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1214
     for unknown languages, english is used." 
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1215
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1216
    ^ (self dayNamesForLanguage:lang) at:dayIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1217
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1218
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1219
     Date nameOfDay:4 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1220
    "
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1221
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1222
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1223
nameOfMonth:monthIndex
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1224
    "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
  1225
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1226
    ^ self nameOfMonth:monthIndex language:nil
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1227
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1228
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1229
     Date nameOfMonth:11
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1230
     Date nameOfMonth:12
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1231
     Date nameOfMonth:4
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1232
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1233
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1234
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1235
nameOfMonth:monthIndex language:lang
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1236
    "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
  1237
     For nil, Smalltalk language is used,
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1238
     for unknown languages, english is used." 
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
    ^ (self monthNamesForLanguage:lang) at:monthIndex
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1241
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
     Date nameOfMonth:11 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1244
     Date nameOfMonth:12 language:#en
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1245
     Date nameOfMonth:4  language:#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
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1248
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1249
shortFormatString
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1250
    (ShortFormats isNil or:[EnvironmentChange]) ifTrue:[
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1251
	self initNames
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  1252
    ].
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1253
    ^ ShortFormats at:Language ifAbsent:(ShortFormats at:#en).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1254
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1255
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1256
     Date today printStringFormat:(Date defaultFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1257
     Date today printStringFormat:(Date longFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1258
     Date today printStringFormat:(Date shortFormatString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1259
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1260
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  1261
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1262
weekInYearOf:aDateOrTimestamp
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1263
    "for a given date or timeStamp, return the week-number.
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1264
     The returned week number starts with 1 for the first week which has a thursday in it.
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1265
     (see DIN 1355-1/ISO 8601)
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1266
     The rule is:
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1267
        every monday (and only monday), a new week begins   
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1268
        the first week is the one which has at least 4 days of the new year in it
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1269
        
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1270
     Be prepared: this 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
  1271
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1272
    |date dayInYear numDays dayOfFirstWeekInYear dayOfFirstWeekInNextYear week|
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1273
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1274
    date := aDateOrTimestamp asDate.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1275
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1276
    dayInYear := date dayInYear.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1277
    dayOfFirstWeekInYear := self dayOfFirstWeekInYear:date year.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1278
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1279
    numDays := date subtractDate:dayOfFirstWeekInYear.
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1280
    "/ 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
  1281
    numDays < 0 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1282
        "/ not in a week here ...
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1283
        "/ can be either 52 or 53, depending on the previous year.
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1284
        ^ self weekInYearOf:(Date newDay:31 month:12 year:date year - 1)
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1285
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1286
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1287
    "/ compute the week 
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1288
    week := numDays // 7 + 1.
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1289
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1290
    "/ 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
  1291
    week == 53 ifTrue:[
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1292
        dayOfFirstWeekInNextYear := self dayOfFirstWeekInYear:aDateOrTimestamp year + 1.
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  1293
        date >= dayOfFirstWeekInNextYear ifTrue:[
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1294
            ^ 1
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1295
        ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1296
    ].
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  1297
    ^ week
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1298
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1299
    "
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  1300
     Timestamp now weekInYear    
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1301
     Date weekInYearOf:(Date newDay: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
  1302
     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
  1303
     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
  1304
     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
  1305
     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
  1306
     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
  1307
     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
  1308
     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
  1309
     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
  1310
     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
  1311
     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
  1312
     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
  1313
     Date weekInYearOf:(Timestamp newDay:17 year:2000)   was a monday -> W03
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1314
     Date weekInYearOf:(Date newDay:1 month:1 year:2001)     
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1315
     Date weekInYearOf:(Date newDay:2 month:1 year:2001)     
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1316
     Date weekInYearOf:(Date newDay:3 month:1 year:2001)     
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1317
     Date weekInYearOf:(Date newDay:24 month:12 year:2001)   -> W52
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1318
     Date weekInYearOf:(Date newDay:30 month:12 year:2001)   -> W52
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1319
     Date weekInYearOf:(Date newDay:31 month:12 year:2001)   -> W01
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1320
     Date weekInYearOf:(Date newDay:1 month:1 year:2002)    
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1321
     Date weekInYearOf:(Date newDay:2 month:1 year:2002)      
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1322
     Date weekInYearOf:(Date newDay:7 month:1 year:2002)      
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1323
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1324
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  1325
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1326
yearAsDays: yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1327
    "Returns the number of days since Jan 1, 1901. (GNU)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1328
     to the first Jan of the year, yearInteger.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1329
     For 1901 this is zero, for 1902 its 365.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1330
     Defined for years >= 1901"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1331
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1332
    |y "{ Class: SmallInteger }"|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1333
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1334
    y := yearInteger - 1900.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1335
    y := y - 1.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1336
    ^ (y * 365)
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  1337
        + (y // 4)
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  1338
        - (y // 100)
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  1339
        + ((y + 300) // 400)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1340
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1341
    "
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  1342
     Date yearAsDays:5 
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  1343
     Date yearAsDays:1900 
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1344
     Date yearAsDays:1901 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1345
     Date yearAsDays:1902   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1346
     Date yearAsDays:1903   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1347
     Date yearAsDays:1904    
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1348
     Date yearAsDays:1905     
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1349
     Date yearAsDays:1994   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1350
     (Date yearAsDays:2001) - (Date yearAsDays:2000)   
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1351
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1352
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1353
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1354
!Date class methodsFor:'obsolete'!
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1355
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1356
day:day month:month year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1357
    "return a new Date, given the day, month and year.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1358
     Obsolete:
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1359
        use newDay:month:year: for ST-80 compatibility"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1360
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1361
    <resource: #obsolete>
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1362
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1363
    ^ self newDay:day month:month year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1364
!
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1365
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1366
day:dayInYear year:year
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1367
    "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
  1368
     Obsolete:
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1369
        use newDay:year: for ST-80 compatibility"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1370
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1371
    <resource: #obsolete>
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1372
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1373
    ^ self newDay:dayInYear year:year
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1374
!
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1375
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1376
isLeapYear:yearInteger
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1377
    "Return true, if a year is a leap year.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1378
     Obsolete:
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1379
         Please use the ST-80 compatible #leapYear for new programs, 
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1380
         since this method will vanish."
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1381
    <resource:#obsolete>
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1382
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1383
    ^ self leapYear:yearInteger
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1384
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1385
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  1386
!Date class methodsFor:'private'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1387
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1388
abbreviatedMonthNamesForLanguage:languageOrNilForDefault
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1389
    |langMonthAbbrevs lang|
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1390
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1391
    (MonthAbbrevs isNil or:[EnvironmentChange]) ifTrue:[
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1392
        self initNames
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1393
    ].
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1394
    lang := languageOrNilForDefault notNil ifTrue:[languageOrNilForDefault] ifFalse:[Smalltalk language].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1395
    langMonthAbbrevs := MonthAbbrevs at:lang ifAbsent:nil.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1396
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1397
    "/ If language is not found, try to initialize it from the resources and try again
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1398
    langMonthAbbrevs isNil ifTrue:[ 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1399
        self initNamesForLanguage: lang.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1400
        "/ If language initialization failed, take english monthAbbrevs
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1401
        langMonthAbbrevs := MonthAbbrevs at:lang ifAbsent:[MonthAbbrevs at:#en.].
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1402
    ].
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1403
    ^ langMonthAbbrevs
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1404
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1405
    "
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1406
     self abbreviatedMonthNamesForLanguage:#en
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1407
     self abbreviatedMonthNamesForLanguage:#de
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1408
     self abbreviatedMonthNamesForLanguage:#fr
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1409
     self abbreviatedMonthNamesForLanguage:#es
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1410
    "
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1411
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1412
    "Modified (format): / 18-07-2011 / 09:34:20 / cg"
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1413
!
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1414
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1415
dayAbbrevsForLanguage:languageOrNilForDefault
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1416
    |langDayAbbrevs lang|
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1417
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1418
    (DayAbbrevs isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1419
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1420
    ].
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1421
    lang := languageOrNilForDefault notNil ifTrue:[languageOrNilForDefault] ifFalse:[Smalltalk language].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1422
    langDayAbbrevs := DayAbbrevs at:lang ifAbsent:nil.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1423
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1424
    "/ If language is not found, try to initialize it from the resources and try again
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1425
    langDayAbbrevs isNil ifTrue:[ 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1426
        self initNamesForLanguage: lang.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1427
        "/ If language initialization failed, take english dayAbbrevs
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1428
        langDayAbbrevs := DayAbbrevs at:lang ifAbsent:[DayAbbrevs at:#en.].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1429
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1430
    ^ langDayAbbrevs
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1431
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1432
    "
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1433
     self dayAbbrevsForLanguage:#en
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1434
     self dayAbbrevsForLanguage:#de
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1435
     self dayAbbrevsForLanguage:#fr
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1436
     self dayAbbrevsForLanguage:#es
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1437
    "
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1438
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1439
    "Modified (format): / 18-07-2011 / 09:34:14 / cg"
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1440
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1441
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1442
dayNamesForLanguage:languageOrNilForDefault
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1443
    |langDayNames lang|
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1444
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1445
    (DayNames isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1446
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1447
    ].
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1448
    lang := languageOrNilForDefault notNil ifTrue:[languageOrNilForDefault] ifFalse:[Smalltalk language].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1449
    langDayNames := DayNames at:lang ifAbsent:nil.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1450
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1451
    "/ If language is not found, try to initialize it from the resources and try again
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1452
    langDayNames isNil ifTrue:[ 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1453
        self initNamesForLanguage: lang.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1454
        "/ If language initialization failed, take english dayNames
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1455
        langDayNames := DayNames at:lang ifAbsent:[DayNames at:#en].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1456
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1457
    ^ langDayNames
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1458
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1459
    "
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1460
     self dayNamesForLanguage:#en
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1461
     self dayNamesForLanguage:#de
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1462
     self dayNamesForLanguage:#fr
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1463
     self dayNamesForLanguage:#es
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1464
    "
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1465
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1466
    "Modified (format): / 18-07-2011 / 09:34:08 / cg"
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1467
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1468
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1469
daysInMonthIndex: monthIndex forYear: yearInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1470
    "return the number of days in month monthIndex of
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1471
     year yearInteger (modified GNU).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1472
     Return 0 for invalid month index.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1473
     This is the internal version of daysInMonth:forYear:"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1474
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1475
    |days|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1476
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1477
    (monthIndex between:1 and:12) ifFalse:[^ 0].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1478
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1479
    days := #(31 28 31           "Jan Feb Mar"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1480
	      30 31 30           "Apr May Jun"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1481
	      31 31 30           "Jul Aug Sep"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1482
	      31 30 31           "Oct Nov Dec"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1483
	     ) at: monthIndex.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1484
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1485
    (monthIndex == 2) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1486
	(self leapYear:yearInteger) ifTrue:[
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1487
	    ^ days + 1
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1488
	]
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1489
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1490
    ^ days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1491
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1492
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1493
     Date daysInMonthIndex:2 forYear:1994
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1494
     Date daysInMonthIndex:2 forYear:1980
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1495
     Date daysInMonthIndex:2 forYear:1981
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1496
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1497
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1498
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1499
daysUntilMonthIndex: monthIndex forYear: yearInteger
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1500
    "return the number of days in month monthIndex of
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1501
     year yearInteger (modified GNU).
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1502
     Return 0 for invalid month index.
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1503
     This is the internal version of daysInMonth:forYear:"
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1504
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1505
    |days|
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1506
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1507
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1508
       |sum|
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1509
       sum := 0.
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1510
       #(31 28 31          
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1511
         30 31 30          
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1512
         31 31 30          
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1513
         31 30 31          
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1514
        ) collect:[:each | |first| first:= sum. sum := sum + each. first]
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1515
                #(0 31 59 90 120 151 181 212 243 273 304 334)
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1516
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1517
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1518
    (monthIndex between:1 and:12) ifFalse:[^ 0].
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1519
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1520
    days := #(0 31 59 90 120 151 181 212 243 273 304 334) at: monthIndex.
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1521
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1522
    (monthIndex > 2) ifTrue:[
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1523
        (self leapYear:yearInteger) ifTrue:[
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1524
            ^ days + 1
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1525
        ]
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1526
    ].
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1527
    ^ days
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1528
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1529
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1530
     Date daysUntilMonthIndex:3 forYear:1994
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1531
     Date daysUntilMonthIndex:3 forYear:1980
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1532
     Date daysUntilMonthIndex:3 forYear:1981
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1533
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1534
!
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  1535
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1536
monthAbbrevsForLanguage:language
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1537
    <resource: #obsolete>
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1538
    "obsolete"
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1539
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1540
    ^ self abbreviatedMonthNamesForLanguage:language
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1541
!
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1542
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1543
monthNamesForLanguage:languageOrNilForDefault
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1544
    |langMonthNames lang|
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1545
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1546
    (MonthNames isNil or:[EnvironmentChange]) ifTrue:[
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1547
        self initNames
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1548
    ].
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1549
    lang := languageOrNilForDefault notNil ifTrue:[languageOrNilForDefault] ifFalse:[Smalltalk language].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1550
    langMonthNames := MonthNames at:lang ifAbsent:nil.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1551
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1552
    "/ If language is not found, try to initialize it from the resources and try again
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1553
    langMonthNames isNil ifTrue:[ 
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1554
        self initNamesForLanguage: lang.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1555
        "/ If language initialization failed, take english monthNames
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1556
        langMonthNames := MonthNames at:lang ifAbsent:[MonthNames at:#en.].
7793
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1557
    ].
8abaefe33259 keep english strings for day/month names/abbrevs
Claus Gittinger <cg@exept.de>
parents: 7673
diff changeset
  1558
    ^ langMonthNames
13509
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1559
771552bde287 changed:
Claus Gittinger <cg@exept.de>
parents: 13234
diff changeset
  1560
    "Modified: / 18-07-2011 / 09:34:32 / cg"
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1561
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1562
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1563
!Date class methodsFor:'private-encoding/decoding'!
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1564
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1565
encodeYear:y month:m day:d
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1566
    "the internal encoding is strictly private, 
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1567
     and should not be used outside."
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1568
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1569
    ^ (((y * 100) + m) * 100) + d
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1570
!
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1571
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1572
readDatePartFrom:str format:fmt language:languageOrNil
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1573
    "read a single component (such as %shortName) from str"
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1574
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1575
    |dayName monthName day month year format string |
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1576
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1577
    format := fmt.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1578
    string := str throughAnyForWhich:[:ch | ch isNationalAlphaNumeric].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1579
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1580
    ((format sameAs:'dayName') or:[format sameAs:'shortDayName']) ifTrue:[
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1581
        "/ skipped, in case the format is 'monday, 23rd of may...' - not used for decoding
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1582
        dayName := string.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1583
        ^ nil.
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1584
    ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1585
    (format sameAs:'d') ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1586
        day := Integer readFrom:string.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1587
        ^ #day -> day
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1588
    ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1589
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1590
    (format sameAs:'m') ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1591
        month := Integer readFrom:string.      
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1592
        ^ #month -> month
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1593
    ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1594
    (format sameAs:'monthName') ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1595
        monthName := string.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1596
        month := (Date monthNamesForLanguage:languageOrNil) findFirst:[:m | monthName sameAs:m].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1597
"/        month == 0 ifTrue:[self error:'invalid month name'].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1598
        ^ #month -> month
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1599
    ].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1600
    (format sameAs:'shortMonthName') ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1601
        monthName := string.
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1602
        month := (Date abbreviatedMonthNamesForLanguage:languageOrNil) findFirst:[:m | monthName sameAs:m].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1603
"/        month == 0 ifTrue:[self error:'invalid month name'].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1604
        ^ #month -> month
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1605
    ].
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1606
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1607
    format = 'y' ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1608
        year := Integer readFrom:string.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1609
        year < 100 ifTrue:[
11787
917164680a0f *** empty log message ***
fm
parents: 11786
diff changeset
  1610
            ^ #year -> (year + 2000)
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1611
        ].
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1612
        ^ #year -> year
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1613
    ].
12812
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1614
    format = 'Y' ifTrue:[
4ca9c8addc9f added: #initNamesForLanguage:
fm
parents: 12796
diff changeset
  1615
        year := Integer readFrom:string.
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1616
        year >= 100 ifTrue:[
11787
917164680a0f *** empty log message ***
fm
parents: 11786
diff changeset
  1617
            ^ #year -> year
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1618
        ].
11787
917164680a0f *** empty log message ***
fm
parents: 11786
diff changeset
  1619
        ^ #year -> (year + 2000) 
11786
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1620
    ].
4173f6139f15 enhacements for #readFrom:printFormat:onError:
fm
parents: 11742
diff changeset
  1621
    self error:'unknown format specifier'
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1622
! !
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  1623
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7023
diff changeset
  1624
!Date class methodsFor:'private-instance creation'!
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1625
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1626
fromOSTime:osTime
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1627
    "return a date, representing the date given by the operatingSystem time.
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1628
     This somewhat clumsy implementation hides the OS's date representation
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1629
     (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
  1630
     Dont use this method, the osTime representation is totally unportable."
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1631
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1632
    ^ self basicNew fromOSTime:osTime
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1633
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1634
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1635
     Date fromOSTime:0              -> on UNIX: this should return 1st Jan 1970
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1636
                                       thats where Unix time starts
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1637
                                       On other systems, it may be something different.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1638
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  1639
     Date fromOSTime:(24*60*60*1000) -> on UNIX: the day after
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1640
    "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1641
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 972
diff changeset
  1642
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1643
!Date methodsFor:'Compatibility-ANSI'!
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1644
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1645
dayOfWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1646
    "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
  1647
     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
  1648
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1649
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1650
    |d|
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1651
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1652
    d := self dayInWeek.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1653
    d == 7 ifTrue:[
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1654
        ^ 1
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1655
    ].
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1656
    ^ d + 1
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1657
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1658
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1659
     Date today dayOfWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1660
     Date today dayInWeek
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1661
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1662
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1663
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1664
dayOfWeekAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1665
    "return the short week-day of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1666
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1667
     Expect things like 'mon', 'tue' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1668
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1669
    ^ self abbreviatedDayName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1670
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1671
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1672
     Date today dayOfWeekAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1673
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1674
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1675
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1676
dayOfWeekName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1677
    "return the week-day of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1678
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1679
     Expect things like 'monday', 'tuesday' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1680
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1681
    ^ self weekday
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1682
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1683
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1684
     Date today dayOfWeekName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1685
     Date today dayOfWeekAbbreviation 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1686
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1687
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1688
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1689
dayOfYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1690
    "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
  1691
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1692
    ^ self dayInYear
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1693
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1694
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1695
     Date today dayOfYear 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1696
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1697
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1698
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1699
monthAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1700
    "return the month of the receiver as a string.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1701
     The returned string depends on the language setting.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1702
     Expect things like 'jan', 'feb' ..."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1703
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1704
    ^ self abbreviatedMonthName
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1705
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1706
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1707
     Date today monthAbbreviation  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1708
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1709
! !
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 5858
diff changeset
  1710
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1711
!Date methodsFor:'Compatibility-ST80'!
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  1712
11740
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1713
firstDayInMonth
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1714
    "Return the first day in the month of the receiver"
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1715
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1716
    ^ self subtractDays:(self dayOfMonth - 1)
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1717
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1718
    "
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1719
     Date today               
11895
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1720
     Date today firstDayInMonth    
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1721
     Date today firstDayInMonth subtractDays:1   
11740
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1722
     (Date today subtractDays:30) firstDayInMonth   
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1723
     (Date today subtractDays:122) firstDayInMonth   
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1724
     (Date today subtractDays:154) firstDayInMonth
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1725
    "
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1726
!
8adadac9799e +firstDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11665
diff changeset
  1727
11895
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1728
lastDayInMonth 
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1729
    "Return the last day in the month in which the receiver is."
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1730
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1731
    ^ self addDays:(self daysInMonth - self day).
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1732
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1733
    "
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1734
     Date today       
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1735
     Date today lastDayInMonth        
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1736
     Date today lastDayInMonth addDays:1  
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1737
    "
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1738
!
cb8b4f7949f4 +lastDayInMonth
Claus Gittinger <cg@exept.de>
parents: 11815
diff changeset
  1739
11664
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1740
next:dayName 
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1741
    "Return the next date whose weekday name is dayName.
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1742
     Caveat; dayName is expected to be in the current language"
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1743
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1744
    |ti ni|
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1745
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1746
    ti := self weekdayIndex.
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1747
    ni := (self class dayOfWeek:dayName).
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1748
    ^ self addDays:(ni > ti ifTrue:[ ni-ti ] ifFalse:[ 7+ni-ti ])
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1749
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1750
    "
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1751
     Date today              
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1752
     Date today next:#Friday
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1753
     Date today next:#Sunday 
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1754
     Date today next:#Monday 
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1755
     Date today next:#Thursday
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1756
     Date today next:#WednesDay
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1757
    "
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1758
!
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1759
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1760
nextDayWithIndex:dayIndex 
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1761
    "Return the next date whose weekday name is dayName.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1762
     dayIndex is Monday=1, ... , Sunday=7"
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1763
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1764
    |ti|
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1765
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1766
    self assert:(dayIndex between:1 and:7).
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1767
    ti := self weekdayIndex.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1768
    ^ self addDays:(dayIndex > ti ifTrue:[ dayIndex-ti ] ifFalse:[ 7+dayIndex-ti ])
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1769
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1770
    "
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1771
     Date today              
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1772
     Date today nextDayWithIndex:5 - next Friday
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1773
     Date today nextDayWithIndex:7  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1774
     Date today nextDayWithIndex:1  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1775
     Date today nextDayWithIndex:4  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1776
     Date today nextDayWithIndex:3  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1777
    "
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1778
!
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1779
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1780
previous:dayName 
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1781
    "Return the previous date whose weekday name is dayName.
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1782
     Caveat; dayName is expected to be in the current language"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1783
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1784
    ^ self previousDayWithIndex:(self class dayOfWeek:dayName).
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1785
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1786
    "
11664
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1787
     Date today                    
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1788
     Date today previous:#Montag 
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1789
     Date today previous:#Monday 
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1790
11664
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1791
     Date today previous:#Friday  
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1792
     Date today previous:#Sunday  
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1793
     Date today previous:#Monday  
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1794
     Date today previous:#Thursday  
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1795
     Date today previous:#WednesDay 
Claus Gittinger <cg@exept.de>
parents: 11652
diff changeset
  1796
     Date today previous:#TuesDay  
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1797
    "
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1798
!
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  1799
11665
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1800
previousDayWithIndex:dayIndex
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1801
    "Return the previous date whose weekday name is dayIndex.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1802
     dayIndex is Monday=1, ... , Sunday=7"
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1803
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1804
    |ti|
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1805
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1806
    self assert:(dayIndex between:1 and:7).
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1807
    ti := self weekdayIndex.
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1808
    ^ self subtractDays:(((ti - dayIndex - 1) \\ 7) + 1)
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1809
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1810
    "
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1811
     Date today                    
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1812
     Date today previousDayWithIndex:1 
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1813
     Date today previousDayWithIndex:5  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1814
     Date today previousDayWithIndex:7  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1815
     Date today previousDayWithIndex:4  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1816
     Date today previousDayWithIndex:3 
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1817
     Date today previousDayWithIndex:2  
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1818
    "
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1819
!
352825372305 +nextDayWithIndex and previousDayWithIndex:
Claus Gittinger <cg@exept.de>
parents: 11664
diff changeset
  1820
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1821
printFormat:aFormatArray
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1822
    "Obsolete, backward ST-80 compatible formatted printing - see printStringFormat:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1823
     Return a string containing a printed representation of the receiver.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1824
     The formatArray argument consists of 6 or 7 integers which control
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1825
     the resulting string. The entries are:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1826
     1   day position (1, 2 or 3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1827
     2   month position (1..3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1828
     3   year position (1..3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1829
     4   asciiValue of separator character or separator character
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1830
         or collection of 2 separator characters
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1831
     5   month format (1: numeric; 2: abbreviated name; 3: fullname
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1832
         4: abbreviated uppercase 5: full uppercase)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1833
     6   year format (1 include century; 2 exclude century)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1834
     7  (optional) true/false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1835
         if true, print numbers in 2-digit format
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1836
         (i.e. with leading zeros); 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1837
         Taken as false, if ommited
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1838
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1839
     Day and monthnames are in the currently active language.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1840
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1841
     This method supports more options than the ST-80 version; month formats 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1842
     4 and 5, non-numeric separators and the optional 7th parameter are not 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1843
     supported by ST-80. Be aware of this for compatibility reasons.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1844
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1845
     Notice that not all formats can be scanned (correctly) by #readFrom:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1846
     This is an ST-80 compatibility method - I would have choosen another
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1847
     (less cryptic) formatString ...
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1848
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1849
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1850
    ^ self printFormat:aFormatArray forLanguage:nil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1851
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1852
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1853
     Date today printFormat:#(1 2 3 '' 1 2)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1854
     Date today printFormat:#(1 2 3 $- 1 2)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1855
     Date today printFormat:#(1 2 3 $. 1 2 true)     
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1856
     Date today printFormat:#(2 1 3 32 3 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1857
     Date today printFormat:#(2 1 3 #(' ' ', ') 3 1)  
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1858
     Date today printFormat:#(1 2 3 $- 2 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1859
     Date today printFormat:#(1 2 3 $- 4 1)          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1860
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1861
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1862
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1863
printFormat:aFormatArray forLanguage:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1864
    "Obsolete, backward ST-80 compatible formatted printing - see printStringFormat:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1865
     Return a string containing a printed representation of the receiver.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1866
     The formatArray argument consists of 6 or 7 integers which control
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1867
     the resulting string. The entries are:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1868
     1   day position (1, 2 or 3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1869
     2   month position (1..3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1870
     3   year position (1..3)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1871
     4   asciiValue of separator character or separator character
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1872
         or collection of 2 separator characters
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1873
     5   month format (1: numeric; 2: abbreviated name; 3: fullname
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1874
         4: abbreviated uppercase 5: full uppercase)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1875
     6   year format (1 include century; 2 exclude century)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1876
     7  (optional) true/false.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1877
         if true, print numbers in 2-digit format
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1878
         (i.e. with leading zeros); 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1879
         Taken as false, if ommited
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
     Day and monthnames are in the currently active language.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1882
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1883
     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
  1884
     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
  1885
     supported by ST-80. Be aware of this for compatibility reasons.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1886
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1887
     Notice that not all formats can be scanned (correctly) by #readFrom:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1888
     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
  1889
     (less cryptic) formatString ...
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1890
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1891
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1892
    |mf upperCase day month year components sep1 sep2 leadingZeros|
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1893
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1894
    aFormatArray size > 6 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1895
        leadingZeros := aFormatArray at:7
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1896
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1897
        leadingZeros := false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1898
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1899
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1900
    components := Array new:3.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1901
    day := self day.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1902
    leadingZeros ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1903
        day := day printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1904
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1905
        day := day printString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1906
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1907
    components at:(aFormatArray at:1) put:day.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1908
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1909
    upperCase := false.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1910
    mf := aFormatArray at:5.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1911
    (mf between:4 and:5) ifTrue:[mf := mf - 2. upperCase := true].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1912
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1913
    mf == 1 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1914
        month := self month.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1915
        leadingZeros ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1916
            month := month printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1917
        ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1918
            month := month printString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1919
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1920
    ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1921
        mf == 2 ifTrue:[
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1922
            month := self abbreviatedMonthNameForLanguage:languageOrNil
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1923
        ] ifFalse:[
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1924
            month := self monthNameForLanguage:languageOrNil
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1925
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1926
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1927
    upperCase ifTrue:[month := month asUppercase].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1928
    components at:(aFormatArray at:2) put:month.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1929
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1930
    year := self year.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1931
    (aFormatArray at:6) == 2 ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1932
        year := year \\ 100.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1933
        year := year printStringLeftPaddedTo:2 with:$0 
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1934
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1935
    year := year printString.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1936
    components at:(aFormatArray at:3) put:year.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1937
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1938
    sep1 := sep2 := (aFormatArray at:4).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1939
    sep1 isString ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1940
        sep1 isCollection ifTrue:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1941
            sep2 := (sep1 at:2).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1942
            sep1 := (sep1 at:1).
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1943
        ] ifFalse:[
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1944
            sep1 := sep2 := sep1 asCharacter
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1945
        ]
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1946
    ].
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1947
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1948
    ^ (components at:1)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1949
      , sep1 asString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1950
      , (components at:2)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1951
      , sep2 asString
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1952
      , (components at:3)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1953
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1954
    "
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1955
     Date today printFormat:#(1 2 3 '' 1 2)         
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1956
     Date today printFormat:#(1 2 3 $- 1 2)         
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1957
     Date today printFormat:#(1 2 3 $. 1 2 true)     
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1958
     Date today printFormat:#(2 1 3 32 3 1)          
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1959
     Date today printFormat:#(2 1 3 #(' ' ', ') 3 1)  
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1960
     Date today printFormat:#(1 2 3 $- 2 1) forLanguage:#en           
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1961
     Date today printFormat:#(1 2 3 $- 4 1) forLanguage:#en          
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1962
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1963
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1964
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1965
printFormat:aFormatArray forLanguage:languageOrNil on:aStream
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1966
    "Obsolete, backward ST-80 compatible formatted printing - see comment
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1967
     in printFormat:.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1968
     Append a printed representation of the receiver to aStream.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1969
     The argument, aFormatString controls the format, as described
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1970
     in the #printFormat: method.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1971
     Notice that not all formats can be scanned (correctly) by #readFrom:"
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1972
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1973
    aStream nextPutAll:(self printFormat:aFormatArray forLanguage:languageOrNil)
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1974
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1975
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1976
    "european formats:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1977
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1978
     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
  1979
     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
  1980
     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
  1981
     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
  1982
     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
  1983
     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
  1984
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1985
     US formats:
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1986
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  1987
     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
  1988
     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
  1989
     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
  1990
     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
  1991
     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
  1992
     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
  1993
     Date today printFormat:#(1 2 3 $- 4 1) on:Transcript. Transcript cr.
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1994
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1995
!
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1996
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1997
printFormat:aFormatArray on:aStream
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1998
    "Obsolete, backward ST-80 compatible formatted printing - see comment
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  1999
     in printFormat:.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2000
     Append a printed representation of the receiver to aStream.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2001
     The argument, aFormatString controls the format, as described
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2002
     in the #printFormat: method.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2003
     Notice that not all formats can be scanned (correctly) by #readFrom:"
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2004
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2005
    aStream nextPutAll:(self printFormat:aFormatArray)
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2006
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2007
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2008
    "european formats:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2009
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2010
     Date today printFormat:#(1 2 3 $- 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2011
     Date today printFormat:#(1 2 3 $- 2 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2012
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2013
     Date today printFormat:#(1 2 3 $- 3 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2014
     Date today printFormat:#(1 2 3 $. 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2015
     Date today printFormat:#(1 2 3 $. 1 2 true) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2016
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2017
     US formats:
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2018
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2019
     Date today printFormat:#(2 1 3 32 3 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2020
     Date today printFormat:#(2 1 3 32 2 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2021
     Date today printFormat:#(2 1 3 $/ 1 2) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2022
     Date today printFormat:#(2 1 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2023
     Date today printFormat:#(2 1 3 #(' ' ', ') 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2024
     Date today printFormat:#(1 2 3 $- 2 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2025
     Date today printFormat:#(1 2 3 $- 4 1) on:Transcript. Transcript cr.
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2026
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2027
!
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2028
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2029
shortPrintString
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2030
    "dummy - for now"
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2031
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2032
    ^ self printString
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2033
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2034
    "Created: 20.6.1997 / 17:16:48 / cg"
6976
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2035
!
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2036
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2037
weekdayIndex
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2038
    "Return the day index; Monday=1, ... , Sunday=7"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2039
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2040
    ^ (self asDays + 1) \\ 7 + 1  "1 January 1901 was a Tuesday"
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2041
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2042
    "
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2043
     Date today dayName
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2044
     Date today weekdayIndex      
4529a6fafa92 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6952
diff changeset
  2045
    "
5515
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2046
! !
4adb4b3a7475 category only
Claus Gittinger <cg@exept.de>
parents: 5282
diff changeset
  2047
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2048
!Date methodsFor:'Compatibility-Squeak'!
4407
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2049
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2050
mmddyyyy
4462
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  2051
    "return a printed representation of the receiver in the
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  2052
     form mmddyyyy.
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  2053
     The receiver can be reconstructed with: 
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  2054
        Date readMMDDYYYYFrom:aStringOrStream onError:[...]"
9ede4d534b8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  2055
11182
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
  2056
    ^ self printStringFormat:'%m%d%y'
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
  2057
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
  2058
"/    ^ (self month printStringLeftPaddedTo:2 with:$0)
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
  2059
"/       , (self day printStringLeftPaddedTo:2 with:$0) 
849a5a70d2d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11181
diff changeset
  2060
"/       , (self year printStringLeftPaddedTo:4 with:$0)
4407
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2061
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2062
    "
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2063
     Date today mmddyyyy
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2064
    "
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2065
! !
413565318bec added mmddyyyy
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2066
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2067
!Date methodsFor:'accessing'!
241
6f30be88e314 *** empty log message ***
claus
parents: 202
diff changeset
  2068
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2069
abbreviatedDayName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2070
    "return the short week-day of the receiver as a string.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2071
     The returned string depends on the language setting.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2072
     Expect things like 'mon', 'tue' ..."
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2073
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2074
    ^ self class abbreviatedNameOfDay:(self dayInWeek)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2075
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2076
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2077
     Date today abbreviatedDayName
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2078
     (Date newDay:15 month:4 year:1959) abbreviatedDayName
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2079
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2080
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2081
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2082
abbreviatedMonthName
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2083
    "return the month of the receiver as a string.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2084
     The returned string depends on the language setting.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2085
     Expect things like 'jan', 'feb' ..."
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2086
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2087
    ^ self class abbreviatedNameOfMonth:(self month)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2088
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2089
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2090
     Date today abbreviatedMonthName
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2091
     (Date newDay:15 month:4 year:1959) abbreviatedMonthName
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2092
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2093
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2094
7794
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2095
abbreviatedMonthNameForLanguage:lang
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2096
    "return the month of the receiver as a string.
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2097
     The returned string depends on the language setting.
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2098
     Expect things like 'jan', 'feb' ..."
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2099
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2100
    ^ self class abbreviatedNameOfMonth:(self month) language:lang
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2101
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2102
    "
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2103
     Date today abbreviatedMonthNameForLanguage:#en 
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2104
     Date today abbreviatedMonthNameForLanguage:#de 
7794
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2105
    "
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2106
!
7f1901b11541 accessor for language specific abbreviated month name
penk
parents: 7793
diff changeset
  2107
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2108
asDays
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2109
    "return the number of days elapsed since 01-Jan-1901
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2110
     and the receiver's day; starts with 0 for 1-1-1901.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2111
     Date>>fromDays: is the reverse operation.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2112
     For ST-80 compatibility."
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2113
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2114
    |yr|
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2115
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2116
    yr := self year.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2117
    ^ (self class yearAsDays:yr)
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2118
      + (self class daysUntilMonthIndex:self month forYear:yr)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2119
      + self day
85
claus
parents: 77
diff changeset
  2120
      - 1
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2121
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2122
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2123
     (Date newDay: 5 month: 8 year: 1962) asDays  -> should be 22496
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2124
     (Date newDay: 1 month: 1 year: 1901) asDays  -> 0
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2125
     Date today asDays
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2126
     Date fromDays:(Date today asDays + 7)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2127
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2128
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2129
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2130
asSeconds
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2131
    "return the seconds between 1.jan.1901 and the same time in the receivers 
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2132
     day. (i.e. midnight to midnight).
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2133
     This does not include any leapSeconds ... strictly speaking, this is incorrect.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2134
     ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2135
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2136
    ^ 60*60*24 * self asDays
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2137
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2138
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2139
     (Date newDay: 5 month: 8 year: 1962) asSeconds
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2140
     (Date newDay: 1 month: 1 year: 1901) asSeconds
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2141
     (Date today addDays:7) asSeconds - Date today asSeconds
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2142
    "
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2143
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2144
    "Modified: 1.7.1996 / 14:19:17 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2145
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2146
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2147
day
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2148
    "return the day (1..31) of the receiver"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2149
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2150
    ^ dateEncoding \\ 100
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2151
8626
ae1fcb227a45 example
penk
parents: 8480
diff changeset
  2152
    "example:
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2153
     Date today day
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2154
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2155
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2156
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2157
dayInWeek
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2158
    "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
  2159
     WARNING: different from ANSIs dayOfWeek (which returns 1 for sunday, ... 7 for saturday).  
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2160
     WARNING: does not care for pre-gregorian dates 
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2161
        (i.e. do not use this for dates before 1583)
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2162
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2163
3256
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2164
    |wday|
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2165
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2166
    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
  2167
            + self asDays) \\ 7 + 1.
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2168
    wday < 1 ifTrue:[
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2169
        wday := wday + 7
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2170
    ].
637d16a0c83b care for date before 1.1.1900 in dayInWeek.
Claus Gittinger <cg@exept.de>
parents: 2706
diff changeset
  2171
    ^ wday
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2172
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2173
    "
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2174
     Date today dayInWeek      
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2175
     Date tomorrow dayInWeek 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2176
     Date yesterday dayInWeek 
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2177
     (Date today subtractDays:2) dayInWeek 
3257
db002a9bf071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3256
diff changeset
  2178
     Date today weekday 
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2179
     Date tomorrow weekday 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2180
     Date yesterday weekday 
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2181
     (Date newDay:15 month:4 year:1959) dayInWeek 
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2182
     (Date newDay:1 month:1 year:1901) dayInWeek 
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2183
     (Date newDay:31 month:12 year:1900) dayInWeek 
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2184
     (Date newDay:31 month:12 year:1899) dayInWeek 
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2185
    "
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2186
3257
db002a9bf071 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3256
diff changeset
  2187
    "Modified: / 1.2.1998 / 14:10:27 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2188
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2189
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2190
dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2191
    "return the day-nr within the year of the receiver - 1 .. 365/366"
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2192
    
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2193
    "
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2194
        |daysSoFar|
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2195
        daysSoFar := 0.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2196
        #(0 31 28 31 30 31 30 31 31 30 31 30) collect:[:i| daysSoFar := daysSoFar + i]
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2197
    "
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2198
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2199
    |days month|
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2200
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2201
    month := self month.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2202
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2203
    days := #(0 31 59 90 120 151 181 212 243 273 304 334) at:month.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2204
    days := days + self day.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2205
    (month > 2 and:[self class leapYear:self year]) ifTrue:[
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2206
        days := days + 1.
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2207
    ].
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2208
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2209
    ^ days
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2210
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2211
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2212
     Date today dayInYear 
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2213
     (Date newDay:1 year:1999) dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2214
     (Date newDay:1 year:2000) dayInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2215
     (Date newDay:2 year:2000) dayInYear
11349
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2216
     (Date newDay:59 year:2004) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2217
     (Date newDay:60 year:2004) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2218
     (Date newDay:61 year:2004) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2219
     (Date newDay:366 year:2004) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2220
     (Date newDay:59 year:2005) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2221
     (Date newDay:60 year:2005) dayInYear
8ce689609977 Fix computation and printing of dates before 1901.
Stefan Vogel <sv@exept.de>
parents: 11182
diff changeset
  2222
     (Date newDay:365 year:2005) dayInYear
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2223
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2224
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2225
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2226
dayOfMonth
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2227
    "Answer the day of the month represented by me.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2228
     Same as day; for ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2229
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2230
    ^ self day
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2231
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2232
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2233
     Date today dayOfMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2234
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2235
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2236
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2237
daysInMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2238
    "return the number of days in the month of the receiver"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2239
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2240
    ^ Date daysInMonth:(self month) forYear:(self year)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2241
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2242
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2243
     Date today daysInMonth
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2244
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2245
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2246
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2247
daysInYear
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2248
    "return the number of days in the year of the receiver"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2249
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2250
    ^ Date daysInYear:(self year)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2251
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2252
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2253
     Date today daysInYear
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2254
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2255
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2256
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2257
daysLeftInMonth
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2258
    "return the number of days left in the month of the receiver"
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2259
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2260
    ^ self daysInMonth - self day
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2261
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2262
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2263
     Date today daysLeftInMonth             
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2264
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2265
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2266
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2267
daysLeftInYear
11079
cd8abd9e87a7 oops - daysLeftInYear was wrong
Claus Gittinger <cg@exept.de>
parents: 10912
diff changeset
  2268
    "return the number of days left in the year of the receiver.
cd8abd9e87a7 oops - daysLeftInYear was wrong
Claus Gittinger <cg@exept.de>
parents: 10912
diff changeset
  2269
     Today is excluded from the count (i.e. in a non-leap-year,
cd8abd9e87a7 oops - daysLeftInYear was wrong
Claus Gittinger <cg@exept.de>
parents: 10912
diff changeset
  2270
     the first january will return 364)"
cd8abd9e87a7 oops - daysLeftInYear was wrong
Claus Gittinger <cg@exept.de>
parents: 10912
diff changeset
  2271
cd8abd9e87a7 oops - daysLeftInYear was wrong
Claus Gittinger <cg@exept.de>
parents: 10912
diff changeset
  2272
    ^ (Date daysInYear:(self year)) - self dayOfYear
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2273
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2274
    "
5282
d38c5238399c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2275
     Date today daysLeftInYear             
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2276
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2277
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2278
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2279
isLeapYear
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2280
    "return true, if the receivers year is a leap year"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2281
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2282
    ^ Date leapYear:(self year)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2283
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2284
    "
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2285
     Date today isLeapYear
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2286
     (Date newDay:1 month:1 year:1992) isLeapYear
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2287
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2288
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2289
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2290
month
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2291
    "return the month (1..12) of the receiver"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2292
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2293
    ^ (dateEncoding // 100) \\ 100
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2294
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2295
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2296
     Date today month
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2297
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2298
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2299
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2300
monthIndex
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2301
    "return the index of the month (e.g. Feb.=2).
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2302
     Same as month; for ST-80 compatibility."
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2303
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2304
    ^ self month  
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2305
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2306
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2307
monthName
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2308
    "return the month of the receiver as a string.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2309
     The returned string depends on the language setting.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2310
     Expect things like 'january', 'february' ..."
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2311
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2312
    ^ self class nameOfMonth:(self month)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2313
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2314
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2315
     Date today monthName
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2316
     (Date newDay:15 month:4 year:1959) monthName
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2317
    "
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2318
!
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2319
7961
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2320
monthNameForLanguage:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2321
    "return the month of the receiver as a string.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2322
     The returned string depends on the language setting.
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2323
     Expect things like 'january', 'february' ..."
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2324
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2325
    ^ self class nameOfMonth:(self month) language:languageOrNil
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2326
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2327
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2328
     Date today monthName
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2329
     Date today monthNameForLanguage:#en
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2330
    "
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2331
!
a3d9da2b9a49 english print strings
Claus Gittinger <cg@exept.de>
parents: 7817
diff changeset
  2332
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2333
weekInYear
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2334
    "return the week number of the receiver - 1 for Jan, 1st.
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2335
     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
  2336
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2337
    ^ self class weekInYearOf:self
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2338
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2339
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2340
     Date today weekInYear    
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2341
     (Date newDay:1 year:2000) weekInYear   was a saturday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2342
     (Date newDay:2 year:2000) weekInYear   was a sunday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2343
     (Date newDay:3 year:2000) weekInYear   was a monday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2344
     (Date newDay:4 year:2000) weekInYear   was a tuesday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2345
     (Date newDay:5 year:2000) weekInYear   was a wed
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2346
     (Date newDay:6 year:2000) weekInYear   was a thursday
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2347
     (Date newDay:7 year:2000) weekInYear   was a fri
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2348
     (Date newDay:8 year:2000) weekInYear   was a sat
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2349
     (Date newDay:9 year:2000) weekInYear   was a sun
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2350
     (Date newDay:10 year:2000) weekInYear  was a monday
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2351
     (Date newDay:3 month:1 year:2001) weekInYear 
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2352
    "
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2353
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5515
diff changeset
  2354
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2355
weekday
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2356
    "return the week-day of the receiver as a string.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2357
     The returned string depends on the language setting.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2358
     Expect things like 'monday', 'tuesday' ...
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2359
     For ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2360
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2361
    ^ self class nameOfDay:(self dayInWeek)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2362
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2363
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2364
     Date today weekday
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2365
     (Date newDay:15 month:4 year:1959) weekday
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2366
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2367
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2368
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2369
year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2370
    "return the year (1..12) of the receiver"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2371
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2372
    ^ dateEncoding // (100*100)
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2373
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2374
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2375
     Date today year
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2376
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2377
!
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2378
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2379
year:year month:month day:day
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2380
    dateEncoding := self class encodeYear:year month:month day:day
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2381
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2382
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2383
!Date methodsFor:'arithmetic'!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2384
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2385
+ days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2386
    "return a new date representing 'days' after the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2387
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2388
     This is the same as #addDays."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2389
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2390
    ^ self class fromDays:(self asDays + days)
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2391
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2392
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2393
     Date today + 7.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2394
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2395
     Date today to:(Date today + 28) by:7 do:[:date|
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2396
        Transcript show:date weekday; show:', '; showCr:date
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2397
     ].
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2398
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2399
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2400
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2401
- aDateOrNumberOfDays
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2402
    "return the delta in days (anInteger) between 2 dates or 
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2403
     subtract a number of days from a date returning a Date"
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2404
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2405
    aDateOrNumberOfDays class == self class ifTrue:[
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2406
        ^ self asDays - aDateOrNumberOfDays asDays
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2407
    ].
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2408
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2409
    ^ self class fromDays:(self asDays - aDateOrNumberOfDays asInteger)
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2410
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2411
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2412
        Date today - Date yesterday
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2413
        Date today - 3
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2414
    "
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2415
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2416
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2417
addDays:days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2418
    "return a new date representing 'days' after the receiver.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2419
     The argument should be some kind of integer.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2420
     For ST-80 compatibility."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2421
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2422
    ^ self class fromDays:(self asDays + days)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2423
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2424
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2425
     Date today addDays:7
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2426
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2427
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2428
14331
sr
parents: 13736
diff changeset
  2429
addMonths:numberOfMonths
sr
parents: 13736
diff changeset
  2430
    "
sr
parents: 13736
diff changeset
  2431
     Return a new instance which added numberOfMonths to self months. Keep the day of month if possible.
sr
parents: 13736
diff changeset
  2432
     If the month of the new instance has fewer days than self dayOfMonth set the day to the last
sr
parents: 13736
diff changeset
  2433
     day of the new instance's month.
sr
parents: 13736
diff changeset
  2434
     Does (probably) not work correct for resulting dates before calendar reform.
sr
parents: 13736
diff changeset
  2435
    "
sr
parents: 13736
diff changeset
  2436
    |yearToAdd years monthsInYear tempDate newMonth newMonthAsDate|
sr
parents: 13736
diff changeset
  2437
sr
parents: 13736
diff changeset
  2438
    yearToAdd := 0.
sr
parents: 13736
diff changeset
  2439
    years := numberOfMonths // 12.
sr
parents: 13736
diff changeset
  2440
    monthsInYear := numberOfMonths \\ 12.
sr
parents: 13736
diff changeset
  2441
    tempDate := self addYears:years.  
sr
parents: 13736
diff changeset
  2442
sr
parents: 13736
diff changeset
  2443
    newMonth := tempDate month + monthsInYear.
sr
parents: 13736
diff changeset
  2444
    (newMonth between:1 and:12) ifFalse:[
sr
parents: 13736
diff changeset
  2445
        newMonth := newMonth \\ 12.
sr
parents: 13736
diff changeset
  2446
        yearToAdd := 1.
sr
parents: 13736
diff changeset
  2447
    ].
sr
parents: 13736
diff changeset
  2448
sr
parents: 13736
diff changeset
  2449
    newMonthAsDate := self class 
sr
parents: 13736
diff changeset
  2450
        newDay:1 
sr
parents: 13736
diff changeset
  2451
        month:newMonth 
sr
parents: 13736
diff changeset
  2452
        year:(tempDate year + yearToAdd).
sr
parents: 13736
diff changeset
  2453
sr
parents: 13736
diff changeset
  2454
    ^ self class 
sr
parents: 13736
diff changeset
  2455
        newDay:(newMonthAsDate daysInMonth min:tempDate day)
sr
parents: 13736
diff changeset
  2456
        month:newMonth 
sr
parents: 13736
diff changeset
  2457
        year:(tempDate year + yearToAdd)
sr
parents: 13736
diff changeset
  2458
sr
parents: 13736
diff changeset
  2459
    "Created: / 23-08-2012 / 11:04:17 / sr"
sr
parents: 13736
diff changeset
  2460
    "Created: / 24-08-2012 / 12:14:52 / anwild"
sr
parents: 13736
diff changeset
  2461
!
sr
parents: 13736
diff changeset
  2462
sr
parents: 13736
diff changeset
  2463
addMonthsUsingEncoding:numberOfMonths
sr
parents: 13736
diff changeset
  2464
    "
sr
parents: 13736
diff changeset
  2465
     Return a new instance which added numberOfMonths to self months. Keep the day of month if possible.
sr
parents: 13736
diff changeset
  2466
     If the month of the new instance has fewer days than self dayOfMonth set the day to the last
sr
parents: 13736
diff changeset
  2467
     day of the new instance's month.                                                           
sr
parents: 13736
diff changeset
  2468
     Does (probably) not work correct for resulting dates before calendar reform.
sr
parents: 13736
diff changeset
  2469
    "
sr
parents: 13736
diff changeset
  2470
    | newEncoding |
sr
parents: 13736
diff changeset
  2471
    newEncoding := dateEncoding 
sr
parents: 13736
diff changeset
  2472
                    + ((numberOfMonths + self month) // 12 * 10000)    "the new year"
sr
parents: 13736
diff changeset
  2473
                    + ((((numberOfMonths \\ 12) + self month) \\ 12) * 100)  "the new month"
sr
parents: 13736
diff changeset
  2474
                    - (self month * 100) "in the line above the new month is already completely calculated. So subtract the current month"
sr
parents: 13736
diff changeset
  2475
                    - self day  "in the line below the new day is already completely calculated. So subtract the current day"
sr
parents: 13736
diff changeset
  2476
                    + (self day min: self daysInMonth). "the new day considering the maximum number of days in the new month."
sr
parents: 13736
diff changeset
  2477
    ^ Date newDay: newEncoding \\ 100 month: (newEncoding // 100 \\ 100) year: newEncoding // 10000.
sr
parents: 13736
diff changeset
  2478
sr
parents: 13736
diff changeset
  2479
    "Created: / 24-08-2012 / 15:18:44 / anwild"
sr
parents: 13736
diff changeset
  2480
!
sr
parents: 13736
diff changeset
  2481
sr
parents: 13736
diff changeset
  2482
addYears:numberOfYears
sr
parents: 13736
diff changeset
  2483
    "
sr
parents: 13736
diff changeset
  2484
     Return a new instance which added numberOfYears to self. Take care about leap years.
sr
parents: 13736
diff changeset
  2485
    "
sr
parents: 13736
diff changeset
  2486
    |newYear newDay|
sr
parents: 13736
diff changeset
  2487
sr
parents: 13736
diff changeset
  2488
    newYear := self year + numberOfYears.
sr
parents: 13736
diff changeset
  2489
sr
parents: 13736
diff changeset
  2490
    (self day = 29 and:[self month == 2]) ifTrue:[
sr
parents: 13736
diff changeset
  2491
        (self class leapYear:newYear) ifTrue: [
sr
parents: 13736
diff changeset
  2492
            newDay := self day.
sr
parents: 13736
diff changeset
  2493
        ] ifFalse: [
sr
parents: 13736
diff changeset
  2494
            newDay := 28.
sr
parents: 13736
diff changeset
  2495
        ].
sr
parents: 13736
diff changeset
  2496
    ] ifFalse: [
sr
parents: 13736
diff changeset
  2497
        newDay := self day.
sr
parents: 13736
diff changeset
  2498
    ].
sr
parents: 13736
diff changeset
  2499
sr
parents: 13736
diff changeset
  2500
    ^ self class 
sr
parents: 13736
diff changeset
  2501
        newDay:newDay 
sr
parents: 13736
diff changeset
  2502
        month:self month 
sr
parents: 13736
diff changeset
  2503
        year:newYear
sr
parents: 13736
diff changeset
  2504
sr
parents: 13736
diff changeset
  2505
    "Created: / 23-08-2012 / 11:05:04 / sr"
sr
parents: 13736
diff changeset
  2506
    "Created: / 24-08-2012 / 12:14:09 / anwild"
sr
parents: 13736
diff changeset
  2507
!
sr
parents: 13736
diff changeset
  2508
9262
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2509
daysSince:aDate
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2510
    "return the number of days between the receiver and the argument,
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2511
     aDate, which should be some kind of date"
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2512
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2513
    ^ self asDays - aDate asDays
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2514
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2515
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2516
     Date today daysSince:(Date newDay:1 month:1 year:1901) 
9262
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2517
    "
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2518
!
705366a61be2 +daysSince:
Claus Gittinger <cg@exept.de>
parents: 9220
diff changeset
  2519
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2520
daysUntil:aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2521
    "return the number of days between the receiver and the argument,
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2522
     aDate, which should be some kind of date"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2523
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2524
    ^ aDate asDays - self asDays
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2525
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2526
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2527
     (Date newDay:24 month:12 year:1994) daysUntil:(Date day:1 month:1 year:1995)
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2528
     (Date newDay:1 month:2 year:1992) daysUntil:(Date day:1 month:3 year:1992)
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2529
     (Date newDay:1 month:2 year:1994) daysUntil:(Date day:1 month:3 year:1994)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2530
    
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2531
     |delta|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2532
     delta := Date today
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2533
                daysUntil:(Date newDay:25 month:12 year:Date today year).
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2534
     Transcript show:'still ';
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2535
                show:delta ;
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2536
                showCR:' days till xmas'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2537
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2538
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2539
11741
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2540
firstDayInPreviousMonth:nMonths
11742
09f7e7b1c93b changed #firstDayInPreviousMonth:
Claus Gittinger <cg@exept.de>
parents: 11741
diff changeset
  2541
    "Return the first day of a previous month (0=this month, 1=prev. month, etc.)"
11741
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2542
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2543
    |month year|
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2544
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2545
    month := self month.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2546
    year := self year.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2547
    month := month - nMonths.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2548
    month < 1 ifTrue:[
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2549
        year := year - 1 - (month negated // 12).
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2550
        month := (12 - (month negated \\ 12)).
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2551
    ].
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2552
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2553
    ^ Date newDay:1 month:month year:year.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2554
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2555
    "
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2556
     (Date newDay:3 month:6 year:2009) firstDayInMonth     
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2557
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:0    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2558
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:5    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2559
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:6    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2560
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:7    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2561
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:17    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2562
     (Date newDay:3 month:6 year:2009) firstDayInPreviousMonth:18    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2563
    "
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2564
!
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2565
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2566
firstDayOfPreviousMonth:nMonths
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2567
    "Return the first day of a previous month (0=this month)"
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2568
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2569
    |month year|
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2570
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2571
    month := self month.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2572
    year := self year.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2573
    month := month - nMonths.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2574
    month < 1 ifTrue:[
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2575
        year := year - 1 - (month negated // 12).
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2576
        month := (12 - (month negated \\ 12)).
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2577
    ].
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2578
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2579
    ^ Date newDay:1 month:month year:year.
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2580
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2581
    "
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2582
     (Date newDay:3 month:6 year:2009) firstDayInMonth     
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2583
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:0    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2584
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:5    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2585
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:6    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2586
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:7    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2587
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:17    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2588
     (Date newDay:3 month:6 year:2009) firstDayOfPreviousMonth:18    
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2589
    "
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2590
!
0ff07acd680f category changes
Claus Gittinger <cg@exept.de>
parents: 11740
diff changeset
  2591
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2592
subtractDate:aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2593
    "return the number of days between the receiver and aDate"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2594
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2595
    ^ self asDays - aDate asDays
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2596
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2597
    "
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2598
    (Date newDay:1 month:1 year:1995) subtractDate:(Date newDay:24 month:12 year:1994)
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2599
    (Date newDay:1 month:3 year:1992) subtractDate:(Date newDay:1 month:2 year:1992)
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2600
    (Date newDay:1 month:3 year:1994) subtractDate:(Date newDay:1 month:2 year:1994)
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2601
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2602
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2603
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2604
subtractDays:days
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2605
    "return a new date representing 'days' before the receiver.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2606
     The argument should be some kind of integer.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2607
     For ST-80 compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2608
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2609
    ^ self class fromDays:(self asDays - days)
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2610
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2611
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2612
     Date today subtractDays:7
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2613
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2614
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2615
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2616
!Date methodsFor:'comparing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2617
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2618
< aDate
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2619
    "return true, if the date represented by the receiver
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2620
     is before the argument, aDate"
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2621
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2622
    (aDate isMemberOf:Date) ifTrue:[
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2623
        ^ dateEncoding < aDate dateEncoding
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2624
    ].
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2625
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2626
    "the argument must understand year, month and day to be
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2627
     comparable, whatever it is"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2628
12796
e43e18448923 changed:
Claus Gittinger <cg@exept.de>
parents: 12725
diff changeset
  2629
    ^ dateEncoding < (Date encodeYear:aDate year month:aDate month day:aDate day)
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2630
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2631
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2632
        Date today < (Date day:24 month:12 year:2000)
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2633
        Date today < (Date day:24 month:12 year:1900)
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2634
        Date today < Timestamp now
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2635
        Date today-1 < Timestamp now
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2636
    "
29
b6577a9f8cee *** empty log message ***
claus
parents: 10
diff changeset
  2637
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2638
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2639
= aDate
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2640
    "return true, if the date represented by the receiver
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2641
     is the same as the one represented by argument, aDate"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2642
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2643
    (aDate isMemberOf:Date) ifFalse:[^ false].
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2644
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2645
    ^ dateEncoding = aDate dateEncoding
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2646
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2647
    "the argument must understand year, month and day to be
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2648
     comparable, whatever it is"
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2649
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2650
"
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2651
    ^ dateEncoding = (Date encodeYear:aDate year
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2652
				month:aDate month
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2653
				  day:aDate day)
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  2654
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2655
    "Date today = ((Date today plusDays:7) minusDays:7)"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2656
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2657
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2658
> aDate
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2659
    "return true, if the date represented by the receiver
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2660
     is after the argument, aDate"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2661
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2662
    (aDate isMemberOf:Date) ifTrue:[
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2663
        ^ dateEncoding > aDate dateEncoding
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2664
    ].
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2665
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2666
    "the argument must understand year, month and day to be
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2667
     comparable, whatever it is"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2668
12796
e43e18448923 changed:
Claus Gittinger <cg@exept.de>
parents: 12725
diff changeset
  2669
    ^ dateEncoding > (Date encodeYear:aDate year month:aDate month day:aDate day)
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2670
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2671
    "
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2672
      Date today > (Date newDay:24 month:12 year:2099)
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2673
      Date today > (Date newDay:24 month:12 year:1900)
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2674
      Date today > Timestamp now
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  2675
      Date today+1 > Timestamp now
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2676
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2677
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2678
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2679
hash
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2680
    "return an integer useful for hashing on dates"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2681
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2682
    ^ dateEncoding
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2683
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2684
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2685
!Date methodsFor:'converting'!
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2686
4408
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2687
asDate
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2688
    "return the receiver"
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2689
3d76920644f6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4407
diff changeset
  2690
    ^ self
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2691
!
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2692
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2693
asLocalTimestamp
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2694
    "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
  2695
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2696
    ^ Timestamp 
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2697
        year:(self year) month:(self month) day:(self day)  
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2698
        hour:0 minute:0 second:0 millisecond:0
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2699
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2700
    "
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2701
     Date today asLocalTimestamp
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2702
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2703
!
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2704
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2705
asTimestamp
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2706
    "return an TimeStamp instance, representing midnight of last night"
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2707
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2708
    ^ self asLocalTimestamp
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2709
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2710
    "
8247
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2711
     Date today asTimestamp
146e7e7dcf57 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8201
diff changeset
  2712
    "
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2713
!
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2714
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2715
asUtcTimestamp
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2716
    "return an TimeStamp instance, representing midnight of last night"
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2717
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2718
    ^ UtcTimestamp 
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2719
        year:(self year) month:(self month) day:(self day)  
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2720
        hour:0 minute:0 second:0 millisecond:0
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2721
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2722
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2723
     Date today asUtcTimestamp
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2724
    "
5775
92b02a4a7e83 week in year - again (based upon thursday-rule)
Claus Gittinger <cg@exept.de>
parents: 5679
diff changeset
  2725
! !
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  2726
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2727
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2728
!Date methodsFor:'obsolete'!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2729
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2730
asAbsoluteTime
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2731
    "deprecated, use #asTimestamp"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2732
    <resource:#obsolete>
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2733
12001
75a4c5f8cdc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11895
diff changeset
  2734
    self obsoleteMethodWarning:'use #asTimestamp'.
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2735
    ^ self asTimestamp
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2736
!
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2737
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2738
dayCount
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2739
    "return the number of days since 1st. Jan. 1901;
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2740
     starting with 0 for this date.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2741
     Date>>fromDays: is the reverse operation.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2742
     Obsolete:
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2743
         please use asDays for ST-80 compatibility"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2744
    <resource:#obsolete>
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2745
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2746
    ^ self asDays.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2747
!
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2748
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2749
dayName
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2750
    "return the week-day of the receiver as a string.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2751
     The returned string depends on the language setting.
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2752
     Expect things like 'monday', 'tuesday' ...
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2753
     Obsolete:
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2754
        use #weekday for ST-80 compatibility"
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2755
    <resource:#obsolete>
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2756
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2757
    ^ self weekday
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2758
!
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  2759
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2760
leap
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2761
    "return true, if the receivers year is a leap year"
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2762
    <resource: #obsolete>
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2763
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2764
    ^ self isLeapYear
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2765
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2766
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2767
     Date today leap
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2768
     (Date newDay:1 month:1 year:1992) leap
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2769
    "
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2770
!
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  2771
8201
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2772
minusDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2773
    "return a new date representing 'days' before the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2774
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2775
     Obsolete:
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2776
         Please dont use this method since it will vanish.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2777
         Use #subtractDays: instead for ST-80 compatibility."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2778
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2779
    <resource: #obsolete>
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2780
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2781
    self obsoleteMethodWarning:'use #substractDays:'.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2782
    ^ self subtractDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2783
!
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2784
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2785
plusDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2786
    "return a new date representing 'days' after the receiver.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2787
     The argument should be some kind of integer.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2788
     Obsolete:
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2789
         Please dont use this method since it will vanish.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2790
         Use #addDays: instead for ST-80 compatibility."
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2791
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2792
    <resource: #obsolete>
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2793
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2794
    self obsoleteMethodWarning:'use #addDays:'.
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2795
    ^ self addDays:days
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2796
! !
d8ae80af9651 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8196
diff changeset
  2797
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 29
diff changeset
  2798
!Date methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2799
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2800
addPrintBindingsTo:aDictionary
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2801
    self addPrintBindingsTo:aDictionary language:nil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2802
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2803
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2804
addPrintBindingsTo:aDictionary language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2805
    "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
  2806
     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
  2807
     valid format items are:
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2808
        %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
  2809
        %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
  2810
        %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
  2811
        %y              - year, full                     i.e. 1999, 2004
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2812
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2813
     special:
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2814
        %D              - day - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2815
        %M              - month - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2816
        %W              - week in year - unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2817
        %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
  2818
13174
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2819
        %(weekDay)      - day in week (1->monday, 2->tuesday, ... ,7->sunday)
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2820
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2821
        %(dayName)      - full day name     
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2822
        %(DayName)      - full day name, first character uppercase      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2823
        %(DAYNAME)      - full day name, all uppercase       
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2824
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2825
        %(monthName)    - full month name     
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2826
        %(MonthName)    - full month name, first character uppercase      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2827
        %(MONTHNAME)    - full month name, all uppercase       
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2828
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2829
        %(shortDayName) - short (abbreviated) day name     
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2830
        %(ShortDayName) - short (abbreviated) day name, first character uppercase      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2831
        %(SHORTDAYNAME) - short (abbreviated) day name, all uppercase       
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2832
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2833
        %(shortMonthName) - short (abbreviated) month name     
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2834
        %(ShortMonthName) - short (abbreviated) month name, first character uppercase      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2835
        %(SHORTMONTHNAME) - short (abbreviated) month name, all uppercase       
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2836
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2837
        %(nth)          - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2838
        %(weekDayNth)   - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')      
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2839
        %(weekNth)      - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')"     
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2840
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2841
    |day ds dsPadded0 dsPaddedB month ms msPadded0 msPaddedB 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2842
     year weekInYear monthName shortMonthName 
12663
b64be8b3cd88 changed: #addPrintBindingsTo:language:
sr
parents: 12661
diff changeset
  2843
     dayInWeek dayOfWeek dayName shortDayName ws wsPadded0|
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2844
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2845
    day := self day.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2846
    ds := day printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2847
    dsPaddedB := day printStringLeftPaddedTo:2.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2848
    dsPadded0 := day printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2849
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2850
    month := self month.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2851
    ms := month printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2852
    msPaddedB := month printStringLeftPaddedTo:2.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2853
    msPadded0 := month printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2854
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2855
    year := self year.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2856
    weekInYear := self weekInYear.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2857
    ws := weekInYear printString.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2858
    wsPadded0 := weekInYear printStringLeftPaddedTo:2 with:$0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2859
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2860
    dayInWeek := self dayInWeek.   "/ 1 .. 7
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2861
    dayOfWeek := self dayOfWeek.   "/ 0 .. 6
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2862
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2863
    monthName := self class nameOfMonth:(self month) language:languageOrNil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2864
    dayName := self class nameOfDay:dayInWeek language:languageOrNil.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2865
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2866
    aDictionary at:#day put:dsPadded0.          "/ 0-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2867
    aDictionary at:#daypadded put:dsPaddedB.    "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2868
    aDictionary at:#dayPadded put:dsPaddedB.    "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2869
    aDictionary at:#Day put:ds.                 "/ unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2870
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2871
    aDictionary at:#month put:msPadded0.        "/ 0-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2872
    aDictionary at:#monthPadded put:msPaddedB.  "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2873
    aDictionary at:#monthpadded put:msPaddedB.  "/ Blank-padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2874
    aDictionary at:#Month put:ms.               "/ unpadded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2875
    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
  2876
    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
  2877
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2878
    aDictionary at:#year put:year.              "/ padded
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2879
    aDictionary at:#week put:wsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2880
    aDictionary at:#Week put:ws.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2881
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2882
    year ~~ Date today year ifTrue:[
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2883
        aDictionary at:#yearOrTime put:(' ' , year printString).
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2884
    ].
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2885
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2886
    aDictionary at:$d put:dsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2887
    aDictionary at:$D put:ds.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2888
    aDictionary at:$m put:msPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2889
    aDictionary at:$M put:ms.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2890
    aDictionary at:$y put:year.
12663
b64be8b3cd88 changed: #addPrintBindingsTo:language:
sr
parents: 12661
diff changeset
  2891
    aDictionary at:$Y put:((year \\ 100) printStringLeftPaddedTo:2 with:$0).
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2892
    aDictionary at:$w put:wsPadded0.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2893
    aDictionary at:$W put:ws.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2894
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2895
    aDictionary at:#monthName put:monthName.
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2896
    aDictionary at:#monthname put:monthName asLowercase.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2897
    aDictionary at:#MonthName put:monthName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2898
    aDictionary at:#MONTHNAME put:monthName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2899
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2900
    aDictionary at:#dayName put:dayName.
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2901
    aDictionary at:#dayname put:dayName asLowercase.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2902
    aDictionary at:#DayName put:dayName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2903
    aDictionary at:#DAYNAME put:dayName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2904
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2905
    aDictionary at:#weekDay put:dayInWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2906
    aDictionary at:#weekday put:dayInWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2907
    aDictionary at:#weekDayUS put:dayOfWeek.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2908
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2909
    aDictionary at:#shortDayName put:(shortDayName := self class abbreviatedNameOfDay:(self dayInWeek) language:languageOrNil).
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2910
    aDictionary at:#shortdayname put:shortDayName asLowercase.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2911
    aDictionary at:#ShortDayName put:shortDayName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2912
    aDictionary at:#SHORTDAYNAME put:shortDayName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2913
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2914
    aDictionary at:#shortMonthName put:(shortMonthName := self class abbreviatedNameOfMonth:(self month) language:languageOrNil).
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2915
    aDictionary at:#shortmonthname put:shortMonthName asLowercase.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2916
    aDictionary at:#ShortMonthName put:shortMonthName asUppercaseFirst.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2917
    aDictionary at:#SHORTMONTHNAME put:shortMonthName asUppercase.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2918
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2919
    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
  2920
                                     "/ 0   1    2    3    4    5    6    7    8    9
13174
2fe9eccdb8e4 comment/format in: #addPrintBindingsTo:language:
Stefan Vogel <sv@exept.de>
parents: 12814
diff changeset
  2921
    aDictionary at:#weekDayNth put:(#('th' 'st' 'nd' 'rd' 'th' 'th' 'th') at:(dayOfWeek-1) \\ 10 + 1). 
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2922
                                     "/ 0   1    2    3    4    5    6      
14496
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2923
    aDictionary at:#weekDayUSNth put:(#('st' 'nd' 'rd' 'th' 'th' 'th' 'th') at:(dayOfWeek-1) \\ 10 + 1). 
86af3ba4d272 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14331
diff changeset
  2924
                                     "/ 0   1    2    3    4    5    6      
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2925
    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
  2926
                                     "/ 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
  2927
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2928
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2929
printOn:aStream
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2930
    "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
  2931
10908
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2932
    self printOn:aStream format:(self class defaultFormatString) language:nil.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2933
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2934
    "
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2935
     Date today printOn:Transcript. Transcript cr.
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2936
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2937
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2938
    "Modified: 27.8.1995 / 01:01:49 / claus"
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2939
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2940
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2941
printOn:aStream format:aFormatStringOrSqueakFormatArray
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2942
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2943
     see #addPrintBindingsTo: for a list of valid format strings"
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2944
10908
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2945
    self printOn:aStream format:aFormatStringOrSqueakFormatArray language:nil.
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2946
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2947
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2948
     Date today printOn:Transcript format:'%y%m%d'                                      (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2949
     Date today printOn:Transcript format:'%y-%m-%d'                                    (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2950
     Date today printOn:Transcript format:'%y-W%w'                                      (iso format - working week)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2951
     Date today printOn:Transcript format:'%d-%m-%y'                                    (european trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2952
     Date today printOn:Transcript format:'%m/%d/%y'                                    (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2953
     Date today printOn:Transcript format:'%D-%(monthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2954
     Date today printOn:Transcript format:'%D-%(MonthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2955
     Date today printOn:Transcript format:'%D-%(MONTHNAME)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2956
     Date today printOn:Transcript format:'%(DayName), %D%(nth) of %(MonthName), %y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2957
     Date today printOn:Transcript format:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2958
     Date today printOn:Transcript format:'%d%m%Y'                                      (millenium bug format - danger)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2959
     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
  2960
    "
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2961
    "
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2962
     String streamContents:[:s |
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2963
        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
  2964
     ]    
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2965
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2966
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2967
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2968
printOn:aStream format:aFormatStringOrSqueakFormatArray language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2969
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2970
     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
  2971
     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
  2972
10908
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2973
    |dict|
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2974
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2975
    aFormatStringOrSqueakFormatArray isArray ifTrue:[
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2976
        "backward compatibility: a squeak/st80 format array"
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2977
        self printFormat:aFormatStringOrSqueakFormatArray on:aStream.
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2978
        ^ self.
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2979
    ].
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2980
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2981
    dict := IdentityDictionary new.
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2982
    self addPrintBindingsTo:dict language:languageOrNil.
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2983
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2984
    aFormatStringOrSqueakFormatArray expandPlaceholdersWith:dict on:aStream
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  2985
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2986
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2987
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2988
     Date today 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2989
        printOn:Transcript 
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2990
        format:'%y%m%d'                             
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2991
        language:#en                             
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  2992
    "
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2993
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  2994
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2995
printOn:aStream language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2996
    "append a printed representation of the receiver to aStream.
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  2997
     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
  2998
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  2999
    |format|
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3000
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  3001
    (DefaultFormats isNil or:[EnvironmentChange]) ifTrue:[
8145
e24be75b5f5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
  3002
        self class initNames
8118
efc99c0f68bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8111
diff changeset
  3003
    ].
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  3004
    format := DefaultFormats at:(languageOrNil ? Language) ifAbsent:[DefaultFormats at:#en].
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  3005
    self printOn:aStream format:format language:languageOrNil.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3006
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3007
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3008
     Date today printOn:Transcript language:#en
13195
d3a5d03a1c1c comment/format in: #printOn:language:
Claus Gittinger <cg@exept.de>
parents: 13174
diff changeset
  3009
     Date today printOn:Transcript language:#de
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3010
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3011
8179
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  3012
    "Modified: / 27-08-1995 / 01:01:49 / claus"
eea4776d7848 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8145
diff changeset
  3013
    "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
  3014
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3015
7023
6092f474bbba *** empty log message ***
penk
parents: 7005
diff changeset
  3016
printStringFormat:aFormatStringOrArray
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3017
    "print using a format string;
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3018
     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
  3019
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3020
    ^ self printStringFormat:aFormatStringOrArray language:nil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3021
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3022
    "
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3023
     Date today printStringFormat:'%y%m%d'                                      (iso format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3024
     Date today printStringFormat:'%y-%m-%d'                                    (iso format)
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3025
     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
  3026
     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
  3027
     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
  3028
     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
  3029
     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
  3030
     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
  3031
     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
  3032
     Date today printStringFormat:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3033
     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
  3034
     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
  3035
     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
  3036
     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
  3037
    "
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3038
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3039
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3040
printStringFormat:aFormatStringOrArray language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3041
    "print using a format string;
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7961
diff changeset
  3042
     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
  3043
     see #addPrintBindingsTo: for a list of valid format strings"
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3044
10908
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  3045
    |s|
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  3046
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  3047
    s := WriteStream on:(String new:20).
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  3048
    self printOn:s format:aFormatStringOrArray language:languageOrNil.
88b75a3ed4eb Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10879
diff changeset
  3049
    ^ s contents.
5778
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3050
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3051
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3052
     Date today printStringFormat:'%y%m%d'                                      (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3053
     Date today printStringFormat:'%y-%m-%d'                                    (iso format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3054
     Date today printStringFormat:'%y-W%w'                                      (iso format - working week)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3055
     Date today printStringFormat:'%d-%m-%y'                                    (european trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3056
     Date today printStringFormat:'%m/%d/%y'                                    (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3057
     Date today printStringFormat:'%D-%(monthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3058
     Date today printStringFormat:'%D-%(MonthName)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3059
     Date today printStringFormat:'%D-%(MONTHNAME)-%y'                          (us trivia format)
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3060
     Date today printStringFormat:'%(DayName), %D%(nth) of %(MonthName), %y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3061
     Date today printStringFormat:'%(ShortDayName), %D-%(ShortMonthName)-%y'   
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3062
     Date today printStringFormat:'%d%m%Y'                                      (millenium bug format - danger)
7327
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  3063
     Date today printStringFormat:'Today is day %(weekDay) of the week'              
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  3064
     Date today printStringFormat:'Today is the %(weekDay)%(weekDayNth) day of the week'     
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7299
diff changeset
  3065
     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
  3066
    "
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3067
!
f1dbbbf00aaf better printing
Claus Gittinger <cg@exept.de>
parents: 5775
diff changeset
  3068
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3069
storeOn:aStream
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3070
    "append a representation to aStream, from which the receiver
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3071
     can be reconstructed"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3072
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3073
    aStream nextPutAll:'('; nextPutAll:'Date day:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3074
    self day printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3075
    aStream nextPutAll:' month:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3076
    self month printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3077
    aStream nextPutAll:' year:'.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3078
    self year printOn:aStream.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3079
    aStream nextPutAll:')'
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3080
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3081
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3082
     Date today storeOn:Transcript
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3083
     Date today storeString
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3084
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3085
! !
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3086
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7023
diff changeset
  3087
!Date methodsFor:'private-accessing'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3088
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3089
dateEncoding
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3090
    "the internal encoding is stricktly private, 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3091
     and should not be used outside."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3092
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3093
    ^ dateEncoding
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3094
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3095
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3096
dateEncoding:anInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3097
    "the internal encoding is stricktly private, 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3098
     and should not be used outside."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3099
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3100
    dateEncoding := anInteger
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3101
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3102
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3103
fromOSTime:osTime
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3104
    "set my dateEncoding as date in the local timezone from an OS time.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3105
     This somewhat clumsy implementation hides the OS's date representation
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3106
     (i.e. makes this class independent of what the OS starts its time values with).
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  3107
     Don't use this method, the osTime representation is totally unportable."
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  3108
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  3109
    |v|
5858
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  3110
df08a7ccbdb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5830
diff changeset
  3111
    v := OperatingSystem computeTimeAndDateFrom:osTime.
11350
68606ef82813 Fix examples. Use common dateEncoding methods.
Stefan Vogel <sv@exept.de>
parents: 11349
diff changeset
  3112
    dateEncoding := self class encodeYear:v year month:v month day:v day
1501
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  3113
2589005c849d time changes
Claus Gittinger <cg@exept.de>
parents: 1468
diff changeset
  3114
    "Modified: 1.7.1996 / 15:23:12 / cg"
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3115
!
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3116
13234
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3117
fromUtcOSTime:osTime
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3118
    "set my dateEncoding as UTC date from an OS time.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3119
     This somewhat clumsy implementation hides the OS's date representation
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3120
     (i.e. makes this class independent of what the OS starts its time values with).
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3121
     Don't use this method, the osTime representation is totally unportable."
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3122
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3123
    |v|
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3124
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3125
    v := OperatingSystem computeUTCTimeAndDateFrom:osTime.
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3126
    dateEncoding := self class encodeYear:v year month:v month day:v day
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3127
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3128
    "Modified: 1.7.1996 / 15:23:12 / cg"
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3129
!
Stefan Vogel <sv@exept.de>
parents: 13195
diff changeset
  3130
11593
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3131
getMilliseconds
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3132
    "compatibility with Timestamp for comparing"
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3133
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3134
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3135
       ((Timestamp epoch addDays:365) asDate asDays - 365)      -> 25202
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3136
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3137
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3138
    ^ 1000 * 60*60*24 * (self asDays - 25202)
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3139
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3140
    "
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3141
     Date today asTimestamp getMilliseconds
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3142
        -
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3143
     Date today getMilliseconds
4d5d359f2008 Allow for comparisons with TimeStamp
Stefan Vogel <sv@exept.de>
parents: 11553
diff changeset
  3144
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3145
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3146
11176
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3147
!Date methodsFor:'visiting'!
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3148
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3149
acceptVisitor:aVisitor with:aParameter
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3150
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3151
    ^ aVisitor visitDate:self with:aParameter
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3152
! !
766eb30bb98a Add visitor method
Stefan Vogel <sv@exept.de>
parents: 11128
diff changeset
  3153
2706
878723bc99fc added #shortPrintString for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1701
diff changeset
  3154
!Date class methodsFor:'documentation'!
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3155
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3156
version
14714
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  3157
    ^ '$Header: /cvs/stx/stx/libbasic/Date.st,v 1.145 2013-01-25 13:34:56 cg Exp $'
12097
e83549637ebf changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12001
diff changeset
  3158
!
e83549637ebf changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12001
diff changeset
  3159
e83549637ebf changed:7 methods
Claus Gittinger <cg@exept.de>
parents: 12001
diff changeset
  3160
version_CVS
14714
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  3161
    ^ '$Header: /cvs/stx/stx/libbasic/Date.st,v 1.145 2013-01-25 13:34:56 cg Exp $'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3162
! !
6795
519894240d97 more printFormats: yearOrDate (as in unix); dayPadded and monthPadded
penk
parents: 6624
diff changeset
  3163
14714
cebd5cc86824 class: Date
Claus Gittinger <cg@exept.de>
parents: 14624
diff changeset
  3164
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3165
Date initialize!