From b95c44d8aaaf617bfdab72a4f70c615f68e5c4a6 Mon Sep 17 00:00:00 2001
From: Stefan Bodewig
<env>
elements.
adds ${basedir}/bin
to the PATH
of the
system command.
Executes a system command. When the os attribute is specified, then the command is only executed when Ant is run on one of the specified operating @@ -3409,6 +3409,101 @@ alias="apache-group" storepass="secret" />
signs the ant.jar with alias "apache-group" accessing the keystore and private key via "secret" password.
Process a set of documents via XSLT.
+This is useful for building views of XML based documentation, +or in generating code.
+It is possible to refine the set of files that are being copied. This can be +done with the includes, includesfile, excludes, excludesfile and defaultexcludes +attributes. With the includes or includesfile attribute you specify the files you want to +have included by using patterns. The exclude or excludesfile attribute is used to specify +the files you want to have excluded. This is also done with patterns. And +finally with the defaultexcludes attribute, you can specify whether you +want to use default exclusions or not. See the section on directory based tasks, on how the +inclusion/exclusion of files works, and how to write patterns.
+This task forms an implicit FileSet and
+supports all attributes of <fileset>
+(dir
becomes basedir
) as well as the nested
+<include>
, <exclude>
and
+<patternset>
elements.
Attribute | +Description | +Required | +
basedir | +where to find the source xml file. | +Yes | +
destdir | +directory where to store the results. | +Yes | +
extension | +desired file extension to be used for the targets. + If not specified, the default is "html". | +No | +
style | +name of the stylesheet to use. | +Yes | +
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 | +No | +
includes | +comma separated list of patterns of files that must be + included. All files are included when omitted. | +No | +
includesfile | +the name of a file. Each line of this file is + taken to be an include pattern | +No | +
excludes | +comma separated list of patterns of files that must be + excluded. No files (except default excludes) are excluded when omitted. | +No | +
excludesfile | +the name of a file. Each line of this file is + taken to be an exclude pattern | +No | +
defaultexcludes | +indicates whether default excludes should be used or not + ("yes"/"no"). Default excludes are used when omitted. | +No | +
+++<style basedir="doc" destdir="build/doc" + extension="html" style="style/apache.xml"/> ++
Creates a tar archive.
@@ -3584,101 +3679,6 @@ initialization target.<tstamp/>
Process a set of documents via XSLT.
-This is useful for building views of XML based documentation, -or in generating code.
-It is possible to refine the set of files that are being copied. This can be -done with the includes, includesfile, excludes, excludesfile and defaultexcludes -attributes. With the includes or includesfile attribute you specify the files you want to -have included by using patterns. The exclude or excludesfile attribute is used to specify -the files you want to have excluded. This is also done with patterns. And -finally with the defaultexcludes attribute, you can specify whether you -want to use default exclusions or not. See the section on directory based tasks, on how the -inclusion/exclusion of files works, and how to write patterns.
-This task forms an implicit FileSet and
-supports all attributes of <fileset>
-(dir
becomes basedir
) as well as the nested
-<include>
, <exclude>
and
-<patternset>
elements.
Attribute | -Description | -Required | -
basedir | -where to find the source xml file. | -Yes | -
destdir | -directory where to store the results. | -Yes | -
extension | -desired file extension to be used for the targets. - If not specified, the default is "html". | -No | -
style | -name of the stylesheet to use. | -Yes | -
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 | -No | -
includes | -comma separated list of patterns of files that must be - included. All files are included when omitted. | -No | -
includesfile | -the name of a file. Each line of this file is - taken to be an include pattern | -No | -
excludes | -comma separated list of patterns of files that must be - excluded. No files (except default excludes) are excluded when omitted. | -No | -
excludesfile | -the name of a file. Each line of this file is - taken to be an exclude pattern | -No | -
defaultexcludes | -indicates whether default excludes should be used or not - ("yes"/"no"). Default excludes are used when omitted. | -No | -
---<style basedir="doc" destdir="build/doc" - extension="html" style="style/apache.xml"/> --
Unzips a zip- or jarfile.