DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34942>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=34942 ------- Additional Comments From [EMAIL PROTECTED] 2005-08-11 17:09 ------- Cool, the main thing is making sure the docs don't get out of sync with project.xml, otherwise confusion ensues. >> Also, you build against commons-net-1.4.0 according to project.xml. > Same story. Its often better to use more recent versions but we should > take care not to break backward compatibility too fast. > Now that commons-net has a new parsing engine there are arguments to > break it, so we can go that way. Yes please file a new bugzilla ticket with > your > patch - as enhancement - we can apply it after release 1.0 Will do, sometime tonight >> Now, one more thing. I'd like to add Ant-1.6+ antlib functionality. > Sure, we can to it. > Isnt the main advantage of it to have a namespace? So we could name your vfs > tasks simply copy, move, ... > In ant one can use > xmlns:vfs="antlib:org.apache.commons.vfs.tasks" and then > <vfs:copy .. > Or am I wrong? No, that's pretty much right on, although you can use namespaces without using antlib. Another advantage is that you don't even need to <taskdef> the VFS tasks if they are in the classpath already since antlib does it for you. So, you can just do... <project xmlns:vfs="antlib:org.apache.commons.vfs.tasks" ...> <target ...> <vfs:copy .../> </target> </project> Notice the lack of an explicit taskdef! Keeps things clean and nearly as easy to use as the core ant tasks. Jake -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
