forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2004-06-05 Atsushi Enomoto <[email protected]>
* Driver.cs : - NumberDecimalDigits are almost differently specified by locale xml files. Almost all of them have ".###", but we need ".##" in almost all the locale. So let's *assume* that the number of digit is always +1 extraneous by this Driver itself. This change accompanies with some existing supp/*.xml changes. - For decimal patterns and currency patterns, when numeric patterns does not have ';'-separated patterns, it ignored the whole pattern string. Fixed it by just copying the same patterns. - When parsing percent patterns, '%' characters were in the way. - When the decimal part of the percent pattern ends with ".##0", the value of PercentDecimalDigits is 2. - Assume PercentDecimalDigits as 2 by default. svn path=/trunk/mono/; revision=28870
- Loading branch information
1 parent
4e222e0
commit 6f7c718
Showing
2 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
2004-06-03 Atsushi Enomoto <[email protected]> | ||
2004-06-05 Atsushi Enomoto <[email protected]> | ||
|
||
* Driver.cs : | ||
- NumberDecimalDigits are almost differently specified by locale | ||
xml files. Almost all of them have ".###", but we need ".##" in | ||
almost all the locale. So let's *assume* that the number of | ||
digit is always +1 extraneous by this Driver itself. | ||
This change accompanies with some existing supp/*.xml changes. | ||
|
||
- For decimal patterns and currency patterns, when numeric patterns | ||
does not have ';'-separated patterns, it ignored the whole pattern | ||
string. Fixed it by just copying the same patterns. | ||
|
||
- When parsing percent patterns, '%' characters were in the way. | ||
- When the decimal part of the percent pattern ends with ".##0", | ||
the value of PercentDecimalDigits is 2. | ||
- Assume PercentDecimalDigits as 2 by default. | ||
|
||
2004-06-05 Atsushi Enomoto <[email protected]> | ||
|
||
* Driver.cs : Let's ignore DTD that takes most of the running time. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters