I modify all files that reference HttpUtils for support the new API
I modify docs

Emmanuel

 
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif

Index: build-bootstrap.xml
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-maven/build-bootstrap.xml,v
retrieving revision 1.125
diff -r1.125 build-bootstrap.xml
141a142
>       <env key="MAVEN_HOME" value="${maven.home}"/>
213a215,216
>       proxyUserName="${maven.proxy.username}"
>       proxyPassword="${maven.proxy.password}"
Index: build-file.xml
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-maven/xdocs/ref/build-file.xml,v
retrieving revision 1.20
diff -r1.20 build-file.xml
233c233,234
<           <code>proxy.host</code> and <code>proxy.port</code>
---
>           <code>proxy.host</code>, <code>proxy.port</code>,
>           <code>proxy.username</code> and <code>proxy.password</code>
Index: GetList.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-turbine-maven/src/java/org/apache/maven/ant/GetList.java,v
retrieving revision 1.6
diff -r1.6 GetList.java
88a89,96
>     /** Proxy host */
>     private String proxyHost;
>     /** Proxy port */
>     private String proxyPort;
>     /** Proxy userName */
>     private String proxyUserName;
>     /** Proxy password */
>     private String proxyPassword;
116,117c124
<         System.getProperties().put("proxySet", "true");
<         System.getProperties().put("proxyHost", proxyHost);
---
>         this.proxyHost = proxyHost;
127,128c134,153
<         System.getProperties().put("proxySet", "true");
<         System.getProperties().put("proxyPort", proxyPort);
---
>         this.proxyPort = proxyPort;
>     }
> 
>     /**
>      * Sets the proxyUserName attribute of the Get object
>      * @param proxyUserName the login used to access the proxy
>      */
>     public void setProxyUserName(String proxyUserName)
>     {
>         this.proxyUserName = proxyUserName;
>     }
> 
>     /**
>      * Sets the proxyPassword attribute of the Get object
>      * @param proxyPassword the password used to access the proxy, e.g. 
>      * <code>8080</code>
>      */
>     public void setProxyPassword(String proxyPassword)
>     {
>         this.proxyPassword = proxyPassword;
172c197,198
<                                   ignoreErrors, useTimestamp, uname, pword);
---
>                                   ignoreErrors, useTimestamp, uname, pword,
>                                   proxyHost, proxyPort, proxyUserName, 
>proxyPassword);

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to