gcasper 2003/12/22 07:44:42
Modified: src/blocks/webdav/java/org/apache/cocoon/components/source/impl
WebDAVSource.java
Log:
principal and password already encoded in url
Revision Changes Path
1.15 +1 -2
cocoon-2.1/src/blocks/webdav/java/org/apache/cocoon/components/source/impl/WebDAVSource.java
Index: WebDAVSource.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/webdav/java/org/apache/cocoon/components/source/impl/WebDAVSource.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- WebDAVSource.java 17 Dec 2003 13:42:14 -0000 1.14
+++ WebDAVSource.java 22 Dec 2003 15:44:42 -0000 1.15
@@ -214,7 +214,6 @@
if (this.resource.isCollection() && (this.systemId.endsWith("/") ==
false)) {
this.systemId = this.systemId+"/";
HttpURL httpURL = new HttpURL(this.systemId);
- httpURL.setUserInfo(this.principal, this.password);
this.resource.setHttpURL(httpURL);
}
}