diff --git a/docs/manual/CoreTasks/uptodate.html b/docs/manual/CoreTasks/uptodate.html index 145da9c7b..9e4071175 100644 --- a/docs/manual/CoreTasks/uptodate.html +++ b/docs/manual/CoreTasks/uptodate.html @@ -116,7 +116,7 @@ if /usr/local/bin/testit is newer than


-

Copyright © 2001,2002 Apache Software Foundation. +

Copyright © 2001-2002 Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/OptionalTasks/splash.html b/docs/manual/OptionalTasks/splash.html new file mode 100644 index 000000000..18c18b9c5 --- /dev/null +++ b/docs/manual/OptionalTasks/splash.html @@ -0,0 +1,95 @@ + + + + +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
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
showdurationInitial period to pause the build to show the + splash in milliseconds.No5000 ms
+

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"
+           proxy="proxy.mydomain.com"
+           port="8080"
+           user="BuildEng"
+           password="LetMePass"/>
+
+
+

Splashes the jakarta logo, via a connection through the proxy at +proxy.mydomain.com on port 8080 (as user BuildEng/LetMePass) for +an initial period of 5 seconds.

+
+

Copyright © 2002 Apache Software Foundation. All rights +Reserved.

+ + + + diff --git a/docs/manual/optionaltasklist.html b/docs/manual/optionaltasklist.html index b9ce8c038..e54c8de69 100644 --- a/docs/manual/optionaltasklist.html +++ b/docs/manual/optionaltasklist.html @@ -48,6 +48,7 @@ Script
Sound
SourceOffSite
+Splash
Starteam Tasks
Stylebook
Telnet
diff --git a/docs/manual/tasksoverview.html b/docs/manual/tasksoverview.html index da6cad704..b37a55ba5 100644 --- a/docs/manual/tasksoverview.html +++ b/docs/manual/tasksoverview.html @@ -650,6 +650,11 @@ documentation.

the build failed or succeeded.

+ + Splash +

Displays a splash screen.

+ + Sql

Executes a series of SQL statements via JDBC to a database.