Re: Contribute: use zipfileset to extract sub-path of zips

2007-08-08 Thread Peter Reilly
Hi Michael, Can you make a bugzilla entry for your enhancement. Peter On 8/8/07, Michael Zhou <[EMAIL PROTECTED]> wrote: > Thank you for your reply. > > Yes, I can use unzip task to do the similar things, but my improved > zipfileset is more convenient and faster than simply unzip, copy and re-p

Re: Contribute: use zipfileset to extract sub-path of zips

2007-08-08 Thread Michael Zhou
Thank you for your reply. Yes, I can use unzip task to do the similar things, but my improved zipfileset is more convenient and faster than simply unzip, copy and re-pack approaches. I usually need to merge some WAR files into one big WAR -- to save memories, resources of app-server, and each war

Re: Contribute: use zipfileset to extract sub-path of zips

2007-08-08 Thread Jeffrey E Care
Why bother to go through all that when you can just unzip the file in your copy case? Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Application Server Systems Management Tools Architecture

Contribute: use zipfileset to extract sub-path of zips (with patch)

2007-08-08 Thread Michael Zhou
); +as.setBasedir(getBasedir()); super.setDir(p.getBaseDir()); setupDirectoryScanner(as, p); as.init(); --- END OF PATCH --------- Forwarded by Michael Zhou <[EMAIL PROTECTED]> --- Original Message ---

Contribute: use zipfileset to extract sub-path of zips

2007-08-08 Thread Michael Zhou
I used to build a jar file (or any zip-format file: war, ear, etc.), which contents are extracted from other zip files. For instance, zip file src.zip contains: +---main | \---org | \---apache | Test.java | \---test I just want the subtree under "main" (not include main dir