Re: Apache Commons ApacheCon Europe 2014

2014-04-23 Thread Ate Douma
Hi all, Sorry for chiming in this late but I definitely think it would be cool, and very useful, to organize a dedicated Commons track at the ApacheCon, and promote this project as a whole. Siegfried and I discussed this a bit in Denver, and I also talked about it with Rich Bowen if a

Re: svn commit: r1589446 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/time/FastDateParser.java test/java/org/apache/commons/lang3/time/FastDateParserTest.java

2014-04-23 Thread sebb
On 23 April 2014 17:02, c...@apache.org wrote: Author: chas Date: Wed Apr 23 16:02:52 2014 New Revision: 1589446 URL: http://svn.apache.org/r1589446 Log: LANG-966 - FastDateParser should be case insensitive Modified:

Re: [VFS] Next release date

2014-04-23 Thread Bernd Eckenfels
Hello, I can do some preparation work like reviewing the open issue, verifying the completeness of the changelog, maybe writing some release/upgrade notes and checking the dependency versions. I dont feel fit in doing the actual release, maybe you can assist me with that gary. What else would

Re: [VFS] Next release date

2014-04-23 Thread Gary Gregory
I think you have it summed up, we need to wrap things up and tie up loose ends. I've done other releases for Commons so I could do this one as well. Gary On Wed, Apr 23, 2014 at 3:58 PM, Bernd Eckenfels e...@zusammenkunft.netwrote: Hello, I can do some preparation work like reviewing the

Re: svn commit: r1589446 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/time/FastDateParser.java test/java/org/apache/commons/lang3/time/FastDateParserTest.java

2014-04-23 Thread Honton, Charles
TextStrategy is used for: E - DAY_OF_WEEK G - ERA M - MONTH a - AM_PM SimpleDateFormat uses case-insensitive parsing for each of these fields. I will add tests for each of those fields in multiple Locales. The (?u)(?i) modifier is active just for the duration of the group. Consider the

Re: svn commit: r1589446 - in /commons/proper/lang/trunk/src: main/java/org/apache/commons/lang3/time/FastDateParser.java test/java/org/apache/commons/lang3/time/FastDateParserTest.java

2014-04-23 Thread sebb
On 23 April 2014 21:19, Honton, Charles charles_hon...@intuit.com wrote: TextStrategy is used for: E - DAY_OF_WEEK G - ERA M - MONTH a - AM_PM Is that the only possible use of TextStrategy? What about literal text? SimpleDateFormat uses case-insensitive parsing for each of these fields. I