Re: [Configuration] Dependency on VFS

2009-03-26 Thread Ralph Goers
I fixed this. Please rebuild your VFS and give it another try. Ralph On Mar 25, 2009, at 2:19 PM, Oliver Heger wrote: Ralph Goers schrieb: On Mar 23, 2009, at 2:34 PM, Oliver Heger wrote: Hey, this really looks interesting! Unfortunately, I am pretty busy ATM and will need some time to gr

Re: svn commit: r758896 - in /commons/proper/compress/trunk/src: main/java/org/apache/commons/compress/archivers/zip/ test/java/org/apache/commons/compress/archivers/zip/

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, wrote: > support as much as possible of ZipFile as a stream can do in > ZipArchiveInputStream, COMPRESS-47 This is Harmony's ZipInputStream combined with compress's parsing of the local file header - so we do get encoding support in ZipArchiveInputStream. I need to clean up the c

[Commons Wiki] Update of "CommonsOsgi" by NiallPemberton

2009-03-26 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The following page has been changed by NiallPemberton: http://wiki.apache.org/commons/CommonsOsgi -- || cl

Re: [ANN] commons-exec 1.0 released - Part 2

2009-03-26 Thread Siegfried Goeschl
Hi Gary, Source and binary distributions can be downloaded from the corresponding directories in an Apache Software Foundation mirror at: http://www.apache.org/dyn/closer.cgi/commons/exec See also the download page at: http://commons.apache.org/exec Cheers, Siegfried Goeschl Gary Gregory wrot

[ANN] commons-exec 1.0 released

2009-03-26 Thread Siegfried Goeschl
The commons-exec-team is pleased to announce the commons-exec-1.0 release! A library to reliably execute external processes from within the JVM Changes in this version include: New features: - o Added one additional tes

Re: [compress] Successful use in Apache Tika

2009-03-26 Thread Christian Grobmeier
Cool! On Thu, Mar 26, 2009 at 12:09 PM, Jukka Zitting wrote: > Hi, > > I just made a patch (see TIKA-204 [1]) to Apache Tika where I replaced > our custom copies of the Ant classes with a proper dependency to > commons-compress 1.0-SNAPSHOT. Everything works fine and I was even > able to get rid

Re: [compress] Code history in NOTICE

2009-03-26 Thread Christian Grobmeier
> I think the only requirement was to give credit ...somehow somewhere. This is true for CPIO. - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: [compress] Code history in NOTICE

2009-03-26 Thread Torsten Curdt
I think the only requirement was to give credit ...somehow somewhere. On Thu, Mar 26, 2009 at 12:43, sebb wrote: > On 26/03/2009, Stefan Bodewig wrote: >> On 2009-03-26, Jukka Zitting wrote: >> >>  > The commons-compress NOTICE file currently contains the following entries: >> >>  >     Origina

Re: [compress] Successful use in Apache Tika

2009-03-26 Thread Torsten Curdt
Awesome! That's good to hear! :) On Thu, Mar 26, 2009 at 12:09, Jukka Zitting wrote: > Hi, > > I just made a patch (see TIKA-204 [1]) to Apache Tika where I replaced > our custom copies of the Ant classes with a proper dependency to > commons-compress 1.0-SNAPSHOT. Everything works fine and I was

Re: [compress] potential bzip2 improvement

2009-03-26 Thread Torsten Curdt
>> On a related matter: Stefan, wouldn't it be possible for the others to >> start using compress? > > Not sure who "the others" may be. > > As for Ant, I don't expect it to move away from its own classes. > Creating jars is a core requirement for a build tool for Java and the > Ant community proba

Re: [compress] potential bzip2 improvement

2009-03-26 Thread Torsten Curdt
If the code has been tested by the folks at hadoop I trust it very much. (They do extensive testing!) and would be all for replacing the current code base. But IMO that's no blocker. In the end the algorithm should be a black box for everyone using compress. So changing this in a later release shou

[Compress] CpioConstants sort?

2009-03-26 Thread sebb
The definitions for the C_Ixxx constants are not fully sorted numerically (or alphabetically). Alphasorting is available in IDEs, so I'd like to sort on numerical value, as that makes it easier to check for omissions and duplicates. The current list is mainly in reverse numerical order, so I prop

Re: [compress] potential bzip2 improvement

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, Jochen Wiedmann wrote: > On a related matter: Stefan, wouldn't it be possible for the others to > start using compress? Not sure who "the others" may be. As for Ant, I don't expect it to move away from its own classes. Creating jars is a core requirement for a build tool for Java

Re: [compress] potential bzip2 improvement

2009-03-26 Thread sebb
On 26/03/2009, Jochen Wiedmann wrote: > On Thu, Mar 26, 2009 at 12:36 PM, sebb wrote: > > > Would it be a silly idea to include both variants? > > > I'd clearly tend to avoid that. It would likely cause confusion. Surely that depends on how well it is documented and on the API? I've not looked

Re: [compress] Code history in NOTICE

2009-03-26 Thread sebb
On 26/03/2009, Stefan Bodewig wrote: > On 2009-03-26, Jukka Zitting wrote: > > > The commons-compress NOTICE file currently contains the following entries: > > > Original BZip2 classes contributed by Keiron Liddle > > , Aftex Software to the Apache Ant project > > > Original Tar c

Re: [compress] potential bzip2 improvement

2009-03-26 Thread Jochen Wiedmann
On Thu, Mar 26, 2009 at 12:36 PM, sebb wrote: > Would it be a silly idea to include both variants? I'd clearly tend to avoid that. It would likely cause confusion. On a related matter: Stefan, wouldn't it be possible for the others to start using compress? Jochen -- I have always wished for

Re: [compress] potential bzip2 improvement

2009-03-26 Thread sebb
On 26/03/2009, Stefan Bodewig wrote: > Hi folks, > > first of all I don't know enough about the bzip2 format to undestand > the existing code, nor the one I'll be pointing at further down. > > The current code in compress is the one of Ant 1.7.1 and versions > prior to 1.7.0. In Ant 1.7.0 Ant

[compress] Successful use in Apache Tika

2009-03-26 Thread Jukka Zitting
Hi, I just made a patch (see TIKA-204 [1]) to Apache Tika where I replaced our custom copies of the Ant classes with a proper dependency to commons-compress 1.0-SNAPSHOT. Everything works fine and I was even able to get rid of the extra customization we did for the bzip reader in Ant not wanting t

Re: [compress] Code history in NOTICE

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, Jukka Zitting wrote: > The commons-compress NOTICE file currently contains the following entries: > Original BZip2 classes contributed by Keiron Liddle > , Aftex Software to the Apache Ant project > Original Tar classes from contributors of the Apache Ant project >

[compress] potential bzip2 improvement

2009-03-26 Thread Stefan Bodewig
Hi folks, first of all I don't know enough about the bzip2 format to undestand the existing code, nor the one I'll be pointing at further down. The current code in compress is the one of Ant 1.7.1 and versions prior to 1.7.0. In Ant 1.7.0 Ant shipped with a completely rewritten version that was

Re: [compress] Patch for Compress-28

2009-03-26 Thread Christian Grobmeier
> The tests didn't pass for me on Windows because of line-end > differences (I guess), I've modified them to work for me and hopefully > work on a system with a single character EOL, but I don't have such a > system to confirm it right now. > > Could you please run the tests and close the issue aft

[compress] Code history in NOTICE

2009-03-26 Thread Jukka Zitting
Hi, The commons-compress NOTICE file currently contains the following entries: Original BZip2 classes contributed by Keiron Liddle , Aftex Software to the Apache Ant project Original Tar classes from contributors of the Apache Ant project Original Zip classes from contributors o

Re: [compress] Patch for Compress-28

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, Christian Grobmeier wrote: > This should make sure that CPIO classes work like all the other classes. Thanks. I've moved the finish() call in close() inside the !closed branch since otherwise finish's ensureOpen would cause trouble for repeated calls to close (that the old code h

[Commons Wiki] Update of "CreatingReleases" by SiegfriedGoeschl

2009-03-26 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The following page has been changed by SiegfriedGoeschl: http://wiki.apache.org/commons/CreatingReleases --

[Commons Wiki] Update of "CreatingReleases" by SiegfriedGoeschl

2009-03-26 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Commons Wiki" for change notification. The following page has been changed by SiegfriedGoeschl: http://wiki.apache.org/commons/CreatingReleases --

Re: [g...@vmgump]: Project commons-configuration (in module apache-commons) failed

2009-03-26 Thread Jörg Schaible
Hi Stefan, Stefan Bodewig wrote at Mittwoch, 25. März 2009 14:14: > On 2009-03-25, Jörg Schaible wrote: > >> BTW: What is the difference in Gump's project descriptor between the >> optional and depend tags? > > If the project you depend on doesn't build in Gump, your project won't > be built a

Re: [VFS] "anonymous" debug logging

2009-03-26 Thread Ralph Goers
On Mar 25, 2009, at 11:49 PM, Mario Ivankovits wrote: if (log.isDebugEnabled()) { log.debug("putFile: " + file.getName()); } with logger.entry(file.getName()); This is not the same, in the second exa