https://bugzilla.wikimedia.org/show_bug.cgi?id=21946
Thana <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #3 from Thana <[email protected]> 2009-12-27 06:47:46 UTC --- (In reply to comment #1) > Created an attachment (id=6901) --> (https://bugzilla.wikimedia.org/attachment.cgi?id=6901) [details] > patch against 60371 > > * allows U+2212 (MINUS SIGN) in place of - in numbers (but not dates). > * allows a space between the minus sign and the number. > * allows a minus sign in a currency (before or after the initial currency > marker) > * sorts non numerics in number columns as -Infinity instead of 0 (I assume > that > all at one end was the intention) > This patch uses [+-\u2212] which will match anything from U+002B PLUS SIGN to U+2212 MINUS SIGN. Need to escape the hyphen as it is no longer adjacent to the brackets. Best practice would be to include the backslash regardless. Escaping the plus sign to avoid confusion would not hurt either, thus [\+\-\u2212]. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
