Re: [csv] CSVPrinter ResultSet quoting

2014-11-11 Thread Gary Gregory
Just to wrap up this thread, this has been fixed in svn. Gary On Sat, Nov 1, 2014 at 12:52 AM, Gary Gregory wrote: > Hi Damjan, > > I think the process should be: create a JIRA, optionally attach a patch > (or commit a fix, up to you) that includes a unit test that demonstrates > that there is

[VFS] Re: underlying usage of Jsch Sessions/Channels

2014-11-11 Thread Bernd Eckenfels
Hello, If I read the code correct, it will create a channel for each concurrent stream. When the channel is no longer used it will close all, besides the last channel. This allows sequentiel operations to work without re-establishing a channel. New channels seem to be established within a existin

Re: [math]: Is something wrong with BicubicInterpolation?

2014-11-11 Thread Ajo Fod
I have a feeling that (x,y) being assigned values from (y,x) may be the cause. Ajo On Nov 11, 2014 2:11 PM, "Gilles" wrote: > On Tue, 11 Nov 2014 16:10:35 -0500, Hank Grabowski wrote: > >> There are known problems with the bicubic interpolation algorithm. In the >> current head revision there a

Jenkins build is back to normal : commons-jcs #63

2014-11-11 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Jenkins build is back to normal : commons-jcs » Apache Commons JCS :: Core #63

2014-11-11 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: [math]: Is something wrong with BicubicInterpolation?

2014-11-11 Thread Gilles
On Tue, 11 Nov 2014 16:10:35 -0500, Hank Grabowski wrote: There are known problems with the bicubic interpolation algorithm. In the current head revision there are now PiecewiseBicubicSpline interpolators that may get you what you need. Can you try that and see if you are getting the results

Re: [math]: Is something wrong with BicubicInterpolation?

2014-11-11 Thread Hank Grabowski
There are known problems with the bicubic interpolation algorithm. In the current head revision there are now PiecewiseBicubicSpline interpolators that may get you what you need. Can you try that and see if you are getting the results you expect? On Tue, Nov 11, 2014 at 1:47 PM, Ajo Fod wrote:

commons-text git commit: Remove last evidence that the code for the site has been stolen from Commons Lang

2014-11-11 Thread britter
Repository: commons-text Updated Branches: refs/heads/master 750beb923 -> 71b59af90 Remove last evidence that the code for the site has been stolen from Commons Lang Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/

Re: commons-text git commit: Bootstrap commons-text component

2014-11-11 Thread Benedikt Ritter
INFRA ticket to fix this: https://issues.apache.org/jira/browse/INFRA-8611 2014-11-11 20:50 GMT+01:00 Benedikt Ritter : > Looks like commit mails for this repo are forwarded to the wrong list. > > 2014-11-11 20:45 GMT+01:00 : > > Repository: commons-text >> Updated Branches: >> refs/heads/maste

Re: commons-text git commit: Bootstrap commons-text component

2014-11-11 Thread Benedikt Ritter
Looks like commit mails for this repo are forwarded to the wrong list. 2014-11-11 20:45 GMT+01:00 : > Repository: commons-text > Updated Branches: > refs/heads/master [created] 750beb923 > > > Bootstrap commons-text component > > > Project: http://git-wip-us.apache.org/repos/asf/commons-text/re

commons-text git commit: Bootstrap commons-text component

2014-11-11 Thread britter
Repository: commons-text Updated Branches: refs/heads/master [created] 750beb923 Bootstrap commons-text component Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/750beb92 Tree: http://git-wip-us.apache.org/re

[math]: Is something wrong with BicubicInterpolation?

2014-11-11 Thread Ajo Fod
I feel like bicubic interpolation should result in images like: http://en.wikipedia.org/wiki/Bicubic_interpolation But, here I'm getting something different: import java.awt.Color; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics2D; import java.awt.image.BufferedImage;

Build failed in Jenkins: commons-jcs » Apache Commons JCS :: Core #62

2014-11-11 Thread Apache Jenkins Server
See -- [INFO] [INFO] [INFO]

Build failed in Jenkins: commons-jcs #62

2014-11-11 Thread Apache Jenkins Server
See Changes: [rmannibucau] autoVersionSubmodules for release plugin -- [...truncated 72 lines...] [INFO] [INFO]

Re: svn commit: r1638121 - /commons/proper/csv/trunk/src/site/xdoc/user-guide.xml

2014-11-11 Thread Gary Gregory
On Tue, Nov 11, 2014 at 10:02 AM, Benedikt Ritter wrote: > 2014-11-11 15:29 GMT+01:00 : > > > Author: ggregory > > Date: Tue Nov 11 14:29:44 2014 > > New Revision: 1638121 > > > > URL: http://svn.apache.org/r1638121 > > Log: > > Better BOM docs. > > > > Modified: > > commons/proper/csv/trunk/

Re: svn commit: r1638121 - /commons/proper/csv/trunk/src/site/xdoc/user-guide.xml

2014-11-11 Thread Benedikt Ritter
2014-11-11 15:29 GMT+01:00 : > Author: ggregory > Date: Tue Nov 11 14:29:44 2014 > New Revision: 1638121 > > URL: http://svn.apache.org/r1638121 > Log: > Better BOM docs. > > Modified: > commons/proper/csv/trunk/src/site/xdoc/user-guide.xml > > Modified: commons/proper/csv/trunk/src/site/xdoc/

Re: svn commit: r1638101 - in /commons/proper/csv/trunk/src: changes/changes.xml main/java/org/apache/commons/csv/CSVFormat.java main/java/org/apache/commons/csv/CSVPrinter.java test/java/org/apache/c

2014-11-11 Thread Gary Gregory
On Tue, Nov 11, 2014 at 9:18 AM, Benedikt Ritter wrote: > Hello Gary, > > it looks like you've also reformatted the source code, which makes it > harder to review the actual changes for CSV-139. I'd rather do reformatting > in a seperate commit. WDYT? > I agree, that was an unintentional mistake

(VFS) underlying usage of Jsch Sessions/Channels

2014-11-11 Thread Israel Malachi
Hello all Please consider the following code: FileSystemManager fsManager = VFS.getManager(); FileObject sftpDir = fsManager.resolveFile("sftp://username:password@host/pub/downloads/";); FileObject child1 = sftpDir.getChild("child1.data"); FileObject child2 = sftpDir.getChild("c

Re: svn commit: r1638101 - in /commons/proper/csv/trunk/src: changes/changes.xml main/java/org/apache/commons/csv/CSVFormat.java main/java/org/apache/commons/csv/CSVPrinter.java test/java/org/apache/c

2014-11-11 Thread Benedikt Ritter
Hello Gary, it looks like you've also reformatted the source code, which makes it harder to review the actual changes for CSV-139. I'd rather do reformatting in a seperate commit. WDYT? Benedikt 2014-11-11 15:00 GMT+01:00 : > Author: ggregory > Date: Tue Nov 11 14:00:47 2014 > New Revision: 163

[GitHub] commons-lang pull request: add RandomEnumUtils to operate with ran...

2014-11-11 Thread gabrielruiu
GitHub user gabrielruiu opened a pull request: https://github.com/apache/commons-lang/pull/37 add RandomEnumUtils to operate with random instances of enum types Added a utility class that returns a random instance of an Enum of a certain provided type. This, I consider, is useful wh