Last week, I sent a questionary about namespace support in ant 1.6. http://marc.theaimsgroup.com/?l=ant-dev&m=106848848930806&w=2
>From the feedback, I think that we should implement option b), nested elements of tasks/types have the same namespace uri as the containing task/type, unless they are typedefed elements. For example: <project xmlns:antcontrib="antlib:net.sf.antcontrib" xmlns:acme="antlib:org.acme.anttasks"> <target name="show"> <antcontrib:if> <antcontrib:or> <antcontrib:equals arg1="yes" arg2="${prop}"/> <acme:fileready file="${file}"/> </antcontrib:or> <antcontrib:then> <echo>The arguments are equal</echo> </antcontrib:then> </antcontrib:if> </target> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]