git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273585 13f79535-47bb-0310-9956-ffa450edef68master
@@ -63,6 +63,8 @@ Fixed bugs: | |||||
* <xmlvalidate> ignored the specified encoding of the files to | * <xmlvalidate> ignored the specified encoding of the files to | ||||
validate. | validate. | ||||
* the errorsbeginat attribute of the <http> condition didn't work. | |||||
Other changes: | Other changes: | ||||
-------------- | -------------- | ||||
* The filesetmanifest attribute of <jar> has been reenabled. | * The filesetmanifest attribute of <jar> has been reenabled. | ||||
@@ -165,11 +165,6 @@ of 400 or greater are viewed as invalid.</p> | |||||
<td valign="top">The full URL of the page to request. The web server must | <td valign="top">The full URL of the page to request. The web server must | ||||
return a status code of <<tt>errorsBeginAt</tt></td> | return a status code of <<tt>errorsBeginAt</tt></td> | ||||
<td align="center">Yes.</td> | <td align="center">Yes.</td> | ||||
<td valign="top">errorsBeginAt</td> | |||||
<td valign="top">The lowest HTTP response code that signals an error; | |||||
by default '400'; server errors, not-authorized, not-found and the like | |||||
are detected</td> | |||||
<td align="center">No</td> | |||||
</tr> | </tr> | ||||
<tr> | <tr> | ||||
<td valign="top">errorsBeginAt</td> | <td valign="top">errorsBeginAt</td> | ||||
@@ -78,7 +78,7 @@ public class Http extends ProjectComponent implements Condition { | |||||
private int errorsBeginAt=400; | private int errorsBeginAt=400; | ||||
public void SetErrorsBeginAt(int errorsBeginAt) { | |||||
public void setErrorsBeginAt(int errorsBeginAt) { | |||||
this.errorsBeginAt=errorsBeginAt; | this.errorsBeginAt=errorsBeginAt; | ||||
} | } | ||||