svn commit: r1512161 - in /commons/proper/compress/trunk/src: changes/changes.xml main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

2013-08-09 Thread bodewig
Author: bodewig Date: Fri Aug 9 06:51:18 2013 New Revision: 1512161 URL: http://svn.apache.org/r1512161 Log: COMPRESS-237 properly write TAR entries with long link names. Patch by Emmanuel Bourg Modified: commons/proper/compress/trunk/src/changes/changes.xml

svn commit: r1512183 - /commons/proper/compress/trunk/src/changes/changes.xml

2013-08-09 Thread bodewig
Author: bodewig Date: Fri Aug 9 07:13:06 2013 New Revision: 1512183 URL: http://svn.apache.org/r1512183 Log: typo Modified: commons/proper/compress/trunk/src/changes/changes.xml Modified: commons/proper/compress/trunk/src/changes/changes.xml URL:

svn commit: r1512201 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

2013-08-09 Thread ebourg
Author: ebourg Date: Fri Aug 9 08:32:40 2013 New Revision: 1512201 URL: http://svn.apache.org/r1512201 Log: Don't check the length of empty links Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java Modified:

svn commit: r1512207 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

2013-08-09 Thread ebourg
Author: ebourg Date: Fri Aug 9 09:02:51 2013 New Revision: 1512207 URL: http://svn.apache.org/r1512207 Log: Improved the exception message when the name/link is too long Modified:

svn commit: r1512210 - /commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java

2013-08-09 Thread ebourg
Author: ebourg Date: Fri Aug 9 09:04:37 2013 New Revision: 1512210 URL: http://svn.apache.org/r1512210 Log: Test cases for long links in tar files Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java Modified:

svn commit: r1512213 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

2013-08-09 Thread ebourg
Author: ebourg Date: Fri Aug 9 09:16:55 2013 New Revision: 1512213 URL: http://svn.apache.org/r1512213 Log: Minor Javadoc enhancement for TarArchiveOutputStream.handleLongName() Modified:

svn commit: r1512306 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3: random/RandomDataGenerator.java util/MathArrays.java

2013-08-09 Thread erans
Author: erans Date: Fri Aug 9 13:55:49 2013 New Revision: 1512306 URL: http://svn.apache.org/r1512306 Log: MATH-1020. Fixed nextPermutation in RandomDataGenerator. Bug showed up when using a fixed version of shuffle (MATH-1019) added in MathArrays (MATH-1010). Added overloaded shuffle method

svn commit: r1512398 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java

2013-08-09 Thread britter
Author: britter Date: Fri Aug 9 17:06:48 2013 New Revision: 1512398 URL: http://svn.apache.org/r1512398 Log: No need to declare private method final Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java Modified:

svn commit: r1512399 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/TokenMatchers.java

2013-08-09 Thread britter
Author: britter Date: Fri Aug 9 17:09:37 2013 New Revision: 1512399 URL: http://svn.apache.org/r1512399 Log: Simplify if statements Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/TokenMatchers.java Modified:

svn commit: r1512530 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/fitting/leastsquares/ main/java/org/apache/commons/math3/optim/ test/java/org/apache/commons/math3/fitting/

2013-08-09 Thread erans
Author: erans Date: Fri Aug 9 23:21:14 2013 New Revision: 1512530 URL: http://svn.apache.org/r1512530 Log: MATH-1008 Simplification of the code introduced in revision 1508481. The changes only focus on the fluent API aspect (rather than also try to achieve thread-safety through immutability).

svn commit: r1512535 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/MathArrays.java

2013-08-09 Thread erans
Author: erans Date: Fri Aug 9 23:39:24 2013 New Revision: 1512535 URL: http://svn.apache.org/r1512535 Log: MATH-1010 Make use of the RNG supplied as argument. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/MathArrays.java Modified:

svn commit: r1512537 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/impl/DefaultFileMonitor.java

2013-08-09 Thread ggregory
Author: ggregory Date: Fri Aug 9 23:44:13 2013 New Revision: 1512537 URL: http://svn.apache.org/r1512537 Log: [VFS-486] DefaultFileMonitor sleeps for twice the specified delay when checkPerRun 0. Thanks to Sam Haldane. Modified:

svn commit: r1512541 - /commons/proper/math/trunk/src/changes/changes.xml

2013-08-09 Thread erans
Author: erans Date: Sat Aug 10 00:29:31 2013 New Revision: 1512541 URL: http://svn.apache.org/r1512541 Log: Update changes.xml. Modified: commons/proper/math/trunk/src/changes/changes.xml Modified: commons/proper/math/trunk/src/changes/changes.xml URL:

svn commit: r1512546 - in /commons/proper/math/trunk: ./ src/changes/ src/main/java/org/apache/commons/math3/distribution/ src/test/java/org/apache/commons/math3/distribution/

2013-08-09 Thread erans
Author: erans Date: Sat Aug 10 00:57:48 2013 New Revision: 1512546 URL: http://svn.apache.org/r1512546 Log: MATH-1021 Reordering can prevent some overflow occurrences (fix suggested by Brian Bloniarz). Added unit test. Modified: commons/proper/math/trunk/pom.xml

svn commit: r1512547 - in /commons/proper/math/trunk/src: changes/changes.xml main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java

2013-08-09 Thread erans
Author: erans Date: Sat Aug 10 01:13:38 2013 New Revision: 1512547 URL: http://svn.apache.org/r1512547 Log: MATH-989 Update changes.xml. Javadoc. Modified: commons/proper/math/trunk/src/changes/changes.xml