? docs/manual/CoreTasks/waitfor.html
? src/main/org/apache/tools/ant/taskdefs/WaitFor.java
? src/main/org/apache/tools/ant/taskdefs/condition/Socket.java
? src/main/org/apache/tools/ant/taskdefs/condition/Http.java
Index: docs/manual/coretasklist.html
===================================================================
RCS file: /home/cvspublic/jakarta-ant/docs/manual/coretasklist.html,v
retrieving revision 1.26
diff -r1.26 coretasklist.html
83a84
> <a href="CoreTasks/waitfor.html">Waitfor</a><br>
Index: docs/manual/CoreTasks/condition.html
===================================================================
RCS file: /home/cvspublic/jakarta-ant/docs/manual/CoreTasks/condition.html,v
retrieving revision 1.9
diff -r1.9 condition.html
162,165c162,202
< href="checksum.html">Checksum</a> task, all attributes and nested
< elements of that task are supported, the property and overwrite
< attributes are redundant and will be ignored.</p>
< 
---
> href="checksum.html">Checksum</a> task, all attributes and nested elements of 
>   that task are supported, the property and overwrite attributes are redundant 
>   and will be ignored.</p>
> <h4>http</h4>
> <p>The <code>http</code> condition checks for a valid response from a web server 
>   of the specified url. 
> <p>&nbsp; 
> <table border="1" cellpadding="2" cellspacing="0">
>   <tr> 
>     <td width="12%" valign="top"><b>Attribute</b></td>
>     <td width="78%" valign="top"><b>Description</b></td>
>     <td width="10%" valign="top"><b>Required</b></td>
>   </tr>
>   <tr> 
>     <td valign="top">url</td>
>     <td valign="top">The full URL of the page to request. The web server must 
>       return a status code of &lt;500..</td>
>     <td align="center">Yes.</td>
>   </tr>
> </table>
> <h4>socket</h4>
> <p>The <code>socket</code> condition checks for the existence of a TCP/IP listener 
>   at the specified host and port. 
> <p>&nbsp; 
> <table border="1" cellpadding="2" cellspacing="0">
>   <tr> 
>     <td width="12%" valign="top"><b>Attribute</b></td>
>     <td width="78%" valign="top"><b>Description</b></td>
>     <td width="10%" valign="top"><b>Required</b></td>
>   </tr>
>   <tr> 
>     <td valign="top">server</td>
>     <td valign="top">The DNS name or IP address of the server.</td>
>     <td align="center">Yes.</td>
>   </tr>
>   <tr> 
>     <td valign="top">port</td>
>     <td valign="top">The port number to connect to.</td>
>     <td align="center">Yes.</td>
>   </tr>
> </table>
Index: src/main/org/apache/tools/ant/taskdefs/defaults.properties
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/defaults.properties,v
retrieving revision 1.97
diff -r1.97 defaults.properties
58a59
> waitfor=org.apache.tools.ant.taskdefs.WaitFor
Index: src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java,v
retrieving revision 1.6
diff -r1.6 ConditionBase.java
157a158,171
>      * Add an &lt;http&gt; condition.
>      *
>      * @since 1.2
>      */
>     public void addHttp(Http h) {conditions.addElement(h);}
> 
>     /**
>      * Add a &lt;socket&gt; condition.
>      *
>      * @since 1.2
>      */
>     public void addSocket(Socket s) {conditions.addElement(s);}
> 
>     /**

