You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2002/04/02 13:07:57 UTC

cvs commit: jakarta-ant/docs/manual/OptionalTasks splash.html

bodewig     02/04/02 03:07:57

  Modified:    docs/manual optionaltasklist.html tasksoverview.html
               docs/manual/CoreTasks uptodate.html
  Added:       docs/manual/OptionalTasks splash.html
  Log:
  Documentation for splash task.
  
  Submitted by:	Les Hughes <le...@rubus.com>
  
  Revision  Changes    Path
  1.28      +1 -0      jakarta-ant/docs/manual/optionaltasklist.html
  
  Index: optionaltasklist.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/optionaltasklist.html,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- optionaltasklist.html	27 Mar 2002 14:32:19 -0000	1.27
  +++ optionaltasklist.html	2 Apr 2002 11:07:56 -0000	1.28
  @@ -48,6 +48,7 @@
   <a href="OptionalTasks/script.html">Script</a><br>
   <a href="OptionalTasks/sound.html">Sound</a><br>
   <a href="OptionalTasks/sos.html">SourceOffSite</a><br>
  +<a href="OptionalTasks/splash.html">Splash</a><br>
   <a href="OptionalTasks/starteam.html">Starteam Tasks</a><br>
   <a href="OptionalTasks/stylebook.html">Stylebook</a><br>
   <a href="OptionalTasks/telnet.html">Telnet</a><br>
  
  
  
  1.7       +5 -0      jakarta-ant/docs/manual/tasksoverview.html
  
  Index: tasksoverview.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/tasksoverview.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- tasksoverview.html	31 Mar 2002 01:17:57 -0000	1.6
  +++ tasksoverview.html	2 Apr 2002 11:07:56 -0000	1.7
  @@ -651,6 +651,11 @@
     </tr>
   
     <tr valign="top">
  +    <td nowrap><a href="OptionalTasks/splash.html">Splash</a></td>
  +    <td><p>Displays a splash screen.</p></td>
  +  </tr>
  +
  +  <tr valign="top">
       <td nowrap><a href="CoreTasks/sql.html">Sql</a></td>
       <td><p>Executes a series of SQL statements via JDBC to a database.
        Statements can either be read in from a text file using the
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/CoreTasks/uptodate.html
  
  Index: uptodate.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/uptodate.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- uptodate.html	1 Apr 2002 07:23:13 -0000	1.8
  +++ uptodate.html	2 Apr 2002 11:07:57 -0000	1.9
  @@ -116,7 +116,7 @@
   </p>
   
   <hr>
  -<p align="center">Copyright &copy; 2001,2002 Apache Software Foundation.
  +<p align="center">Copyright &copy; 2001-2002 Apache Software Foundation.
   All rights Reserved.</p>
   
   </body>
  
  
  
  1.1                  jakarta-ant/docs/manual/OptionalTasks/splash.html
  
  Index: splash.html
  ===================================================================
  <html>
  
  <head>
  <meta http-equiv="Content-Language" content="en-us">
  <title>Ant User Manual</title>
  </head>
  
  <body>
  
  <h2><a name="Splash">Splash</a></h2>
  <p>by Les Hughes (leslie.hughes@rubus.com)
  <h3>Description</h3>
  <p>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...</p>
  <h3>Parameters</h3>
  <table border="1" cellpadding="2" cellspacing="0">
    <tr>
      <td valign="top"><b>Attribute</b></td>
      <td valign="top"><b>Description</b></td>
      <td align="center" valign="top"><b>Required</b></td>
      <td align="center" valign="top"><b>Default</b></td>
    </tr>
    <tr>
      <td valign="top">imageurl</td>
      <td valign="top">A URL pointing to an image to display.</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">antlogo.gif from the classpath</td>
    </tr>
    <tr>
      <td valign="top">useproxy</td>
      <td valign="top">Use a proxy to access imgurl. Note: Only tested
      on JDK 1.2.2 and above</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">None</td>
    </tr>
    <tr>
      <td valign="top">proxy</td>
      <td valign="top">IP or hostname of the proxy server</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">None</td>
    </tr>
    <tr>
      <td valign="top">port</td>
      <td valign="top">Proxy portnumber</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">None</td>
    </tr>
    <tr>
      <td valign="top">user</td>
      <td valign="top">User to authenticate to the proxy as.</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">None</td>
  
    </tr>
    <tr>
      <td valign="top">password</td>
      <td valign="top">Proxy password</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">None</td>
    </tr>
    <tr>
      <td valign="top">showduration</td>
      <td valign="top">Initial period to pause the build to show the
      splash in milliseconds.</td>
      <td valign="top" align="center">No</td>
      <td valign="top" align="center">5000 ms</td>
    </tr>
  </table>
  <h3>Examples</h3>
  <blockquote><pre>
  &lt;splash/&gt;
  </pre></blockquote>
  <p>Splash <code>images/ant_logo_large.gif</code> from the classpath.</p>
  <blockquote><pre>
  &lt;splash imageurl=&quot;http://jakarta.apache.org/images/jakarta-logo.gif&quot;
             useproxy=&quot;true&quot;
             showduration=&quot;5000&quot;
             proxy=&quot;proxy.mydomain.com&quot;
             port=&quot;8080&quot;
             user=&quot;BuildEng&quot;
             password=&quot;LetMePass&quot;/>
  
  </pre></blockquote>
  <p>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.</p>
  <hr>
  <p align="center">Copyright &copy; 2002 Apache Software Foundation. All rights
  Reserved.</p>
  
  </body>
  </html>
  
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>