gdamour     2004/03/10 02:00:41

  Modified:    sandbox/webdav project.xml
               sandbox/webdav/src/deploy/jetty jetty-config.xml
                        webdefault.xml
               sandbox/webdav/src/java/org/apache/geronimo/webdav
                        AbstractConnector.java CatalinaDAVRepository.java
                        Connector.java DAVRepository.java DAVServer.java
               sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty
                        JettyConnector.java JettyConnectorImpl.java
                        JettyDAVServer.java
  Added:       sandbox/webdav NOTICE.txt
  Log:
  Reporters: David Jencks, Dain Sundstrom.
  
  Copyright range fix subsequent to the License migration 1.1 => 2.0.
  
  Revision  Changes    Path
  1.10      +18 -1     incubator-geronimo/sandbox/webdav/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/sandbox/webdav/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml       25 Feb 2004 13:36:16 -0000      1.9
  +++ project.xml       10 Mar 2004 10:00:41 -0000      1.10
  @@ -1,4 +1,21 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  +<!--
  +
  +    Copyright 2004 The Apache Software Foundation
  +
  +    Licensed under the Apache License, Version 2.0 (the "License");
  +    you may not use this file except in compliance with the License.
  +    You may obtain a copy of the License at
  +  
  +       http://www.apache.org/licenses/LICENSE-2.0
  +  
  +    Unless required by applicable law or agreed to in writing, software
  +    distributed under the License is distributed on an "AS IS" BASIS,
  +    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +    See the License for the specific language governing permissions and
  +    limitations under the License.
  +-->
  +  
   
   <!-- $Revision$ $Date$ -->
   
  
  
  
  1.1                  incubator-geronimo/sandbox/webdav/NOTICE.txt
  
  Index: NOTICE.txt
  ===================================================================
  This product includes software developed by
  The Apache Software Foundation (http://www.apache.org/).
  
  
  
  
  1.2       +17 -0     
incubator-geronimo/sandbox/webdav/src/deploy/jetty/jetty-config.xml
  
  Index: jetty-config.xml
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/deploy/jetty/jetty-config.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jetty-config.xml  23 Jan 2004 02:25:51 -0000      1.1
  +++ jetty-config.xml  10 Mar 2004 10:00:41 -0000      1.2
  @@ -1,4 +1,21 @@
   <?xml version="1.0"  encoding="ISO-8859-1"?>
  +<!--
  +
  +    Copyright 2004 The Apache Software Foundation
  +
  +    Licensed under the Apache License, Version 2.0 (the "License");
  +    you may not use this file except in compliance with the License.
  +    You may obtain a copy of the License at
  +  
  +       http://www.apache.org/licenses/LICENSE-2.0
  +  
  +    Unless required by applicable law or agreed to in writing, software
  +    distributed under the License is distributed on an "AS IS" BASIS,
  +    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +    See the License for the specific language governing permissions and
  +    limitations under the License.
  +-->
  +  
   
   <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure 1.2//EN" 
"http://jetty.mortbay.org/configure_1_2.dtd";>
   <Configure class="org.mortbay.jetty.Server">
  
  
  
  1.2       +17 -0     
incubator-geronimo/sandbox/webdav/src/deploy/jetty/webdefault.xml
  
  Index: webdefault.xml
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/deploy/jetty/webdefault.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- webdefault.xml    23 Jan 2004 02:25:51 -0000      1.1
  +++ webdefault.xml    10 Mar 2004 10:00:41 -0000      1.2
  @@ -1,4 +1,21 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +<!--
  +
  +    Copyright 2004 The Apache Software Foundation
  +
  +    Licensed under the Apache License, Version 2.0 (the "License");
  +    you may not use this file except in compliance with the License.
  +    You may obtain a copy of the License at
  +  
  +       http://www.apache.org/licenses/LICENSE-2.0
  +  
  +    Unless required by applicable law or agreed to in writing, software
  +    distributed under the License is distributed on an "AS IS" BASIS,
  +    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  +    See the License for the specific language governing permissions and
  +    limitations under the License.
  +-->
  +  
   <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd";>   
   
   <!-- ===================================================================== 
-->
  
  
  
  1.3       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/AbstractConnector.java
  
  Index: AbstractConnector.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/AbstractConnector.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractConnector.java    25 Feb 2004 09:59:20 -0000      1.2
  +++ AbstractConnector.java    10 Mar 2004 10:00:41 -0000      1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.4       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/CatalinaDAVRepository.java
  
  Index: CatalinaDAVRepository.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/CatalinaDAVRepository.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CatalinaDAVRepository.java        25 Feb 2004 09:59:20 -0000      1.3
  +++ CatalinaDAVRepository.java        10 Mar 2004 10:00:41 -0000      1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/Connector.java
  
  Index: Connector.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/Connector.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Connector.java    25 Feb 2004 09:59:20 -0000      1.2
  +++ Connector.java    10 Mar 2004 10:00:41 -0000      1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/DAVRepository.java
  
  Index: DAVRepository.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/DAVRepository.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DAVRepository.java        25 Feb 2004 09:59:20 -0000      1.2
  +++ DAVRepository.java        10 Mar 2004 10:00:41 -0000      1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/DAVServer.java
  
  Index: DAVServer.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/DAVServer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DAVServer.java    25 Feb 2004 09:59:20 -0000      1.2
  +++ DAVServer.java    10 Mar 2004 10:00:41 -0000      1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.3       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyConnector.java
  
  Index: JettyConnector.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyConnector.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JettyConnector.java       25 Feb 2004 09:59:20 -0000      1.2
  +++ JettyConnector.java       10 Mar 2004 10:00:41 -0000      1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.4       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyConnectorImpl.java
  
  Index: JettyConnectorImpl.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyConnectorImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- JettyConnectorImpl.java   25 Feb 2004 09:59:20 -0000      1.3
  +++ JettyConnectorImpl.java   10 Mar 2004 10:00:41 -0000      1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  
  1.4       +2 -2      
incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyDAVServer.java
  
  Index: JettyDAVServer.java
  ===================================================================
  RCS file: 
/home/cvs/incubator-geronimo/sandbox/webdav/src/java/org/apache/geronimo/webdav/jetty/JettyDAVServer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- JettyDAVServer.java       25 Feb 2004 09:59:20 -0000      1.3
  +++ JettyDAVServer.java       10 Mar 2004 10:00:41 -0000      1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-2004 The Apache Software Foundation
    *
    *  Licensed under the Apache License, Version 2.0 (the "License");
    *  you may not use this file except in compliance with the License.
  
  
  

Reply via email to