source: other-projects/trunk/realistic-books/packages/AntInstaller/web/manual1.6.2/manual/OptionalTasks/splash.html@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 3.4 KB
Line 
1<html>
2
3<head>
4<meta http-equiv="Content-Language" content="en-us">
5<title>Ant User Manual</title>
6<link rel="stylesheet" type="text/css" href="../stylesheets/antmanual.css">
7</head>
8
9<body>
10
11<h2><a name="Splash">Splash</a></h2>
12<p>by Les Hughes ([email protected])
13<h3>Description</h3>
14<p>This task creates a splash screen. The splash screen is displayed
15for the duration of the build and includes a handy progress bar as
16well. Use in conjunction with the sound task to provide interest
17whilst waiting for your builds to complete...</p>
18<h3>Parameters</h3>
19<table border="1" cellpadding="2" cellspacing="0">
20 <tr>
21 <td valign="top"><b>Attribute</b></td>
22 <td valign="top"><b>Description</b></td>
23 <td align="center" valign="top"><b>Required</b></td>
24 <td align="center" valign="top"><b>Default</b></td>
25 </tr>
26 <tr>
27 <td valign="top">imageurl</td>
28 <td valign="top">A URL pointing to an image to display.</td>
29 <td valign="top" align="center">No</td>
30 <td valign="top" align="center">antlogo.gif from the classpath</td>
31 </tr>
32
33 <tr>
34 <td valign="top">showduration</td>
35 <td valign="top">Initial period to pause the build to show the
36 splash in milliseconds.</td>
37 <td valign="top" align="center">No</td>
38 <td valign="top" align="center">5000 ms</td>
39 </tr>
40</table>
41<h3>Deprecated properties</h3>
42
43The following properties can be used to configure the proxy settings to retrieve
44an image from behind a firewall. However, the settings apply not just to this
45task, but to all following tasks. Therefore they are now mostly deprecated in
46preference to the &lt;setproxy&gt; task, that makes it clear to readers of
47the build exactly what is going on. We say mostly as this task's support
48includes proxy authentication, so you may still need to use its
49proxy attributes.
50
51<table border="1" cellpadding="2" cellspacing="0">
52 <tr>
53 <td valign="top">useproxy</td>
54 <td valign="top">Use a proxy to access imgurl. Note: Only tested
55 on JDK 1.2.2 and above</td>
56 <td valign="top" align="center">No</td>
57 <td valign="top" align="center">None</td>
58 </tr>
59 <tr>
60 <td valign="top">proxy</td>
61 <td valign="top">IP or hostname of the proxy server</td>
62 <td valign="top" align="center">No</td>
63 <td valign="top" align="center">None</td>
64 </tr>
65 <tr>
66 <td valign="top">port</td>
67 <td valign="top">Proxy portnumber</td>
68 <td valign="top" align="center">No</td>
69 <td valign="top" align="center">None</td>
70 </tr>
71 <tr>
72 <td valign="top">user</td>
73 <td valign="top">User to authenticate to the proxy as.</td>
74 <td valign="top" align="center">No</td>
75 <td valign="top" align="center">None</td>
76
77 </tr>
78 <tr>
79 <td valign="top">password</td>
80 <td valign="top">Proxy password</td>
81 <td valign="top" align="center">No</td>
82 <td valign="top" align="center">None</td>
83 </tr>
84
85</table>
86<h3>Examples</h3>
87<blockquote><pre>
88&lt;splash/&gt;
89</pre></blockquote>
90<p>Splash <code>images/ant_logo_large.gif</code> from the classpath.</p>
91<blockquote><pre>
92&lt;splash imageurl=&quot;http://jakarta.apache.org/images/jakarta-logo.gif&quot;
93 useproxy=&quot;true&quot;
94 showduration=&quot;5000&quot;/&gt;
95
96</pre></blockquote>
97<p>Splashes the jakarta logo, for
98an initial period of 5 seconds.</p>
99<hr>
100<p align="center">Copyright &copy; 2002,2004 The Apache Software Foundation. All rights
101Reserved.</p>
102
103</body>
104</html>
105
Note: See TracBrowser for help on using the repository browser.