gianugo 02/04/05 13:31:56
Modified: java/scratchpad/src/org/apache/xindice/webdav WebDav.java
java/scratchpad/src/org/apache/xindice/webdav/methods
Copy.java DAVMethod.java Delete.java Get.java
Head.java Mkcol.java Move.java Options.java
Post.java Propfind.java Proppatch.java Put.java
Trace.java
Log:
License fixes (ok, ok, no more cut 'n paste, I promise :)).
Revision Changes Path
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/WebDav.java
Index: WebDav.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/WebDav.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- WebDav.java 4 Apr 2002 07:51:51 -0000 1.1
+++ WebDav.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not
be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -87,7 +87,7 @@
* This is the entry point for the Xindice WebDAV implementation.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: WebDav.java,v 1.1 2002/04/04 07:51:51 gianugo Exp $
+ * @version $Id: WebDav.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class WebDav
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Copy.java
Index: Copy.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Copy.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Copy.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Copy.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not
be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Copy.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Copy.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Copy extends AbstractLoggable implements DAVMethod {
1.2 +59 -0
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/DAVMethod.java
Index: DAVMethod.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/DAVMethod.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DAVMethod.java 4 Apr 2002 07:53:12 -0000 1.1
+++ DAVMethod.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -1,3 +1,54 @@
+/*
+
+ ============================================================================
+ The Apache Software License, Version 1.1
+ ============================================================================
+
+ Copyright (C) 1999-2002 The Apache Software Foundation. All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without modifica-
+ tion, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ 3. The end-user documentation included with the redistribution, if any, must
+ include the following acknowledgment: "This product includes software
+ developed by the Apache Software Foundation (http://www.apache.org/)."
+ Alternately, this acknowledgment may appear in the software itself, if
+ and wherever such third-party acknowledgments normally appear.
+
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
+ used to endorse or promote products derived from this software without
+ prior written permission. For written permission, please contact
+ [EMAIL PROTECTED]
+
+ 5. Products derived from this software may not be called "Apache", nor may
+ "Apache" appear in their name, without prior written permission of the
+ Apache Software Foundation.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
+ DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ This software consists of voluntary contributions made by many individuals
+ on behalf of the Apache Software Foundation and was originally created by
+ Stefano Mazzocchi <[EMAIL PROTECTED]>. For more information on the Apache
+ Software Foundation, please see <http://www.apache.org/>.
+
+*/
+
package org.apache.xindice.webdav.methods;
import java.io.IOException;
@@ -8,7 +59,15 @@
import org.apache.avalon.framework.component.Component;
+/**
+ * The main WebDAV interface.
+ *
+ * @author <a href="[EMAIL PROTECTED]">Gianugo Rabellino</a>
+ * @version $Id: DAVMethod.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
+ */
+
public interface DAVMethod extends Component {
+
String ROLE = "org.apache.xindice.webdav.methods.DAVMethod";
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Delete.java
Index: Delete.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Delete.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Delete.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Delete.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not
be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Delete.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Delete.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Delete extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Get.java
Index: Get.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Get.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Get.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Get.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not
be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Get.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Get.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Get extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Head.java
Index: Head.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Head.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Head.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Head.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Head.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Head.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Head extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Mkcol.java
Index: Mkcol.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Mkcol.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Mkcol.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Mkcol.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Mkcol.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Mkcol.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Mkcol extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Move.java
Index: Move.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Move.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Move.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Move.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Move.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Move.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Move extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Options.java
Index: Options.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Options.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Options.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Options.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Options.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Options.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Options extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Post.java
Index: Post.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Post.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Post.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Post.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Post.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Post.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Post extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Propfind.java
Index: Propfind.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Propfind.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Propfind.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Propfind.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Propfind.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Propfind.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Propfind extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Proppatch.java
Index: Proppatch.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Proppatch.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Proppatch.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Proppatch.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Proppatch.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Proppatch.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Proppatch extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Put.java
Index: Put.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Put.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Put.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Put.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not
be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Put.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Put.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Put extends AbstractLoggable implements DAVMethod {
1.2 +2 -2
xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Trace.java
Index: Trace.java
===================================================================
RCS file:
/home/cvs/xml-xindice/java/scratchpad/src/org/apache/xindice/webdav/methods/Trace.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Trace.java 4 Apr 2002 07:53:12 -0000 1.1
+++ Trace.java 5 Apr 2002 21:31:55 -0000 1.2
@@ -22,7 +22,7 @@
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
- 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be
+ 4. The names "Apache Xindice" and "Apache Software Foundation" must not be
used to endorse or promote products derived from this software without
prior written permission. For written permission, please contact
[EMAIL PROTECTED]
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jan Metzner</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Gianugo Rabellino</a>
- * @version $Id: Trace.java,v 1.1 2002/04/04 07:53:12 gianugo Exp $
+ * @version $Id: Trace.java,v 1.2 2002/04/05 21:31:55 gianugo Exp $
*/
public class Trace extends AbstractLoggable implements DAVMethod {