diff --git a/WHATSNEW b/WHATSNEW index 4afe691bb..600ee4850 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -9,9 +9,9 @@ Changes that could break older environments: * has been replaced by a number of new tasks. -* Ant now throws a BuildException when an attempt is made to use a property which has - not been set. Any build files which rely on non-set properties being passed - through untranslated will now break. +* Ant now throws a BuildException when an attempt is made to use a property + which has not been set. Any build files which rely on non-set properties + being passed through untranslated will now break. Other changes: -------------- @@ -45,15 +45,18 @@ Other changes: of the source files are no longer required to be at the end of the command. +* Style tasks will now support TraX compliant XSL processors if one is present + in your classpath. + * Ant now prints a warning when an attempt is made to use a property which has not been set. Any build files which rely on non-set properties being passed through untranslated will now break. -* Added a failonerror to the javac task. If set to false, the build will continue - even if there are compilation errors. +* Added a failonerror to the javac task. If set to false, the build will + continue even if there are compilation errors. -* Added nested format elements to the tstamp task allowing additional time formats - to be defined for arbitrary properties. +* Added nested format elements to the tstamp task allowing additional time + formats to be defined for arbitrary properties. Fixed bugs: ----------- @@ -68,8 +71,8 @@ Fixed bugs: keppgenerated in ejbc can now be turned off * ejbjar now correctly ignores elements in the deployment descriptor. - CMP files are included by parsing the weblogic deployment descriptor rather than - relying on the naming convention used in ant 1.2 + CMP files are included by parsing the weblogic deployment descriptor rather + than relying on the naming convention used in ant 1.2 Include super classes and super interfaces into the generated ejb jar files * now correctly deals with spaces in arguments diff --git a/docs/index.html b/docs/index.html index c56fa9c31..ab15bef13 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4336,11 +4336,11 @@ supports all attributes of <fileset> processor - name of the XSLT processor to use. Permissible -values are "xslp" for the XSL:P processor, "xalan" -for the Apache XML Xalan processor, or the name of an arbitrary XSLTLiaison class. -Defaults to xslp or xalan (in that order), if one is found in your -class path + name of the XSLT processor to use. Permissible values are +"trax" for a TraX compliant processor, "xslp" for the XSL:P +processor, "xalan" for the Apache XML Xalan (version 1) processor, or the name of an arbitrary XSLTLiaison class. +Defaults to trax, followed by xslp then xalan (in that order). The first one +found in your class path is the one that is used. No