You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gs...@apache.org on 2002/09/12 20:24:07 UTC

cvs commit: httpd-python/src/include _apachemodule.h connobject.h filterobject.h hlist.h hlistobject.h mod_python.h requestobject.h serverobject.h tableobject.h util.h

gstein      2002/09/12 11:24:07

  Modified:    .        Makefile.in configure.in
               Doc      Makefile.in
               lib/python/mod_python __init__.py apache.py cgihandler.py
                        publisher.py util.py
               src      Makefile.in Version.rc _apachemodule.c connobject.c
                        filterobject.c hlist.c hlistobject.c mod_python.c
                        requestobject.c serverobject.c tableobject.c util.c
               src/include _apachemodule.h connobject.h filterobject.h
                        hlist.h hlistobject.h mod_python.h requestobject.h
                        serverobject.h tableobject.h util.h
  Log:
  WHAM!
  
  Revamp the copyright/license headers in all(?) of the files. Include
  the appropriate attribution/recognition to Grisha's original work.
  
  Revision  Changes    Path
  1.9       +40 -28    httpd-python/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/Makefile.in,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Makefile.in	12 Aug 2002 02:01:15 -0000	1.8
  +++ Makefile.in	12 Sep 2002 18:24:05 -0000	1.9
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   @SET_MAKE@
   LIBEXECDIR=@LIBEXECDIR@
  
  
  
  1.17      +40 -29    httpd-python/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/configure.in,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- configure.in	18 Aug 2002 18:43:36 -0000	1.16
  +++ configure.in	12 Sep 2002 18:24:05 -0000	1.17
  @@ -1,48 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  -
  -dnl $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   dnl Process this file with autoconf to produce a configure script.
   AC_INIT(src/mod_python.c)
  
  
  
  1.10      +41 -27    httpd-python/Doc/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/Makefile.in,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Makefile.in	22 Aug 2002 21:16:47 -0000	1.9
  +++ Makefile.in	12 Sep 2002 18:24:05 -0000	1.10
  @@ -1,45 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
    #
    # Makefile for mod_python documentation
    # ---------------------------------
  
  
  
  1.6       +40 -27    httpd-python/lib/python/mod_python/__init__.py
  
  Index: __init__.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/__init__.py,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- __init__.py	17 Jun 2002 21:12:29 -0000	1.5
  +++ __init__.py	12 Sep 2002 18:24:05 -0000	1.6
  @@ -1,45 +1,58 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
    #
   
   __all__ = ["apache", "cgihandler",
  
  
  
  1.57      +40 -28    httpd-python/lib/python/mod_python/apache.py
  
  Index: apache.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/apache.py,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- apache.py	7 Sep 2002 03:53:04 -0000	1.56
  +++ apache.py	12 Sep 2002 18:24:05 -0000	1.57
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   import sys
   import traceback
  
  
  
  1.10      +40 -28    httpd-python/lib/python/mod_python/cgihandler.py
  
  Index: cgihandler.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/cgihandler.py,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- cgihandler.py	6 Dec 2000 03:05:37 -0000	1.9
  +++ cgihandler.py	12 Sep 2002 18:24:05 -0000	1.10
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   import apache
   import imp
  
  
  
  1.21      +40 -28    httpd-python/lib/python/mod_python/publisher.py
  
  Index: publisher.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/publisher.py,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- publisher.py	7 Sep 2002 03:53:04 -0000	1.20
  +++ publisher.py	12 Sep 2002 18:24:05 -0000	1.21
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   """
     This handler is conceputally similar to Zope's ZPublisher, except
  
  
  
  1.11      +40 -28    httpd-python/lib/python/mod_python/util.py
  
  Index: util.py
  ===================================================================
  RCS file: /home/cvs/httpd-python/lib/python/mod_python/util.py,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- util.py	7 Sep 2002 02:43:49 -0000	1.10
  +++ util.py	12 Sep 2002 18:24:05 -0000	1.11
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   import _apache
   import apache
  
  
  
  1.16      +40 -28    httpd-python/src/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/Makefile.in,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Makefile.in	19 Aug 2002 20:12:48 -0000	1.15
  +++ Makefile.in	12 Sep 2002 18:24:06 -0000	1.16
  @@ -1,47 +1,59 @@
  - # Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + # ====================================================================
  + # The Apache Software License, Version 1.1
  + #
  + # Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + # reserved.
    #
    # Redistribution and use in source and binary forms, with or without
    # modification, 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. 
  + #    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 Gregory Trubetskoy."
  - #    Alternately, this acknowledgment may appear in the software itself, 
  + # 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - #    be used to endorse or promote products derived from this software 
  - #    without prior written permission. For written permission, please 
  - #    contact grisha@modpython.org.
  - #
  - # 5. Products derived from this software may not be called "mod_python"
  - #    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - #    names without prior written permission of Gregory Trubetskoy.
  - #
  - # THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - # HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + # 4. The names "Apache" 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 apache@apache.org.
  + #
  + # 5. Products derived from this software may not be called "Apache",
  + #    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.
    # ====================================================================
    #
  - # $Id$
  + # This software consists of voluntary contributions made by many
  + # individuals on behalf of the Apache Software Foundation.  For more
  + # information on the Apache Software Foundation, please see
  + # <http://www.apache.org/>.
  + #
  + # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + #
   
   CC=@CC@
   RANLIB=@RANLIB@
  
  
  
  1.2       +1 -1      httpd-python/src/Version.rc
  
  Index: Version.rc
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/Version.rc,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Version.rc	6 Nov 2000 10:50:49 -0000	1.1
  +++ Version.rc	12 Sep 2002 18:24:06 -0000	1.2
  @@ -41,7 +41,7 @@
               VALUE "FileDescription", "Embedding Python within Apache.\0"
               VALUE "FileVersion", MPV_STRING "\0"
               VALUE "InternalName", "mod_python\0"
  -            VALUE "LegalCopyright", "Copyright � 2000 Gregory Trubetskoy.\0"
  +            VALUE "LegalCopyright", "Copyright � 2000-2002 Apache Software Foundation.\0"
               VALUE "LegalTrademarks", "\0"
               VALUE "OriginalFilename", "mod_python\0"
               VALUE "PrivateBuild", "\0"
  
  
  
  1.17      +41 -28    httpd-python/src/_apachemodule.c
  
  Index: _apachemodule.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/_apachemodule.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- _apachemodule.c	6 Sep 2002 22:06:28 -0000	1.16
  +++ _apachemodule.c	12 Sep 2002 18:24:06 -0000	1.17
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * _apachemodule.c 
    *
  
  
  
  1.10      +41 -28    httpd-python/src/connobject.c
  
  Index: connobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/connobject.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- connobject.c	6 Sep 2002 22:06:28 -0000	1.9
  +++ connobject.c	12 Sep 2002 18:24:06 -0000	1.10
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * connobject.c 
    *
  
  
  
  1.11      +41 -28    httpd-python/src/filterobject.c
  
  Index: filterobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/filterobject.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- filterobject.c	6 Sep 2002 22:08:34 -0000	1.10
  +++ filterobject.c	12 Sep 2002 18:24:06 -0000	1.11
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2001 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * filterobject.c 
    *
  
  
  
  1.2       +41 -28    httpd-python/src/hlist.c
  
  Index: hlist.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/hlist.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- hlist.c	3 Nov 2001 04:26:43 -0000	1.1
  +++ hlist.c	12 Sep 2002 18:24:06 -0000	1.2
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * hlist.c 
    *
  
  
  
  1.5       +41 -28    httpd-python/src/hlistobject.c
  
  Index: hlistobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/hlistobject.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- hlistobject.c	22 Aug 2002 21:09:08 -0000	1.4
  +++ hlistobject.c	12 Sep 2002 18:24:06 -0000	1.5
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * hlist.c 
    *
  
  
  
  1.74      +41 -28    httpd-python/src/mod_python.c
  
  Index: mod_python.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/mod_python.c,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- mod_python.c	6 Sep 2002 22:06:28 -0000	1.73
  +++ mod_python.c	12 Sep 2002 18:24:06 -0000	1.74
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * mod_python.c 
    *
  
  
  
  1.30      +41 -28    httpd-python/src/requestobject.c
  
  Index: requestobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/requestobject.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- requestobject.c	6 Sep 2002 22:06:28 -0000	1.29
  +++ requestobject.c	12 Sep 2002 18:24:06 -0000	1.30
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * requestobject.c 
    *
  
  
  
  1.12      +41 -28    httpd-python/src/serverobject.c
  
  Index: serverobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/serverobject.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- serverobject.c	6 Sep 2002 22:06:29 -0000	1.11
  +++ serverobject.c	12 Sep 2002 18:24:06 -0000	1.12
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * serverobject.c 
    *
  
  
  
  1.22      +41 -28    httpd-python/src/tableobject.c
  
  Index: tableobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/tableobject.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- tableobject.c	7 Sep 2002 02:08:46 -0000	1.21
  +++ tableobject.c	12 Sep 2002 18:24:06 -0000	1.22
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2002 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * tableobject.c 
    *
  
  
  
  1.9       +41 -28    httpd-python/src/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/util.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- util.c	7 Sep 2002 03:53:04 -0000	1.8
  +++ util.c	12 Sep 2002 18:24:06 -0000	1.9
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * util.c 
    *
  
  
  
  1.2       +41 -28    httpd-python/src/include/_apachemodule.h
  
  Index: _apachemodule.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/_apachemodule.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- _apachemodule.h	15 Aug 2002 21:46:35 -0000	1.1
  +++ _apachemodule.h	12 Sep 2002 18:24:06 -0000	1.2
  @@ -2,48 +2,61 @@
   #define Mp_APACHEMODULE_H
   
   /* ====================================================================
  - * Copyright (c) 2002 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * apachemodule.h 
    *
  
  
  
  1.5       +41 -28    httpd-python/src/include/connobject.h
  
  Index: connobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/connobject.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- connobject.h	2 Sep 2002 21:26:03 -0000	1.4
  +++ connobject.h	12 Sep 2002 18:24:06 -0000	1.5
  @@ -5,48 +5,61 @@
   #endif
   
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * connobject.h
    *
  
  
  
  1.7       +41 -28    httpd-python/src/include/filterobject.h
  
  Index: filterobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/filterobject.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- filterobject.h	15 Aug 2002 21:46:35 -0000	1.6
  +++ filterobject.h	12 Sep 2002 18:24:06 -0000	1.7
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2001 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * filterobject.h 
    *
  
  
  
  1.2       +41 -28    httpd-python/src/include/hlist.h
  
  Index: hlist.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/hlist.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- hlist.h	3 Nov 2001 04:26:43 -0000	1.1
  +++ hlist.h	12 Sep 2002 18:24:06 -0000	1.2
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * hlist.h 
    *
  
  
  
  1.3       +41 -28    httpd-python/src/include/hlistobject.h
  
  Index: hlistobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/hlistobject.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- hlistobject.h	22 Aug 2002 21:09:09 -0000	1.2
  +++ hlistobject.h	12 Sep 2002 18:24:06 -0000	1.3
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2002 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * hlistobject.h 
    *
  
  
  
  1.24      +41 -28    httpd-python/src/include/mod_python.h
  
  Index: mod_python.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/mod_python.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- mod_python.h	6 Sep 2002 22:06:29 -0000	1.23
  +++ mod_python.h	12 Sep 2002 18:24:06 -0000	1.24
  @@ -2,48 +2,61 @@
   #define Mp_MOD_PYTHON_H
   
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * mod_python.h 
    *
  
  
  
  1.12      +41 -28    httpd-python/src/include/requestobject.h
  
  Index: requestobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/requestobject.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- requestobject.h	2 Sep 2002 21:26:03 -0000	1.11
  +++ requestobject.h	12 Sep 2002 18:24:06 -0000	1.12
  @@ -1,46 +1,59 @@
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@modpython.org.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * requestobject.h
    *
  
  
  
  1.3       +41 -28    httpd-python/src/include/serverobject.h
  
  Index: serverobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/serverobject.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- serverobject.h	6 Dec 2000 03:05:38 -0000	1.2
  +++ serverobject.h	12 Sep 2002 18:24:06 -0000	1.3
  @@ -5,48 +5,61 @@
   #endif
   
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * serverobject.h
    *
  
  
  
  1.5       +41 -28    httpd-python/src/include/tableobject.h
  
  Index: tableobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/tableobject.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- tableobject.h	9 Aug 2002 21:40:57 -0000	1.4
  +++ tableobject.h	12 Sep 2002 18:24:06 -0000	1.5
  @@ -5,48 +5,61 @@
   #endif
   
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * tableobject.h
    *
  
  
  
  1.6       +41 -28    httpd-python/src/include/util.h
  
  Index: util.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/util.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- util.h	15 Aug 2002 21:46:35 -0000	1.5
  +++ util.h	12 Sep 2002 18:24:06 -0000	1.6
  @@ -2,48 +2,61 @@
   #define Mp_UTIL_H
   
   /* ====================================================================
  - * Copyright (c) 2000 Gregory Trubetskoy.  All rights reserved.
  + * The Apache Software License, Version 1.1
  + *
  + * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
    * modification, 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. 
  + *    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 Gregory Trubetskoy."
  - *    Alternately, this acknowledgment may appear in the software itself, 
  + * 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 "mod_python", "modpython" or "Gregory Trubetskoy" must not 
  - *    be used to endorse or promote products derived from this software 
  - *    without prior written permission. For written permission, please 
  - *    contact grisha@ispol.com.
  - *
  - * 5. Products derived from this software may not be called "mod_python"
  - *    or "modpython", nor may "mod_python" or "modpython" appear in their 
  - *    names without prior written permission of Gregory Trubetskoy.
  - *
  - * THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``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 GREGORY TRUBETSKOY OR
  - * HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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.
  + * 4. The names "Apache" 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 apache@apache.org.
  + *
  + * 5. Products derived from this software may not be called "Apache",
  + *    "mod_python", or "modpython", nor may these terms 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 (INCLUDING, 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.  For more
  + * information on the Apache Software Foundation, please see
  + * <http://www.apache.org/>.
  + *
  + * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + *
    *
    * util.h 
    *