diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index abc1d3df8..6efe8d18c 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -307,6 +307,7 @@ Tom Cunningham
Tom Dimock
Tom Eugelink
Tom May
+Tomasz Bech
Trejkaz Xaoza
Ulrich Schmidt
Victor Toni
diff --git a/WHATSNEW b/WHATSNEW
index 42623f167..438a53dee 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -804,6 +804,10 @@ Other changes:
the http condition.
Bugzilla Report 30244
+ * now supports a configurable display text and a regular
+ expression based way to determine progress based on logged messages.
+ Bugzilla Report 39957.
+
Changes from Ant 1.7.0 TO Ant 1.7.1
=============================================
diff --git a/contributors.xml b/contributors.xml
index 14c6f3852..0e31cbb4c 100644
--- a/contributors.xml
+++ b/contributors.xml
@@ -1243,6 +1243,10 @@
Tom
May
+
+ Tomasz
+ Bech
+
Trejkaz
Xaoz
diff --git a/docs/manual/OptionalTasks/splash.html b/docs/manual/OptionalTasks/splash.html
index bfa10a36d..f3a2f4421 100644
--- a/docs/manual/OptionalTasks/splash.html
+++ b/docs/manual/OptionalTasks/splash.html
@@ -52,10 +52,28 @@ whilst waiting for your builds to complete...
splash in milliseconds.
No |
5000 ms |
-
+
+
+ progressregexp |
+ Progress 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 Ant 1.8.0 |
+ No |
+ progress is increased every action
+ and log output line |
+
+
+ displaytext |
+ display text presented in the splash window
+ since Ant 1.8.0 |
+ No |
+ Building ... |
+
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 mostly deprecated in
@@ -63,7 +81,7 @@ preference to the <setproxy>
task, that makes it clear to rea
the build exactly what is going on. We say mostly as this task's support
includes proxy authentication, so you may still need to use its
proxy attributes.
-
+
useproxy |
@@ -110,8 +128,27 @@ proxy attributes.
showduration="5000"/>
-Splashes the jakarta logo, for
-an initial period of 5 seconds.
+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>
+
+