-
benoitx made 1 file-release changes.
2010-01-01 10:55:02 UTC by benoitx
-
benoitx made 1 file-release changes.
2010-01-01 10:54:01 UTC by benoitx
-
benoitx made 3 file-release changes.
2010-01-01 10:53:01 UTC by benoitx
-
benoitx made 1 file-release changes.
2010-01-01 10:52:02 UTC by benoitx
-
benoitx made 1 file-release changes.
2010-01-01 10:47:02 UTC by benoitx
-
benoitx made 1 file-release changes.
2010-01-01 10:34:01 UTC by benoitx
-
benoitx committed patchset 778 of module statcvs to the StatCVS - Stat Your Repository CVS repository, changing 6 files.
2010-01-01 10:10:13 UTC by benoitx
-
benoitx committed patchset 777 of module statcvs to the StatCVS - Stat Your Repository CVS repository, changing 4 files.
2010-01-01 10:03:43 UTC by benoitx
-
sorry... the correct meanings:
\s A whitespace character: [ \t\n\x0B\f\r]
\w A word character: [a-zA-Z_0-9]
\W A non-word character: [^\w]
from: http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html.
2009-10-30 23:12:42 UTC by https://www.google.com/accounts
-
please support non english comments, and use \s insted of \w in CloudeCommitTableRepo file:
line 106:
- final String[] split = comment.split("\\W+");
+ final String[] split = comment.split("\\s+");
because the "W" means only a-zA-Z and _ caracters and it excludes non english characters, but "s" split on whitespaces...
2009-10-30 23:07:10 UTC by https://www.google.com/accounts