juergen 01/03/22 09:34:59
Modified: src/webdav/server/org/apache/slide/webdav/method
WebdavMethod.java
Log:
the documentBuilder is not static anymore to be used simultaniously in multi user
context. possibly they should be retrieved from a static pool, if performance suggests.
Revision Changes Path
1.17 +6 -6
jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java
Index: WebdavMethod.java
===================================================================
RCS file:
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- WebdavMethod.java 2001/03/19 05:10:39 1.16
+++ WebdavMethod.java 2001/03/22 17:34:55 1.17
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
1.16 2001/03/19 05:10:39 remm Exp $
- * $Revision: 1.16 $
- * $Date: 2001/03/19 05:10:39 $
+ * $Header:
/home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/WebdavMethod.java,v
1.17 2001/03/22 17:34:55 juergen Exp $
+ * $Revision: 1.17 $
+ * $Date: 2001/03/22 17:34:55 $
*
* ====================================================================
*
@@ -98,7 +98,7 @@
public static final String LOCK_TOKEN = "opaquelocktoken:";
- public static final String SLIDE_NAMESPACE =
+ public static final String SLIDE_NAMESPACE =
"http://jakarta.apache.org/slide/";
public static final String SLIDE_NAMESPACE_ABBREV = "S";
@@ -204,7 +204,7 @@
/**
* DOM XML parser.
*/
- protected static DocumentBuilder documentBuilder;
+ protected DocumentBuilder documentBuilder;
/**
@@ -385,7 +385,7 @@
/**
- * Return an absolute URL (absolute in the HTTP sense) based on a Slide
+ * Return an absolute URL (absolute in the HTTP sense) based on a Slide
* path.
*/
public String getFullPath(String path) {