RE: [VFS] anonymous debug logging

2009-03-26 Thread Mario Ivankovits
Hi! From: Ralph Goers [mailto:ralph.go...@dslextreme.com] I'm not a big fan of that. Me too, any decent logging facility should allow to configure the logger on a per package level, so no problem to make the logging silent for a given package. I'd prefer to switch to SLF4J and just

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

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 joerg.schai...@gmx.de 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

[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: [compress] Patch for Compress-28

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, Christian Grobmeier grobme...@gmail.com 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

[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 kei...@aftexsw.com, Aftex Software to the Apache Ant project Original Tar classes from contributors of the Apache Ant project Original Zip classes

Re: [compress] Code history in NOTICE

2009-03-26 Thread Stefan Bodewig
On 2009-03-26, Jukka Zitting jukka.zitt...@gmail.com wrote: The commons-compress NOTICE file currently contains the following entries: Original BZip2 classes contributed by Keiron Liddle kei...@aftexsw.com, Aftex Software to the Apache Ant project Original Tar classes from

[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

Re: [compress] potential bzip2 improvement

2009-03-26 Thread Jochen Wiedmann
On Thu, Mar 26, 2009 at 12:36 PM, sebb seb...@gmail.com 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

Re: [compress] Code history in NOTICE

2009-03-26 Thread sebb
On 26/03/2009, Stefan Bodewig bode...@apache.org wrote: On 2009-03-26, Jukka Zitting jukka.zitt...@gmail.com wrote: The commons-compress NOTICE file currently contains the following entries: Original BZip2 classes contributed by Keiron Liddle kei...@aftexsw.com, Aftex Software

Re: [compress] potential bzip2 improvement

2009-03-26 Thread sebb
On 26/03/2009, Stefan Bodewig bode...@apache.org 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

Re: [compress] potential bzip2 improvement

2009-03-26 Thread sebb
On 26/03/2009, Jochen Wiedmann jochen.wiedm...@gmail.com wrote: On Thu, Mar 26, 2009 at 12:36 PM, sebb seb...@gmail.com 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

[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

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

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 probably won't

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 jukka.zitt...@gmail.com 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

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 seb...@gmail.com wrote: On 26/03/2009, Stefan Bodewig bode...@apache.org wrote: On 2009-03-26, Jukka Zitting jukka.zitt...@gmail.com wrote:   The commons-compress NOTICE file currently

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] Successful use in Apache Tika

2009-03-26 Thread Christian Grobmeier
Cool! On Thu, Mar 26, 2009 at 12:09 PM, Jukka Zitting jukka.zitt...@gmail.com 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

[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

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

[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 -- || cli

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, bode...@apache.org 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

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