Re: Abusing the BuildListener

2006-07-18 Thread Henri Yandell
On 7/14/06, Matt Benson <[EMAIL PROTECTED]> wrote: Henri: Did you ever get this working? -Matt Sorry, was working on it on Saturday but then an unhappy 2 year old intervened before the reply was finished. Replying below, thanks for the followup. On 7/14/06, Matt Benson <[EMAIL PROTECTED]> w

svn commit: r423089 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/taskdefs/defaults.properties

2006-07-18 Thread mbenson
Author: mbenson Date: Tue Jul 18 07:15:33 2006 New Revision: 423089 URL: http://svn.apache.org/viewvc?rev=423089&view=rev Log: remove references. Modified: ant/core/trunk/WHATSNEW ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/defaults.properties Modified: ant/core/trunk/WHATSNEW

Re: svn commit: r423009 - in /ant/core/trunk: docs/manual/CoreTasks/style.html src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java src/testcases/org/apache/tools/ant/taskdefs/StyleTest.java

2006-07-18 Thread Dominique Devienne
String fileName = FileUtils.getRelativePath(baseDir, inFile); -File file = new File(fileName); - + +String name; +String dir; +int lastDirSep = fileName.lastIndexOf("/"); +if (lastDirSep > -1) { +name = fileName.substring(lastDirSep + 1);

DO NOT REPLY [Bug 21042] - Setting XSL parameter to input filename when processed whole directory.

2006-07-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 21042] - Setting XSL parameter to input filename when processed whole directory.

2006-07-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: AW: New source file header policy

2006-07-18 Thread Kev Jackson
... - a new ./NOTICE file Or edit the one we have - source files are src/main/**/*.* src/testcases/**/*.xml src/etc/**/*.* src/script/*.* src/resources/**/antlib.xml docs/manual/ bootstrap.[sh|bat], build.*, check.xml, fetch.xml, contributors.xml agreed - wha

AW: New source file header policy

2006-07-18 Thread Jan.Materne
http://www.apache.org/legal/src-headers.html Source File Headers for Code Developed at the ASF "Each source file should include the following license header -- note that there should be no copyright notice in the header: ..." Means to me - remove all the copyright headers from all files

[EMAIL PROTECTED]: Project svn-antlib-test (in module ant-antlibs) failed

2006-07-18 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project svn-antlib-test has an issue affecting its community integration. This issue affe

Re: New source file header policy

2006-07-18 Thread Kev Jackson
I read this to mean that Apache Ant Copyright -2006 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). should be added at the top of the NOTICE file And the

DO NOT REPLY [Bug 21042] - Setting XSL parameter to input filename when processed whole directory.

2006-07-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r423009 - in /ant/core/trunk: docs/manual/CoreTasks/style.html src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java src/testcases/org/apache/tools/ant/taskdefs/StyleTest.java

2006-07-18 Thread jhm
Author: jhm Date: Tue Jul 18 01:28:25 2006 New Revision: 423009 URL: http://svn.apache.org/viewvc?rev=423009&view=rev Log: Bug 21042 "Setting XSL parameter to input filename when processed whole directory." * changed from File.getParent() to String.substring() to avoid changing between / and \ *