Browse Source

Documentation fix for if/unless attributes. PR 55359.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1510618 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 12 years ago
parent
commit
86fad58f2d
2 changed files with 7 additions and 5 deletions
  1. +2
    -0
      WHATSNEW
  2. +5
    -5
      manual/ifunless.html

+ 2
- 0
WHATSNEW View File

@@ -12,6 +12,8 @@ Fixed bugs:
Other changes:
--------------

* Documentation fix for if/unless attributes. PR 55359.


Changes from Ant 1.9.1 TO Ant 1.9.2
===================================


+ 5
- 5
manual/ifunless.html View File

@@ -36,9 +36,9 @@

<p>The if and unless namespaces support the following 3 conditions :
<ul>
<li>true</li>true if the value of the property evaluates to true
<li>blank</li>true if the value of the property is null or empty
<li>set</li>true if the property is set
<li>true</li>true if the value of the attribute evaluates to true
<li>blank</li>true if the value of the attribute is null or empty
<li>set</li>true if the specified property is set
</ul></p>

<blockquote>
@@ -48,8 +48,8 @@
xmlns:unless=&quot;ant:unless&quot;
&gt;
&lt;exec executable=&quot;java&quot;&gt;
&lt;arg line=&quot;-X&quot; if:true=&quot;showextendedparams&quot;/&gt;
&lt;arg line=&quot;-version&quot; unless:true=&quot;showextendedparams&quot;/&gt;
&lt;arg line=&quot;-X&quot; if:true=&quot;${showextendedparams}&quot;/&gt;
&lt;arg line=&quot;-version&quot; unless:true=&quot;${showextendedparams}&quot;/&gt;
&lt;/exec&gt;
&lt;condition property=&quot;onmac&quot;&gt;
&lt;os family=&quot;mac&quot;/&gt;


Loading…
Cancel
Save