diff options
-rw-r--r-- | src/java/net/sf/antcontrib/antcontrib.properties | 1 | ||||
-rw-r--r-- | src/java/net/sf/antcontrib/antlib.xml | 73 |
2 files changed, 38 insertions, 36 deletions
diff --git a/src/java/net/sf/antcontrib/antcontrib.properties b/src/java/net/sf/antcontrib/antcontrib.properties index 6544999..b42b4ec 100644 --- a/src/java/net/sf/antcontrib/antcontrib.properties +++ b/src/java/net/sf/antcontrib/antcontrib.properties @@ -31,7 +31,6 @@ math=net.sf.antcontrib.math.MathTask # Net tasks
post=net.sf.antcontrib.net.PostTask
-importurl=net.sf.antcontrib.net.URLImportTask
# Peformance Tasks
stopwatch=net.sf.antcontrib.perf.StopWatchTask
diff --git a/src/java/net/sf/antcontrib/antlib.xml b/src/java/net/sf/antcontrib/antlib.xml index d002682..203b12e 100644 --- a/src/java/net/sf/antcontrib/antlib.xml +++ b/src/java/net/sf/antcontrib/antlib.xml @@ -5,41 +5,44 @@ <taskdef name="for" classname="net.sf.antcontrib.logic.ForTask" - onerror="report"/>
-
- <typedef
- name="httpState"
- classname="net.sf.antcontrib.net.httpclient.HttpStateType"
- onerror="report" /> - <typedef
- name="httpClient"
- classname="net.sf.antcontrib.net.httpclient.HttpClientType"
- onerror="report" />
+ onerror="ignore"/> + + <typedef + name="httpState" + classname="net.sf.antcontrib.net.httpclient.HttpStateType" + onerror="ignore" /> + <typedef + name="httpClient" + classname="net.sf.antcontrib.net.httpclient.HttpClientType" + onerror="ignore" /> <taskdef name="getCookie" classname="net.sf.antcontrib.net.httpclient.GetCookieTask" - onerror="report" /> - <taskdef name="addCookie"
- classname="net.sf.antcontrib.net.httpclient.AddCookieTask"
- onerror="report" />
- <taskdef name="clearCookies"
- classname="net.sf.antcontrib.net.httpclient.ClearCookiesTask"
- onerror="report" />
- <taskdef name="addCredentials"
- classname="net.sf.antcontrib.net.httpclient.AddCredentialsTask"
- onerror="report" />
- <taskdef name="clearCredentials"
- classname="net.sf.antcontrib.net.httpclient.ClearCredentialsTask"
- onerror="report" />
- <taskdef name="purgeExpiredCookies"
- classname="net.sf.antcontrib.net.httpclient.PurgeExpiredCookiesTask"
- onerror="report" />
- <taskdef name="postMethod"
- classname="net.sf.antcontrib.net.httpclient.PostMethodTask"
- onerror="report" />
- <taskdef name="getMethod"
- classname="net.sf.antcontrib.net.httpclient.GetMethodTask"
- onerror="report" />
- <taskdef name="headMethod"
- classname="net.sf.antcontrib.net.httpclient.HeadMethodTask"
- onerror="report" />
+ onerror="ignore" /> + <taskdef name="addCookie" + classname="net.sf.antcontrib.net.httpclient.AddCookieTask" + onerror="ignore" /> + <taskdef name="clearCookies" + classname="net.sf.antcontrib.net.httpclient.ClearCookiesTask" + onerror="ignore" /> + <taskdef name="addCredentials" + classname="net.sf.antcontrib.net.httpclient.AddCredentialsTask" + onerror="ignore" /> + <taskdef name="clearCredentials" + classname="net.sf.antcontrib.net.httpclient.ClearCredentialsTask" + onerror="ignore" /> + <taskdef name="purgeExpiredCookies" + classname="net.sf.antcontrib.net.httpclient.PurgeExpiredCookiesTask" + onerror="ignore" /> + <taskdef name="postMethod" + classname="net.sf.antcontrib.net.httpclient.PostMethodTask" + onerror="ignore" /> + <taskdef name="getMethod" + classname="net.sf.antcontrib.net.httpclient.GetMethodTask" + onerror="ignore" /> + <taskdef name="headMethod" + classname="net.sf.antcontrib.net.httpclient.HeadMethodTask" + onerror="ignore" /> + <taskdef name="importurl" + classname="net.sf.antcontrib.net.URLImportTask" + onerror="ignore"/> </antlib> |