From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../src/ant/apache-ant-1.9.6/manual/ifunless.html | 64 ---------------------- 1 file changed, 64 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/ifunless.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/ifunless.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/ifunless.html b/framework/src/ant/apache-ant-1.9.6/manual/ifunless.html deleted file mode 100644 index abbdce1b..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/ifunless.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - If and Unless on all tasks/nested elements - - - -

If And Unless

- -

Since Ant 1.9.1 it is possible to add if and unless attributes on all tasks and nested elements using special namespaces.

- -

In order to use this feature you need to add the following namespace declarations

-
-    xmlns:if="ant:if"
-    xmlns:unless="ant:unless"
-    
-
- -

The if and unless namespaces support the following 3 conditions : -

- -
-
-<project name="tryit"
- xmlns:if="ant:if"
- xmlns:unless="ant:unless"
->
- <exec executable="java">
-   <arg line="-X" if:true="${showextendedparams}"/>
-   <arg line="-version" unless:true="${showextendedparams}"/>
- </exec>
- <condition property="onmac">
-   <os family="mac"/>
- </condition>
- <echo if:set="onmac">running on MacOS</echo>
- <echo unless:set="onmac">not running on MacOS</echo>
-</project>
-
-
- - - -- cgit 1.2.3-korg