Browse Source

Fixed broken link to <execon>. Reinstated alphabetical order of

built-in tasks.
Submitted by:	Diane Holt <holtdl@yahoo.com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267981 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 25 years ago
parent
commit
b95c44d8aa
1 changed files with 99 additions and 99 deletions
  1. +99
    -99
      docs/index.html

+ 99
- 99
docs/index.html View File

@@ -835,7 +835,7 @@ same patterns as the example before.</p>
<li><a href="#deltree">Deltree</a></li> <li><a href="#deltree">Deltree</a></li>
<li><a href="#echo">Echo</a></li> <li><a href="#echo">Echo</a></li>
<li><a href="#exec">Exec</a></li> <li><a href="#exec">Exec</a></li>
<li><a href="#exec">ExecOn</a></li>
<li><a href="#execon">ExecOn</a></li>
<li><a href="#fail">Fail</a></li> <li><a href="#fail">Fail</a></li>
<li><a href="#filter">Filter</a></li> <li><a href="#filter">Filter</a></li>
<li><a href="#fixcrlf">FixCRLF</a></li> <li><a href="#fixcrlf">FixCRLF</a></li>
@@ -854,12 +854,12 @@ same patterns as the example before.</p>
<li><a href="#replace">Replace</a></li> <li><a href="#replace">Replace</a></li>
<li><a href="#rmic">Rmic</a></li> <li><a href="#rmic">Rmic</a></li>
<li><a href="#signjar">SignJar</a></li> <li><a href="#signjar">SignJar</a></li>
<li><a href="sql.html">Sql</a></li>
<li><a href="#style">Style</a></li>
<li><a href="#tar">Tar</a></li> <li><a href="#tar">Tar</a></li>
<li><a href="#taskdef">Taskdef</a></li> <li><a href="#taskdef">Taskdef</a></li>
<li><a href="#touch">Touch</a></li> <li><a href="#touch">Touch</a></li>
<li><a href="#tstamp">Tstamp</a></li> <li><a href="#tstamp">Tstamp</a></li>
<li><a href="sql.html">Sql</a></li>
<li><a href="#style">Style</a></li>
<li><a href="#unzip">Unjar</a></li> <li><a href="#unzip">Unjar</a></li>
<li><a href="#untar">Untar</a></li> <li><a href="#untar">Untar</a></li>
<li><a href="#unzip">Unzip</a></li> <li><a href="#unzip">Unzip</a></li>
@@ -1548,7 +1548,7 @@ system command via nested <code>&lt;env&gt;</code> elements.</p>
<p>adds <code>${basedir}/bin</code> to the <code>PATH</code> of the <p>adds <code>${basedir}/bin</code> to the <code>PATH</code> of the
system command.</p> system command.</p>
<hr> <hr>
<h2><a name="exec">ExecOn</a></h2>
<h2><a name="execon">ExecOn</a></h2>
<h3>Description</h3> <h3>Description</h3>
<p>Executes a system command. When the <i>os</i> attribute is specified, then <p>Executes a system command. When the <i>os</i> attribute is specified, then
the command is only executed when Ant is run on one of the specified operating the command is only executed when Ant is run on one of the specified operating
@@ -3409,6 +3409,101 @@ alias=&quot;apache-group&quot; storepass=&quot;secret&quot; /&gt;</code></p>
<p>signs the ant.jar with alias &quot;apache-group&quot; accessing the <p>signs the ant.jar with alias &quot;apache-group&quot; accessing the
keystore and private key via &quot;secret&quot; password.</p> keystore and private key via &quot;secret&quot; password.</p>
<hr> <hr>
<h2><a name="style">Style</a></h2>
<h3>Description</h3>
<p>Process a set of documents via XSLT.</p>
<p>This is useful for building views of XML based documentation,
or in generating code.</p>
<p>It is possible to refine the set of files that are being copied. This can be
done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
the files you want to have excluded. This is also done with patterns. And
finally with the <i>defaultexcludes</i> attribute, you can specify whether you
want to use default exclusions or not. See the section on <a
href="#directorybasedtasks">directory based tasks</a>, on how the
inclusion/exclusion of files works, and how to write patterns.</p>
<p>This task forms an implicit <a href="#fileset">FileSet</a> and
supports all attributes of <code>&lt;fileset&gt;</code>
(<code>dir</code> becomes <code>basedir</code>) as well as the nested
<code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
<code>&lt;patternset&gt;</code> elements.</p>
<h3>Parameters</h3>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">basedir</td>
<td valign="top">where to find the source xml file.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">destdir</td>
<td valign="top">directory where to store the results.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">extension</td>
<td valign="top">desired file extension to be used for the targets.
If not specified, the default is "html".</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">style</td>
<td valign="top">name of the stylesheet to use.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">processor</td>
<td valign="top">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</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">includes</td>
<td valign="top">comma separated list of patterns of files that must be
included. All files are included when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">includesfile</td>
<td valign="top">the name of a file. Each line of this file is
taken to be an include pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludes</td>
<td valign="top">comma separated list of patterns of files that must be
excluded. No files (except default excludes) are excluded when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludesfile</td>
<td valign="top">the name of a file. Each line of this file is
taken to be an exclude pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">defaultexcludes</td>
<td valign="top">indicates whether default excludes should be used or not
(&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
</table>
<h3>Examples</h3>
<blockquote>
<p><pre>
&lt;style basedir=&quot;doc&quot; destdir=&quot;build/doc&quot;
extension=&quot;html&quot; style=&quot;style/apache.xml&quot;/&gt;
</pre></p>
</blockquote>
<hr>
<h2><a name="tar">Tar</a></h2> <h2><a name="tar">Tar</a></h2>
<h3>Description</h3> <h3>Description</h3>
<p>Creates a tar archive.</p> <p>Creates a tar archive.</p>
@@ -3584,101 +3679,6 @@ initialization target.</p>
<h3>Examples</h3> <h3>Examples</h3>
<pre> &lt;tstamp/&gt;</pre> <pre> &lt;tstamp/&gt;</pre>
<hr> <hr>
<h2><a name="style">Style</a></h2>
<h3>Description</h3>
<p>Process a set of documents via XSLT.</p>
<p>This is useful for building views of XML based documentation,
or in generating code.</p>
<p>It is possible to refine the set of files that are being copied. This can be
done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
the files you want to have excluded. This is also done with patterns. And
finally with the <i>defaultexcludes</i> attribute, you can specify whether you
want to use default exclusions or not. See the section on <a
href="#directorybasedtasks">directory based tasks</a>, on how the
inclusion/exclusion of files works, and how to write patterns.</p>
<p>This task forms an implicit <a href="#fileset">FileSet</a> and
supports all attributes of <code>&lt;fileset&gt;</code>
(<code>dir</code> becomes <code>basedir</code>) as well as the nested
<code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
<code>&lt;patternset&gt;</code> elements.</p>
<h3>Parameters</h3>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">basedir</td>
<td valign="top">where to find the source xml file.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">destdir</td>
<td valign="top">directory where to store the results.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">extension</td>
<td valign="top">desired file extension to be used for the targets.
If not specified, the default is "html".</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">style</td>
<td valign="top">name of the stylesheet to use.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">processor</td>
<td valign="top">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</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">includes</td>
<td valign="top">comma separated list of patterns of files that must be
included. All files are included when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">includesfile</td>
<td valign="top">the name of a file. Each line of this file is
taken to be an include pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludes</td>
<td valign="top">comma separated list of patterns of files that must be
excluded. No files (except default excludes) are excluded when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">excludesfile</td>
<td valign="top">the name of a file. Each line of this file is
taken to be an exclude pattern</td>
<td valign="top" align="center">No</td>
</tr>
<tr>
<td valign="top">defaultexcludes</td>
<td valign="top">indicates whether default excludes should be used or not
(&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
<td valign="top" align="center">No</td>
</tr>
</table>
<h3>Examples</h3>
<blockquote>
<p><pre>
&lt;style basedir=&quot;doc&quot; destdir=&quot;build/doc&quot;
extension=&quot;html&quot; style=&quot;style/apache.xml&quot;/&gt;
</pre></p>
</blockquote>
<hr>
<h2><a name="unzip">Unjar/Unzip</a></h2> <h2><a name="unzip">Unjar/Unzip</a></h2>
<h3>Description</h3> <h3>Description</h3>
<p>Unzips a zip- or jarfile.</p> <p>Unzips a zip- or jarfile.</p>


Loading…
Cancel
Save