Re: [VFS] trunk RamProvider tests failing?

2013-01-30 Thread Thomas Neidhart
Hi for some reason, in your environment, the property test.basedir is returning an URI instead of an absolute path. This results in an failure in the test as the value is used to create a File object: fs.importTree(new File(AbstractVfsTestCase.getTestDirectoryString())); Is there

[ALL] jacoco-maven-plugin advantage over cobertura-maven-plugin (CODEC-161)

2013-01-30 Thread Bruno P. Kinoshita
Hi all,  I preferred to write to the mailing list with an [ALL] component tag instead of commenting a resolved issue. I apologize if it was not the right choice. In CODEC-161, the following if statement could never reach 100% coverage with cobertura-maven-plugin: if ((sumLength = 5)

[GUMP@vmgump]: Project commons-javaflow (in module commons-sandbox) failed

2013-01-30 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-javaflow has an issue affecting its community integration. This

Re: [ALL] jacoco-maven-plugin advantage over cobertura-maven-plugin (CODEC-161)

2013-01-30 Thread Gary Gregory
Is Cobertura dead? I'd prefer to keeping using a FOSS test coverage tool instead of one behind a license (Clover). Should we switch to Clover (we have a license for Apache)? What about Emma? Thoughts? Gary On Wed, Jan 30, 2013 at 7:00 AM, Bruno P. Kinoshita ki...@apache.orgwrote: Hi all, I

Re: [VFS] trunk RamProvider tests failing?

2013-01-30 Thread Gary Gregory
It looks like Thomas fixed the test, can you give it a try? Gary On Wed, Jan 30, 2013 at 6:53 AM, Thomas Neidhart thomas.neidh...@gmail.comwrote: Hi for some reason, in your environment, the property test.basedir is returning an URI instead of an absolute path. This results in an failure

Re: [functor] Change default arity of Function, Predicate and Procedure

2013-01-30 Thread Matt Benson
What about: Arity (Marker) |_Nullary extends Arity |_UnaryA extends Arity |_BinaryL, R extends Arity ? Matt On Tue, Jan 29, 2013 at 6:09 PM, Bruno P. Kinoshita brunodepau...@yahoo.com.br wrote: In Haskell you define your functions and its arity. // nullary function a :: () = () - String

Re: [math] Improving speed of UnitSphereRandomVectorGenerator

2013-01-30 Thread Gilles
Hi. On Wed, 30 Jan 2013 11:54:50 +, Sean Owen wrote: Hello all, I have a small proposal to improve the speed of UnitSphereRandomVectorGenerator. This class picks a random point on the unit n-sphere -- a unit vector, chosen uniformly from all possible directions. It does so using a

Re: [ALL] jacoco-maven-plugin advantage over cobertura-maven-plugin (CODEC-161)

2013-01-30 Thread Olivier Lamy
2013/1/30 Gary Gregory garydgreg...@gmail.com: Is Cobertura dead? I'd prefer to keeping using a FOSS test coverage tool instead of one behind a license (Clover). Should we switch to Clover (we have a license for Apache)? What about Emma? jacoco is epl. Have a look at a nice comparison here:

Re: [math] Improving speed of UnitSphereRandomVectorGenerator

2013-01-30 Thread Thomas Neidhart
On Wed, Jan 30, 2013 at 4:56 PM, Gilles gil...@harfang.homelinux.orgwrote: Hi. On Wed, 30 Jan 2013 11:54:50 +, Sean Owen wrote: Hello all, I have a small proposal to improve the speed of UnitSphereRandomVectorGenerato**r. This class picks a random point on the unit n-sphere -- a unit

Re: svn commit: r1440524 - /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Options.java

2013-01-30 Thread Thomas Neidhart
On Wed, Jan 30, 2013 at 6:05 PM, s...@apache.org wrote: Author: sebb Date: Wed Jan 30 17:05:51 2013 New Revision: 1440524 URL: http://svn.apache.org/viewvc?rev=1440524view=rev Log: Document unexpected list contents Modified:

CMS/SvnPubSub for site live ?

2013-01-30 Thread Olivier Lamy
Hi Folks, Ok to go live ? Something missing ? (maybe sandbox parent release ?) What else ? Content is available for review here: http://people.apache.org/~olamy/commons-content/ Thanks, -- Olivier http://twitter.com/olamy | http://linkedin.com/in/olamy

Re: [VFS] trunk RamProvider tests failing?

2013-01-30 Thread Ryan McKinley
yes -- everything passes now thanks ryan On Wed, Jan 30, 2013 at 7:00 AM, Gary Gregory garydgreg...@gmail.comwrote: It looks like Thomas fixed the test, can you give it a try? Gary On Wed, Jan 30, 2013 at 6:53 AM, Thomas Neidhart thomas.neidh...@gmail.comwrote: Hi for some

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Gary Gregory
On Wed, Jan 30, 2013 at 12:40 PM, Gary Gregory garydgreg...@gmail.comwrote: On Wed, Jan 30, 2013 at 12:16 PM, Olivier Lamy ol...@apache.org wrote: Hi Folks, Ok to go live ? Something missing ? (maybe sandbox parent release ?) What else ? Do we have a build how-to that works for any

Re: [functor] Change default arity of Function, Predicate and Procedure

2013-01-30 Thread Bruno P. Kinoshita
I think it makes sense and is clear what is does. I thought in using {arity}Operation, but in Java 8 there are interfaces like BinaryOperator, and BinaryOperator extends BiFunction, so it would be confusing to users having something like interface BinaryFunction extends BinaryOperation in

Re: svn commit: r1440524 - /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Options.java

2013-01-30 Thread sebb
On 30 January 2013 17:12, Thomas Neidhart thomas.neidh...@gmail.com wrote: On Wed, Jan 30, 2013 at 6:05 PM, s...@apache.org wrote: Author: sebb Date: Wed Jan 30 17:05:51 2013 New Revision: 1440524 URL: http://svn.apache.org/viewvc?rev=1440524view=rev Log: Document unexpected list contents

Re: svn commit: r1440524 - /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Options.java

2013-01-30 Thread Jörg Schaible
Hi, sebb wrote: [snip] /** a map of the required options */ +// N.B. This can contain either a String (addOption) or an OptionGroup (addOptionGroup) +// TODO this seems wrong private ListObject requiredOpts = new ArrayListObject(); Indeed, I also spotted this and

Re: svn commit: r1440524 - /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Options.java

2013-01-30 Thread sebb
On 30 January 2013 18:18, Jörg Schaible joerg.schai...@gmx.de wrote: Hi, sebb wrote: [snip] /** a map of the required options */ +// N.B. This can contain either a String (addOption) or an OptionGroup (addOptionGroup) +// TODO this seems wrong private ListObject

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Ralph Goers
I can't see the source for the site. I am assuming that the proper subdirectory is in extpaths.txt? The only thing I don't like is that when looking at proper it appears that each subproject has its own directory. I would prefer (and recommend) that instead of being a single directory for

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Olivier Lamy
2013/1/30 Gary Gregory garydgreg...@gmail.com: On Wed, Jan 30, 2013 at 12:40 PM, Gary Gregory garydgreg...@gmail.comwrote: On Wed, Jan 30, 2013 at 12:16 PM, Olivier Lamy ol...@apache.org wrote: Hi Folks, Ok to go live ? Something missing ? (maybe sandbox parent release ?) What else ?

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Olivier Lamy
http://svn.apache.org/repos/asf/commons/cms-site/trunk/ Agree for mapping proper/commons-attributes - proper/commons-attributes-2.2 Why not with modifying .htaccess ? (http://svn.apache.org/repos/asf/commons/cms-site/trunk/content/resources/.htaccess) RedirectMatch ^(.*)/attributes/(.*)

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Ralph Goers
On Jan 30, 2013, at 12:16 PM, Olivier Lamy wrote: http://svn.apache.org/repos/asf/commons/cms-site/trunk/ Agree for mapping proper/commons-attributes - proper/commons-attributes-2.2 Why not with modifying .htaccess ?

Re: CMS/SvnPubSub for site live ?

2013-01-30 Thread Olivier Lamy
2013/1/30 Ralph Goers ralph.go...@dslextreme.com: On Jan 30, 2013, at 12:16 PM, Olivier Lamy wrote: http://svn.apache.org/repos/asf/commons/cms-site/trunk/ Agree for mapping proper/commons-attributes - proper/commons-attributes-2.2 Why not with modifying .htaccess ?

Re: svn commit: r1440667 - /commons/sandbox/beanutils2/trunk/pom.xml

2013-01-30 Thread Benedikt Ritter
Thought that would make for a good first commit :) Everything seems to be working properly. 2013/1/30 brit...@apache.org Author: britter Date: Wed Jan 30 21:02:09 2013 New Revision: 1440667 URL: http://svn.apache.org/viewvc?rev=1440667view=rev Log: Added myself to the developers list

Re: svn commit: r1440641 - /commons/proper/daemon/trunk/NOTICE.txt

2013-01-30 Thread Benedikt Ritter
Hi Gary, where does the 1999 come from? The from year seems to be different for all components. Is it the year the component was created? Benedikt 2013/1/30 ggreg...@apache.org Author: ggregory Date: Wed Jan 30 20:07:11 2013 New Revision: 1440641 URL:

Re: svn commit: r1440641 - /commons/proper/daemon/trunk/NOTICE.txt

2013-01-30 Thread sebb
On 30 January 2013 21:11, Benedikt Ritter brit...@apache.org wrote: Hi Gary, where does the 1999 come from? The from year seems to be different for all components. Is it the year the component was created? Yes, it should generally agree with the pom inceptionYear entry. However, there are

[continuum] BUILD FAILURE: Apache Commons - Apache Commons Chain :: Parent - Project build using Java 1.5 (-Prelease does not work for multimodule poms)

2013-01-30 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=25990projectId=69 Build statistics: State: Failed Previous State: Failed Started at: Wed 30 Jan 2013 22:20:02 + Finished at: Wed 30 Jan 2013 22:20:22 + Total time: 19s Build Trigger: Schedule

[continuum] BUILD FAILURE: Apache Commons - Apache Commons Digester - Build using Java 1.6

2013-01-30 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=25991projectId=75 Build statistics: State: Failed Previous State: Failed Started at: Wed 30 Jan 2013 22:20:25 + Finished at: Wed 30 Jan 2013 22:20:36 + Total time: 11s Build Trigger: Schedule

[continuum] BUILD FAILURE: Apache Commons - Commons Configuration - Group (shared) Maven 2 Build Definition (Java 1.5)

2013-01-30 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=25998projectId=72 Build statistics: State: Failed Previous State: Failed Started at: Wed 30 Jan 2013 22:28:16 + Finished at: Wed 30 Jan 2013 22:30:08 + Total time: 1m 52s Build Trigger: Schedule

[continuum] BUILD FAILURE: Apache Commons - Commons JCI -

2013-01-30 Thread Continuum@vmbuild
Continue test if possible; use Java 1.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Continuum-Build-Host: vmbuild X-Continuum-Project-Id: 108 X-Continuum-Project-Name: Commons JCI Online report :

Re: svn commit: r1440524 - /commons/proper/cli/trunk/src/main/java/org/apache/commons/cli/Options.java

2013-01-30 Thread Jörg Schaible
sebb wrote: On 30 January 2013 18:18, Jörg Schaible joerg.schai...@gmx.de wrote: Hi, sebb wrote: [snip] /** a map of the required options */ +// N.B. This can contain either a String (addOption) or an OptionGroup (addOptionGroup) +// TODO this seems wrong private

[continuum] BUILD FAILURE: Apache Commons - Commons Sandbox Parent - Group (shared) Maven 2 Build Definition (Java 1.5)

2013-01-30 Thread Continuum@vmbuild
Online report : http://vmbuild.apache.org/continuum/buildResult.action?buildId=26017projectId=132 Build statistics: State: Failed Previous State: Failed Started at: Wed 30 Jan 2013 23:03:34 + Finished at: Wed 30 Jan 2013 23:03:48 + Total time: 13s Build Trigger: Schedule

[continuum] BUILD FAILURE: Apache Commons - Commons DBCP -

2013-01-30 Thread Continuum@vmbuild
Group (shared) Maven 2 Build Definition (Java 1.5) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Continuum-Build-Host: vmbuild X-Continuum-Project-Id: 281 X-Continuum-Project-Name: Commons DBCP Online report :

Re: [jira] [Updated] (CODEC-166) Base64 could be faster

2013-01-30 Thread sebb
The Fix version should only be added when the issue has been fixed, and should indicate the release in which the fix is available On 30 January 2013 23:33, Sebb (JIRA) j...@apache.org wrote: [

Re: [jira] [Updated] (CODEC-166) Base64 could be faster

2013-01-30 Thread Julius Davies
On Wed, Jan 30, 2013 at 3:35 PM, sebb seb...@gmail.com wrote: The Fix version should only be added when the issue has been fixed, and should indicate the release in which the fix is available Ah, thanks for the tip! I won't make that mistake again. Since it was available to edit during the