diff --git a/docs/index.html b/docs/index.html index e927b3409..2c1e5652f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -835,7 +835,7 @@ same patterns as the example before.

  • Deltree
  • Echo
  • Exec
  • -
  • ExecOn
  • +
  • ExecOn
  • Fail
  • Filter
  • FixCRLF
  • @@ -854,12 +854,12 @@ same patterns as the example before.

  • Replace
  • Rmic
  • SignJar
  • +
  • Sql
  • +
  • Style
  • Tar
  • Taskdef
  • Touch
  • Tstamp
  • -
  • Sql
  • -
  • Style
  • Unjar
  • Untar
  • Unzip
  • @@ -1548,7 +1548,7 @@ system command via nested <env> elements.

    adds ${basedir}/bin to the PATH of the system command.


    -

    ExecOn

    +

    ExecOn

    Description

    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.


    +

    Style

    +

    Description

    +

    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.

    +

    Parameters

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    AttributeDescriptionRequired
    basedirwhere to find the source xml file.Yes
    destdirdirectory where to store the results.Yes
    extensiondesired file extension to be used for the targets. + If not specified, the default is "html".No
    stylename of the stylesheet to use.Yes
    processorname 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 pathNo
    includescomma separated list of patterns of files that must be + included. All files are included when omitted.No
    includesfilethe name of a file. Each line of this file is + taken to be an include patternNo
    excludescomma separated list of patterns of files that must be + excluded. No files (except default excludes) are excluded when omitted.No
    excludesfilethe name of a file. Each line of this file is + taken to be an exclude patternNo
    defaultexcludesindicates whether default excludes should be used or not + ("yes"/"no"). Default excludes are used when omitted.No
    +

    Examples

    +
    +

    +<style basedir="doc" destdir="build/doc"
    +       extension="html" style="style/apache.xml"/>
    +

    +
    +

    Tar

    Description

    Creates a tar archive.

    @@ -3584,101 +3679,6 @@ initialization target.

    Examples

      <tstamp/>

    -

    Style

    -

    Description

    -

    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.

    -

    Parameters

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    AttributeDescriptionRequired
    basedirwhere to find the source xml file.Yes
    destdirdirectory where to store the results.Yes
    extensiondesired file extension to be used for the targets. - If not specified, the default is "html".No
    stylename of the stylesheet to use.Yes
    processorname 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 pathNo
    includescomma separated list of patterns of files that must be - included. All files are included when omitted.No
    includesfilethe name of a file. Each line of this file is - taken to be an include patternNo
    excludescomma separated list of patterns of files that must be - excluded. No files (except default excludes) are excluded when omitted.No
    excludesfilethe name of a file. Each line of this file is - taken to be an exclude patternNo
    defaultexcludesindicates whether default excludes should be used or not - ("yes"/"no"). Default excludes are used when omitted.No
    -

    Examples

    -
    -

    -<style basedir="doc" destdir="build/doc"
    -       extension="html" style="style/apache.xml"/>
    -

    -
    -

    Unjar/Unzip

    Description

    Unzips a zip- or jarfile.