Browse Source

Removed cvshome.org which is gone for good, added a few touches

master
Gintas Grigelionis 7 years ago
parent
commit
997a08b23e
7 changed files with 19 additions and 20 deletions
  1. +2
    -2
      manual/Tasks/antversion.html
  2. +4
    -4
      manual/Tasks/changelog.html
  3. +1
    -1
      manual/Tasks/concat.html
  4. +5
    -6
      manual/Tasks/conditions.html
  5. +1
    -1
      manual/Tasks/copy.html
  6. +3
    -3
      manual/Tasks/cvs.html
  7. +3
    -3
      manual/Tasks/cvstagdiff.html

+ 2
- 2
manual/Tasks/antversion.html View File

@@ -42,14 +42,14 @@ Stores the Apache Ant version (when used as task) or checks for a specific Ant v
<tr>
<td valign="top">atleast</td>
<td valign="top">The version that this Ant is of at least.
The format is major.minor.point.</td>
The format is <code>major.minor.point</code>.</td>
<td valign="top" align="center">No</td>
<td valign="top" rowspan="2" align="center">One of these.</td>
</tr>
<tr>
<td valign="top">exactly</td>
<td valign="top">The version that this Ant is of exactly.
The format is <tt>major.minor.point</tt>.</td>
The format is <code>major.minor.point</code>.</td>
<td valign="top" align="center">No</td>
</tr>
<tr>


+ 4
- 4
manual/Tasks/changelog.html View File

@@ -29,11 +29,11 @@
<p>Generates an XML-formatted report file of the change logs recorded in a
<a href="http://www.nongnu.org/cvs/" target="_top">CVS</a> repository.</p>
<p><b>Important:</b> This task needs &quot;<code>cvs</code>&quot; on the path. If it isn't, you will get
an error (such as error <code>2</code> on windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
an error (such as error <code>2</code> on Windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
from the command line in the target directory in which you are working.
Also note that this task assumes that the cvs executable is compatible
with the Unix version from cvshome.org, this is not completely true
for certain other cvs clients - like CVSNT for example - and some
with the Unix version, this is not completely true
for certain other CVS clients - like CVSNT for example - and some
operation may fail when using such an incompatible client.
</p>
<h3>Parameters</h3>
@@ -45,7 +45,7 @@ operation may fail when using such an incompatible client.
</tr>
<tr>
<td colspan="3">Attributes from parent Cvs task which are meaningful here<br>
Since Apache Ant 1.6.1</td>
<em>Since Apache Ant 1.6.1</em></td>
</tr>
<tr>
<td valign="top">cvsRoot</td>


+ 1
- 1
manual/Tasks/concat.html View File

@@ -120,7 +120,7 @@ Resource Collection</a>s are used to
<tr>
<td valign="top">outputencoding</td>
<td valign="top">
The encoding to use when writing the output file
The encoding to use when writing the output file.
<em>Since Ant 1.6</em>.
Defaults to the value of the encoding attribute
if given or the default JVM encoding otherwise.


+ 5
- 6
manual/Tasks/conditions.html View File

@@ -53,7 +53,7 @@ nested elements of the condition task are supported. This condition
is true if all of its contained conditions are, conditions will be
evaluated in the order they have been specified in the build file.</p>
<p>The <code>&lt;and&gt;</code> condition has the same shortcut
semantics as the Java &amp;&amp; operator, as soon as one of the
semantics as the Java <code>&amp;&amp;</code> operator, as soon as one of the
nested conditions is false, no other condition will be evaluated.</p>

<h4 id="or">or</h4>
@@ -64,7 +64,7 @@ is true if at least one of its contained conditions is, conditions
will be evaluated in the order they have been specified in the build
file.</p>
<p>The <code>&lt;or&gt;</code> condition has the same
shortcut semantics as the Java || operator, as soon as one of the
shortcut semantics as the Java <code>||</code> operator, as soon as one of the
nested conditions is true, no other condition will be evaluated.</p>

<h4 id="xor">xor</h4>
@@ -224,9 +224,8 @@ of 400 or greater are viewed as invalid.</p>
<tr>
<td valign="top">requestMethod</td>
<td valign="top">The HTTP method to be used when issuing the request.
Any of GET, POST, HEAD, OPTIONS, PUT, DELETEm and TRACE
are valid, subject to protocol restrictions. The default if not
specified is &quot;GET&quot;.<br/>
Any of GET, POST, HEAD, OPTIONS, PUT, DELETE and TRACE
are valid, subject to protocol restrictions. The default is &quot;GET&quot;.<br/>
<em>since Ant 1.8.0</em></td>
<td align="center">No</td>
</tr>
@@ -364,7 +363,7 @@ that is "true","yes", or "on"</p>
<p>Test whether a given reference has been defined in this project and
- optionally - is of an expected type.</p>

<p>This condition has been added in Apache Ant 1.6.</p>
<p><em>Since Apache Ant 1.6</em>.</p>

<table>
<tr>


+ 1
- 1
manual/Tasks/copy.html View File

@@ -81,7 +81,7 @@ operation as <a href="../Types/filterset.html">filtersets</a>.
<code>file</code> attribute is also specified, then only
<code>todir</code> is allowed.<br/>
Prior to Apache Ant 1.8.2, the <code>tofile</code> attribute
only supported filesystem resources top copy from.</td>
only supported <a href="../Types/resources.html#file">file resources</a> to copy from.</td>
</tr>
<tr>
<td valign="top">todir</td>


+ 3
- 3
manual/Tasks/cvs.html View File

@@ -29,11 +29,11 @@
<p>Handles packages/modules retrieved from a
<a href="http://www.nongnu.org/cvs/" target="_top">CVS</a> repository.</p>
<p><b>Important:</b> This task needs &quot;<code>cvs</code>&quot; on the path. If it isn't, you will get
an error (such as error <code>2</code> on windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
an error (such as error <code>2</code> on Windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
from the command line in the target directory in which you are working.
Also note that this task assumes that the cvs executable is compatible
with the Unix version from cvshome.org, this is not completely true
for certain other cvs clients - like CVSNT for example - and some
with the Unix version, this is not completely true
for certain other CVS clients - like CVSNT for example - and some
operation may fail when using such an incompatible client.
</p>



+ 3
- 3
manual/Tasks/cvstagdiff.html View File

@@ -26,11 +26,11 @@
<p>Generates an XML-formatted report file of the changes between two tags or dates recorded in a
<a href="http://www.nongnu.org/cvs/" target="_top">CVS</a> repository.</p>
<p><b>Important:</b> This task needs &quot;<code>cvs</code>&quot; on the path. If it isn't, you will get
an error (such as error <code>2</code> on windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
an error (such as error <code>2</code> on Windows). If <code>&lt;cvs&gt;</code> doesn't work, try to execute <code>cvs.exe</code>
from the command line in the target directory in which you are working.
Also note that this task assumes that the cvs executable is compatible
with the Unix version from cvshome.org, this is not completely true
for certain other cvs clients - like CVSNT for example - and some
with the Unix version, this is not completely true
for certain other CVS clients - like CVSNT for example - and some
operation may fail when using such an incompatible client.
</p>
<h3>Parameters</h3>


Loading…
Cancel
Save