> I'm using the XSLT task from within ANT; and can't seem to get the > <param ... /> parameter to work as it seems it should. > > When I open the output xml; the params have been set to the strings > "props.prop1" and "props.prop2" instead of the runtime values. Am I > doing something wrong? Any help would be very useful.
This works fine for me (using properties in expression. see below for an example). Try doing an echo of the properties before <xslt>, as in <echo>props.prop1 = ${props.prop1}</echo> --DD <style in="${javadocs}/index2.xml" out="${javadocs}/index.html" style="config/javadocs-index.xsl"> <param name="cycletitle" expression="${cycletitle}" /> </style> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]