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 --- .../ant/apache-ant-1.9.6/manual/Tasks/splash.html | 154 --------------------- 1 file changed, 154 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/splash.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/splash.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/splash.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/splash.html deleted file mode 100644 index e158bd29..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/splash.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -Apache Ant User Manual - - - - -

Splash

-

by Les Hughes (leslie.hughes@rubus.com) -

Description

-

This task creates a splash screen. The splash screen is displayed -for the duration of the build and includes a handy progress bar as -well. Use in conjunction with the sound task to provide interest -whilst waiting for your builds to complete...

-

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequiredDefault
imageurlA URL pointing to an image to display.Noantlogo.gif from the classpath
showdurationInitial period to pause the build to show the - splash in milliseconds.No5000 ms
progressregexpProgress regular expression which is used to - parse the output and dig out current progress. Exactly one group - pattern must exists, and it represents the progress number (0-100) - (i.e "Progress: (.*)%")
- since Apache Ant 1.8.0
Noprogress is increased every action - and log output line
displaytextdisplay text presented in the splash window
- since Ant 1.8.0
NoBuilding ...
-

Deprecated properties

- -The following properties can be used to configure the proxy settings to retrieve -an image from behind a firewall. However, the settings apply not just to this -task, but to all following tasks. Therefore they are now deprecated in -preference to the <setproxy> task, that makes it clear to readers of -the build exactly what is going on. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
useproxyUse a proxy to access imgurl. Note: Only tested - on JDK 1.2.2 and aboveNoNone
proxyIP or hostname of the proxy serverNoNone
portProxy portnumberNoNone
userUser to authenticate to the proxy as.NoNone
passwordProxy passwordNoNone
-

Examples

-
-<splash/>
-
-

Splash images/ant_logo_large.gif from the classpath.

-
-<splash imageurl="http://jakarta.apache.org/images/jakarta-logo.gif"
-           useproxy="true"
-           showduration="5000"/>
-
-
-

Splashes the jakarta logo, for an initial period of 5 seconds.

- -

Splash with controlled progress and nondefault text

-
-        <target name="test_new_features">
-                <echo>New features</echo>
-                <splash progressRegExp="Progress: (.*)%" showduration="0" displayText="Test text"/>
-                <sleep seconds="1"/>
-                <echo>Progress: 10%</echo>
-                <sleep seconds="1"/>
-                <echo>Progress: 20%</echo>
-                <sleep seconds="1"/>
-                <echo>Progress: 50%</echo>
-                <sleep seconds="1"/>
-                <echo>Progress: 70%</echo>
-                <sleep seconds="1"/>
-                <echo>Progress: 100%</echo>
-                <sleep seconds="3"/>
-        </target>
-
- - - - - - -- cgit 1.2.3-korg