[continuum] BUILD FAILURE: Commons - Commons Lang -

2009-10-18 Thread contin...@vmbuild.apache.org
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=239331&projectId=114 Build statistics: State: Failed Previous State: Ok Started at: Sun 18 Oct 2009 22:35:15 -0700 Finished at: Sun 18 Oct 2009 22:35:44 -0700 Total time: 28s Build Trigger: Schedule Build

Re: svn commit: r826514 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread Henri Yandell
On Sun, Oct 18, 2009 at 6:45 PM, sebb wrote: > On 18/10/2009, bay...@apache.org wrote: >> Author: bayard >>  Date: Sun Oct 18 20:14:30 2009 >>  New Revision: 826514 >> >>  URL: http://svn.apache.org/viewvc?rev=826514&view=rev >>  Log: >>  Sebb pointed out that the implementation for LANG-507 was

Re: svn commit: r826514 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread sebb
On 18/10/2009, bay...@apache.org wrote: > Author: bayard > Date: Sun Oct 18 20:14:30 2009 > New Revision: 826514 > > URL: http://svn.apache.org/viewvc?rev=826514&view=rev > Log: > Sebb pointed out that the implementation for LANG-507 was not thread safe. > Rewriting to pass parameters in to

[RESULT][VOTE] Release commons-exec-1.0.1 based on RC5

2009-10-18 Thread Siegfried Goeschl
Hi folks, the RC has successfully passed the vote with the following tally (marking binding votes with *): +1* Luc Maisonobe +1* Jörg Schaible +1* Oliver Heger +1* Rahul Akolkar +1* Siegfried Goeschl Cheers, Siegfried Goeschl

Re: [VOTE] Release commons-exec-1.0.1 based on RC5

2009-10-18 Thread Siegfried Goeschl
For the records [X] +1 release it [ ] +0 go ahead I don't care [ ] -1 no, do not release it because Cheers, Siegfried Goeschl Siegfried Goeschl wrote: > Hi folks, > > after many failures (and a lot of help) I have now the RC for > commons-exec ready - the focus is to get a patch for the Exec M

Re: svn commit: r826370 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread Henri Yandell
Walked away. Pondered. Came back. s/Param/Option on the below. A Parameter is a user supplied value; an Option is a user supplied choice. I'm talking about the latter. On Sun, Oct 18, 2009 at 1:21 PM, Henri Yandell wrote: > Which ended up looking like: > >    public static enum PARAM { escapePlu

Re: svn commit: r826370 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread Henri Yandell
Which ended up looking like: public static enum PARAM { escapePlus }; private EnumSet params; public UnicodeUnescaper(PARAM... params) { if(params.length > 0) { this.params = EnumSet.copyOf(Arrays.asList(params)); } } public boolean isSet(PARAM p)

Re: svn commit: r826370 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread Henri Yandell
On Sun, Oct 18, 2009 at 12:49 PM, Henri Yandell wrote: > Fair enough on the threading though. I'll move to constructor as I > can't think of anything better. Rambling out loud. Better (for API scaling): enum FooParam { various PARAM options} constructor: Foo(FooParam... fp) { this.options =

Re: svn commit: r826370 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread Henri Yandell
On Sun, Oct 18, 2009 at 4:28 AM, sebb wrote: > On 18/10/2009, bay...@apache.org wrote: >> Author: bayard >>  Date: Sun Oct 18 07:25:59 2009 >>  New Revision: 826370 >> >>  URL: http://svn.apache.org/viewvc?rev=826370&view=rev >>  Log: >>  Implementing an option to UnicodeUnescaper in which the sy

Re: [VOTE] Release commons-parent 12

2009-10-18 Thread Dennis Lundberg
+1 Niall Pemberton wrote: > I updated the pom to add the clean and deploy plugins to the > section and remove the idea plugin: > > http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?r1=826258&r2=678413&diff_format=h > > Niall > > On Sat, Oct 17, 2009 at 3:11 AM, Niall Pem

Re: [math] Questions about the linear package

2009-10-18 Thread Phil Steitz
Luc Maisonobe wrote: > Jake Mannix a écrit : >> On Wed, Oct 14, 2009 at 11:10 AM, Luc Maisonobe wrote: >> >>> When this topic was discussed previously, Sam asked to someone called >>> Bjorn-Ove and the reply was positive, see >>> . >>> >>> >> Ok, so rea

Re: [math] Questions about the linear package

2009-10-18 Thread Phil Steitz
luc.maison...@free.fr wrote: > - "Jake Mannix" a écrit : > >> Adding methods to implementations is fine, but not to interfaces - how >> would >> >> that work for client implementations? And everywhere in sight inside >> of the >> >> linear package you have handles on RealVector and RealMatri

Re: svn commit: r826370 - in /commons/proper/lang/trunk/src: java/org/apache/commons/lang/text/translate/UnicodeUnescaper.java test/org/apache/commons/lang/text/translate/UnicodeUnescaperTest.java

2009-10-18 Thread sebb
On 18/10/2009, bay...@apache.org wrote: > Author: bayard > Date: Sun Oct 18 07:25:59 2009 > New Revision: 826370 > > URL: http://svn.apache.org/viewvc?rev=826370&view=rev > Log: > Implementing an option to UnicodeUnescaper in which the syntax '\u+0047' is > supported. By default it remains u

Re: [VOTE] Release BeanUtils 1.8.1 based on RC2

2009-10-18 Thread Luc Maisonobe
Niall Pemberton a écrit : > I have prepared a second release candidate for BeanUtils 1.8.1. The > main change since RC1 was to add a note about the memory leak not > being fixed on IBM JDK 1.6 to the release notes, but there were a > couple of other minor tweaks to the site. > > [ ] +1 Yes go ahea