You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

splash.html 3.0 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="Splash">Splash</a></h2>
  8. <p>by Les Hughes (leslie.hughes@rubus.com)
  9. <h3>Description</h3>
  10. <p>This task creates a splash screen. The splash screen is displayed
  11. for the duration of the build and includes a handy progress bar as
  12. well. Use in conjunction with the sound task to provide interest
  13. whilst waiting for your builds to complete...</p>
  14. <h3>Parameters</h3>
  15. <table border="1" cellpadding="2" cellspacing="0">
  16. <tr>
  17. <td valign="top"><b>Attribute</b></td>
  18. <td valign="top"><b>Description</b></td>
  19. <td align="center" valign="top"><b>Required</b></td>
  20. <td align="center" valign="top"><b>Default</b></td>
  21. </tr>
  22. <tr>
  23. <td valign="top">imageurl</td>
  24. <td valign="top">A URL pointing to an image to display.</td>
  25. <td valign="top" align="center">No</td>
  26. <td valign="top" align="center">antlogo.gif from the classpath</td>
  27. </tr>
  28. <tr>
  29. <td valign="top">useproxy</td>
  30. <td valign="top">Use a proxy to access imgurl. Note: Only tested
  31. on JDK 1.2.2 and above</td>
  32. <td valign="top" align="center">No</td>
  33. <td valign="top" align="center">None</td>
  34. </tr>
  35. <tr>
  36. <td valign="top">proxy</td>
  37. <td valign="top">IP or hostname of the proxy server</td>
  38. <td valign="top" align="center">No</td>
  39. <td valign="top" align="center">None</td>
  40. </tr>
  41. <tr>
  42. <td valign="top">port</td>
  43. <td valign="top">Proxy portnumber</td>
  44. <td valign="top" align="center">No</td>
  45. <td valign="top" align="center">None</td>
  46. </tr>
  47. <tr>
  48. <td valign="top">user</td>
  49. <td valign="top">User to authenticate to the proxy as.</td>
  50. <td valign="top" align="center">No</td>
  51. <td valign="top" align="center">None</td>
  52. </tr>
  53. <tr>
  54. <td valign="top">password</td>
  55. <td valign="top">Proxy password</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">showduration</td>
  61. <td valign="top">Initial period to pause the build to show the
  62. splash in milliseconds.</td>
  63. <td valign="top" align="center">No</td>
  64. <td valign="top" align="center">5000 ms</td>
  65. </tr>
  66. </table>
  67. <h3>Examples</h3>
  68. <blockquote><pre>
  69. &lt;splash/&gt;
  70. </pre></blockquote>
  71. <p>Splash <code>images/ant_logo_large.gif</code> from the classpath.</p>
  72. <blockquote><pre>
  73. &lt;splash imageurl=&quot;http://jakarta.apache.org/images/jakarta-logo.gif&quot;
  74. useproxy=&quot;true&quot;
  75. showduration=&quot;5000&quot;
  76. proxy=&quot;proxy.mydomain.com&quot;
  77. port=&quot;8080&quot;
  78. user=&quot;BuildEng&quot;
  79. password=&quot;LetMePass&quot;/>
  80. </pre></blockquote>
  81. <p>Splashes the jakarta logo, via a connection through the proxy at
  82. proxy.mydomain.com on port 8080 (as user BuildEng/LetMePass) for
  83. an initial period of 5 seconds.</p>
  84. <hr>
  85. <p align="center">Copyright &copy; 2002 Apache Software Foundation. All rights
  86. Reserved.</p>
  87. </body>
  88. </html>