diff --git a/WHATSNEW b/WHATSNEW
index f9964f83e..43ec62a77 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -450,6 +450,8 @@ Other changes:
*
Attribute | +Description | +Required | +
name | +Name of the XSL parameter | +Yes | +
expression | +Text value to be placed into the param. + Was originally intended to be an XSL expression. |
+ Yes | +
if | +The param will only passed if this property is set. | +No | +
unless | +The param will only passed unless this property is set. | +No | +
<junitreport todir="./reports"> @@ -107,9 +141,26 @@ element.
would generate a TESTS-TestSuites.xml file in the directory reports and generate the default framed report in the directory report/html.
- ++++<junitreport todir="${outputdir}"> + <fileset dir="${jrdir}"> + <include name="TEST-*.xml"/> + </fileset> + <report todir="${outputdir}/html" + styledir="junitreport" + format="frames"> + <param name="key1" expression="value1"/> + <param name="key2" expression="value2"/> + </report> +</junitreport> ++
This example requires a file called junitreport/junit-frames.xsl. + The XSL parameters key1 and key2 will be passed to the XSL transformation.
Copyright © 2001-2002,2004-2005 The Apache Software Foundation. All rights +
Copyright © 2001-2002,2004-2006 The Apache Software Foundation. All rights Reserved.