Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Globalization « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95392d51e96fd6df3bd4774e6685345bfeee0fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs : check if pattern array is empty or not. Now
	  icall fills them as possible empty list.

2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>

	* DateTimeFormatInfo.cs: added TODO for serialization
	* GregorianCalendar.cs:: added TODO for serialization
	* HebrewCalendar.cs: added TODO for serialization
	* HijriCalendar.cs: added TODO for serialization
	* JapaneseCalendar.cs: added TODO for serialization
	* JulianCalendar.cs: added TODO for serialization
	* KoreanCalendar.cs: added TODO for serialization
	* TaiwanCalendar.cs: added TODO for serialization
	* ThaiBuddhistCalendar.cs: added TODO for serialization

2004-06-08  Dick Porter  <dick@ximian.com>

	* CultureInfo.cs: Make calendar_data readonly, to match the
	const-ness in the runtime.

2004-05-28  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs : In fact GetAllDateTimePatterns() returns
	  non-unique results.  Just reordered return values looking at MS
	  invariant behavior.

2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs : 'U' is in fact the same as 'F' for pattern
	  strings. Thanks to kangaroo for the hint.

2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs : Fixed longtimes and shorttimes (exchanged).

2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs : Added some string[] fields for
	  GetAllDateTimePatterns(char). The fields will be filled in metadata
	  and culture info table. Added improved patterns for 
	  GetAllDateTimePatterns() (right now works only for invariant).
	* CultureInfo.cs : Use InvariantInfo for InvariantCulture.

2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTimeFormatInfo.cs :
	  hack implementation for GetAllDateTimePatterns().

2004-05-17  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: Invariant culture has the invariant culture as
	its parent....<insert joke about the south>. It is readonly so we
	can return this.
	
2004-05-17  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: Properify error messages when invalid lcid's are
	used.

2004-05-15  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: Initialize optional calendars. A pointer to an
	array of ints is passed back from the runtime to the CultureInfo
	object. The ints store the calendar type and any optional data
	needed to construct the calendar.
	
2004-05-14  Dick Porter  <dick@ximian.com>

	* HebrewCalendar.cs: Stubbed ToFourDigitYear()

	* HijriCalendar.cs: Stubbed HijriAdjustment

2004-05-13  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: You can access DateTimeFormat and NumberFormat
	from the invariant culture.
	
2004-05-13  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: DateTimeFormat and NumberFormat can not be
	accessed for neutral cultures.
	
2004-04-30  Dick Porter  <dick@ximian.com>

	* StringInfo.cs: 
	* TextElementEnumerator.cs: Implemented

2004-04-27  Jackson Harper <jackson@ximian.com>

	* CultureInfo.cs: Make specific names lower case, because all data
	in the culture info tables is lowercase.
	
2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* CultureInfo.cs: Call invariant String.ToLower
	* RegionInfo.cs: Call invariant String.ToUpper

2004-04-11  Atsushi Enomoto  <atsushi@ximian.com>

	* NumberFormatInfo.cs : All GetXXXGroupSizes() should not return
	  internal array. Return clone as MS.NET does.

	  There still looks somewhere breaking CurrentInfo.

2004-04-08  Lluis Sanchez Gual  <lluis@ximian.com>

	* CompareInfo.cs, CultureInfo.cs, NumberFormatInfo.cs, TextInfo.cs:
	Made those serializable-compatible with MS.NET: modified fields names to 
	match MS.NET ones, and in CultureInfo added a flag to control when a
	deserialized instance need to be initialized.

2004-04-07  Jackson Harper  <jackson@ximian.com>

	* CultureInfo.cs: Use new ICUless implementation in the runtime.
	* CompareInfo.cs: Get ICU name from a cultureinfo object instead
	of looking it up in the culture map.
	* RegionInfo.cs: Dont check if the LCID is neutral unless its not
	found in the switch. Avoids an icall.
	
2004-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* NumberFormatInfo.cs: this fixes bug #56000 for me. And it doesn't
	break anything as NumberFormatInfo is sealed.

2004-02-14  Atsushi Enomoto  <atsushi@ximian.com>

	* NumberFormatInfo.cs : CurrentInfo should not return clone every 
	  time (MS.NET returns the same object; try object.ReferenceEquals()).

2004-02-08 David Sheldon <dave-mono@earth.li>

	* NumberFormatInfo.cs: When parsing the percentages, put the data 
	  into PercentDecimalDigits/PercentGroupLengths, rather than trashing
	  the NumberDecimatDigits etc. This also means that the percent format
	  info gets set.

2004-01-27  David Sheldon <dave-mono@earth.li>

	* NumberFormatInfo.cs: InitPatterns: it seems that the patterns in 
	  ICU use digitPattern, not zeroPattern for the spaces after the 
	  decimal point. 

2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CultureInfo.cs: Parent returns null when lcid == parent_lcid. Fixes
	bug #52102.

2003-12-20 Ben Maurer  <bmaurer@users.sourceforge.net>

	* CompareInfo.cs: Replace blah == "" with blah.Length == 0.
	MUCH faster. Note, we dont need to check for nulls, because
	the properties were used in other places.

2003-12-19  Dick Porter  <dick@ximian.com>

	* CompareInfo.cs: Added assorted shortcuts when comparing empty
	strings.  Fixed offset and length range checks to flag when <0.
	Broke test that offset >= string length to match actual ms
	behaviour (sigh.)  Fixes bug 52310.

2003-12-06  Dick Porter  <dick@ximian.com>

	* CompareInfo.cs: Don't build strings in Compare, IndexOf and
	LastIndexOf methods.  Avoid the icall in IndexOf and LastIndexOf
	if the search parameter is a char and the CompareOptions include
	Ordinal.

2003-12-04  Dick Porter  <dick@ximian.com>

	* CompareInfo.cs: Implement the deserialization callback

	* CultureInfo.cs: Allow CompareInfo to see the CultureMap so that
	it can construct the ICU collator itself

2003-12-02  Dick Porter  <dick@ximian.com>

	* NumberFormatInfo.cs: Helper called by runtime locale
	construction from ICU.  Patch by Mohammad DAMT (mdamt@cdl2000.com).

2003-12-01  Dick Porter  <dick@ximian.com>

	* CultureInfo.cs: Culture name creation is case-insensitive.
	Implemented CurrentCulture and CurrentUICulture.

	* CompareInfo.cs: Fix IndexOf and LastIndexOf so that they work
	for combining characters.

2003-11-05  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DateTimeFormatInfo.cs: Hack an era for US culture. We must look
	for other ways to get the ERA string.

2003-10-21  Dick Porter  <dick@ximian.com>

	* TextInfo.cs: 
	* CultureInfo.cs: Implement TextInfo.GetHashCode().  Fixes bug
	49923.

2003-10-09  Dick Porter  <dick@ximian.com>

	* CultureInfo.cs: Implemented, with internal calls to ICU apart
	from the Invariant culture.
	
	* SortKey.cs:
	* CompareInfo.cs: Implemented

	* DateTimeFormatInfo.cs: Fixed the worst of the formatting,
	construct default FullDateTimePattern on the fly.

2003-08-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Locale.cs: Removed (added new version to Assembly directory)

2003-07-23  Duncan Mak  <duncan@ximian.com>

	* DateTimeFormatInfo.cs: theInvariantDateTimeFormatInfo should not
	be public.

2003-05-11  Ben Maurer  <bmaurer@users.sourceforge.net>

	* *Calendar.cs: Implemented the TwoDigitYearMax property.
	
2003-04-22  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* NumberFormatInfo.cs: Method CurrentInfo now returns the "real"
	CurrentInfo (Thread.CurrentThread.CurrentCulture.NumberFormat).

2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CultureInfo.cs:
	(NameToID): make it case insensitive and use a hashtable instead of
	comparing all the strings.

Mon Nov 18 13:02:09 CET 2002 Paolo Molaro <lupus@ximian.com>

	* CultureInfo.cs: implemented Equals and GetHashCode.

2002-10-17  Duncan Mak  <duncan@ximian.com>

	* CultureInfo.cs (TextInfo): return a TextInfo in the property.

	* TextInfo.cs (ToLower):
	(ToTitleCase): Implemented.

2002-09-12  Dick Porter  <dick@ximian.com>

	* ThaiBuddhistCalendar.cs: 
	* TextInfo.cs: 
	* TaiwanCalendar.cs: 
	* RegionInfo.cs: 
	* KoreanCalendar.cs: 
	* JulianCalendar.cs: 
	* JapaneseCalendar.cs: 
	* HijriCalendar.cs: 
	* HebrewCalendar.cs: 
	* GregorianCalendar.cs: 
	* CultureInfo.cs: 
	* CompareInfo.cs: Stub out missing methods

2002-08-15  Tim Coleamn <tim@timcoleman.com>
	* CompareInfo.cs:
		Stubbed out some methods.

2002-08-14  Dick Porter  <dick@ximian.com>

	* CultureInfo.cs: Implement Name, stub out all the other missing
	methods.

	* TextInfo.cs: Stubbed out this class

2002-06-12  Nick Drochak  <ndrochak@gol.com>

	* DateTimeFormatInfo.cs: Reformat.

2002-06-11  Nick Drochak  <ndrochak@gol.com>

	* NumberFormatInfo.cs: Make NumberNegativePattern = 1 for the ctor

2002-06-07  Nick Drochak  <ndrochak@gol.com>

	* NumberFormatInfo.cs: Make InvariantInfo.NumberNegativePattern = 1

2002-05-07  Rodrigo Moya <rodrigo@ximian.com>

	* CompareInfo.cs: new basic stub (compiles on Linux, so I assume
	it does not break the build on windows. Sorry if it does).

2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* NumberFormatInfo.cs: always set the values for the invariant culture
	until there are more cultures supported.

2002-04-22  Nick Drochak  <ndrochak@gol.com>

	* NumberStyles.cs: Add [Serializable].

2002-04-08  Nick Drochak  <ndrochak@gol.com>

	* UnicodeCategory.cs: Fix typos in enum names.

2002-03-04  Nick Drochak  <ndrochak@gol.com>

	* JulianCalendar.cs: JulianEra should be field, not a property.
	Thanks CorCompare (and Piers).

2002-02-12  Duncan Mak  <duncan@ximian.com>

	* CultureInfo.cs: Added the Calendar property to make the TimeZone
	class build. It's marked as MonoTODO.

2002-02-12  Nick Drochak  <ndrochak@gol.com>

	* UnicodeCategory.cs: Fix typo.

2002-02-01  Radek Doulik  <rodo@ximian.com>

	* RegionInfo.cs: started work on RegionInfo
	implemented RegionInfo (string) constructor

	* CultureInfo.cs: added internal static function,
	which could be used from RegionInfo.cs

2002-01-16  Miguel de Icaza  <miguel@ximian.com>

	* CultureInfo.cs: Completed the tables.   Now we need to actually
	fill it in.

2002-01-15  Duncan Mak  <duncan@ximian.com>

	* CultureInfo.cs: Convert it to unix text.

2002-01-04  Ravi Pratap  <ravi@ximian.com>

	* GreogrianCalendar.cs : The same old MonoTODO attribute.

2001-11-21  Miguel de Icaza  <miguel@ximian.com>

	* Locale.cs: New file, a place holder for Locale.GetText.

Wed Nov 14 16:47:07 CET 2001 Paolo Molaro <lupus@ximian.com>

	* Calendar.cs: CLSCompliant updates.

2001-11-04  Martin Weindel <martin.weindel@t-online.de>
        * NumberFormatInfo.cs: fixed minor bug in Clone with readonly flag

        * DateTimeFormatInfo.cs: added

        * CultureInfo.cs: some changed needed for compiling DateTimeFormatInfo.cs

2001-10-26  Miguel de Icaza  <miguel@ximian.com>

	* NumberFormatInfo.cs: Provide an internal constructor that takes
	as an argument a CultureInfo ID (LCID) so that we can construct
	different ones here.

	* CultureInfo.cs: Begun implementation.

2001-10-09  Derek Holden  <dholden@draper.com>

	* NumberFormatInfo.cs: Small typo in PercentPositivePattern
	and CurrencyPositivePattern

2001-09-02  Miguel de Icaza  <miguel@ximian.com>

	* Calendar.cs: Implement a bunch of missing features.

2001-07-24  Derek Holden  <dholden@draper.com>

	* NumberStyles.cs: Added ECMA values for Allow types and default
	styles.

2001-07-18  Michael Lambert <michaellambert@email.com>

        * DateTimeStyles.cs, NumberStyles.cs: Add.