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/11/08 01:15:12 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/11/07 16:15:12

  Modified:    .        COPYRIGHT Makefile.in configure.in
               Doc      Makefile.in
               lib/python/mod_python __init__.py apache.py cgihandler.py
                        publisher.py util.py
               src      Makefile.in _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:
  Take Roy Fielding's advice and keep Grisha's email address out of the
  source code. No need to send yet more spam his way :-)
  
  Revision  Changes    Path
  1.6       +1 -1      httpd-python/COPYRIGHT
  
  Index: COPYRIGHT
  ===================================================================
  RCS file: /home/cvs/httpd-python/COPYRIGHT,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- COPYRIGHT	12 Sep 2002 18:31:47 -0000	1.5
  +++ COPYRIGHT	8 Nov 2002 00:15:10 -0000	1.6
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * This software is based on the original concept as published in the
  
  
  
  1.14      +1 -1      httpd-python/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/Makefile.in,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile.in	23 Oct 2002 20:23:39 -0000	1.13
  +++ Makefile.in	8 Nov 2002 00:15:10 -0000	1.14
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   @SET_MAKE@
  
  
  
  1.26      +1 -1      httpd-python/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/configure.in,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- configure.in	7 Nov 2002 23:17:37 -0000	1.25
  +++ configure.in	8 Nov 2002 00:15:10 -0000	1.26
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   dnl Process this file with autoconf to produce a configure script.
  
  
  
  1.14      +1 -1      httpd-python/Doc/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/Makefile.in,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile.in	24 Oct 2002 22:25:31 -0000	1.13
  +++ Makefile.in	8 Nov 2002 00:15:11 -0000	1.14
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
    #
    # Makefile for mod_python documentation
  
  
  
  1.7       +1 -1      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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- __init__.py	12 Sep 2002 18:24:05 -0000	1.6
  +++ __init__.py	8 Nov 2002 00:15:11 -0000	1.7
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   __all__ = ["apache", "cgihandler",
  
  
  
  1.62      +1 -1      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.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- apache.py	4 Oct 2002 21:31:05 -0000	1.61
  +++ apache.py	8 Nov 2002 00:15:11 -0000	1.62
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   import sys
  
  
  
  1.11      +1 -1      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- cgihandler.py	12 Sep 2002 18:24:05 -0000	1.10
  +++ cgihandler.py	8 Nov 2002 00:15:11 -0000	1.11
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   import apache
  
  
  
  1.23      +1 -1      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.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- publisher.py	4 Oct 2002 17:49:08 -0000	1.22
  +++ publisher.py	8 Nov 2002 00:15:11 -0000	1.23
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   """
  
  
  
  1.13      +1 -1      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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- util.py	4 Oct 2002 17:49:08 -0000	1.12
  +++ util.py	8 Nov 2002 00:15:11 -0000	1.13
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   import _apache
  
  
  
  1.25      +1 -1      httpd-python/src/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/Makefile.in,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Makefile.in	24 Oct 2002 21:13:42 -0000	1.24
  +++ Makefile.in	8 Nov 2002 00:15:11 -0000	1.25
  @@ -52,7 +52,7 @@
    # information on the Apache Software Foundation, please see
    # <http://www.apache.org/>.
    #
  - # Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + # Originally developed by Gregory Trubetskoy.
    #
   
   CC=@CC@
  
  
  
  1.20      +2 -2      httpd-python/src/_apachemodule.c
  
  Index: _apachemodule.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/_apachemodule.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- _apachemodule.c	15 Oct 2002 15:47:31 -0000	1.19
  +++ _apachemodule.c	8 Nov 2002 00:15:11 -0000	1.20
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * _apachemodule.c 
  
  
  
  1.12      +2 -2      httpd-python/src/connobject.c
  
  Index: connobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/connobject.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- connobject.c	15 Oct 2002 15:47:31 -0000	1.11
  +++ connobject.c	8 Nov 2002 00:15:11 -0000	1.12
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * connobject.c 
  
  
  
  1.18      +2 -2      httpd-python/src/filterobject.c
  
  Index: filterobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/filterobject.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- filterobject.c	4 Oct 2002 21:31:05 -0000	1.17
  +++ filterobject.c	8 Nov 2002 00:15:11 -0000	1.18
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * filterobject.c 
  
  
  
  1.3       +2 -2      httpd-python/src/hlist.c
  
  Index: hlist.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/hlist.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- hlist.c	12 Sep 2002 18:24:06 -0000	1.2
  +++ hlist.c	8 Nov 2002 00:15:11 -0000	1.3
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * hlist.c 
  
  
  
  1.7       +2 -2      httpd-python/src/hlistobject.c
  
  Index: hlistobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/hlistobject.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- hlistobject.c	15 Oct 2002 15:47:31 -0000	1.6
  +++ hlistobject.c	8 Nov 2002 00:15:11 -0000	1.7
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * hlist.c 
  
  
  
  1.84      +2 -2      httpd-python/src/mod_python.c
  
  Index: mod_python.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/mod_python.c,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- mod_python.c	15 Oct 2002 15:47:31 -0000	1.83
  +++ mod_python.c	8 Nov 2002 00:15:11 -0000	1.84
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * mod_python.c 
  
  
  
  1.36      +2 -2      httpd-python/src/requestobject.c
  
  Index: requestobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/requestobject.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- requestobject.c	15 Oct 2002 15:47:31 -0000	1.35
  +++ requestobject.c	8 Nov 2002 00:15:11 -0000	1.36
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * requestobject.c 
  
  
  
  1.13      +2 -2      httpd-python/src/serverobject.c
  
  Index: serverobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/serverobject.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- serverobject.c	12 Sep 2002 18:24:06 -0000	1.12
  +++ serverobject.c	8 Nov 2002 00:15:11 -0000	1.13
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * serverobject.c 
  
  
  
  1.25      +2 -2      httpd-python/src/tableobject.c
  
  Index: tableobject.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/tableobject.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- tableobject.c	29 Oct 2002 21:52:18 -0000	1.24
  +++ tableobject.c	8 Nov 2002 00:15:11 -0000	1.25
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * tableobject.c 
  
  
  
  1.14      +2 -2      httpd-python/src/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/util.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- util.c	15 Oct 2002 15:47:31 -0000	1.13
  +++ util.c	8 Nov 2002 00:15:11 -0000	1.14
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * util.c 
  
  
  
  1.3       +2 -2      httpd-python/src/include/_apachemodule.h
  
  Index: _apachemodule.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/_apachemodule.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- _apachemodule.h	12 Sep 2002 18:24:06 -0000	1.2
  +++ _apachemodule.h	8 Nov 2002 00:15:11 -0000	1.3
  @@ -55,7 +55,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * apachemodule.h 
  
  
  
  1.6       +2 -2      httpd-python/src/include/connobject.h
  
  Index: connobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/connobject.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- connobject.h	12 Sep 2002 18:24:06 -0000	1.5
  +++ connobject.h	8 Nov 2002 00:15:11 -0000	1.6
  @@ -58,7 +58,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * connobject.h
  
  
  
  1.8       +2 -2      httpd-python/src/include/filterobject.h
  
  Index: filterobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/filterobject.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- filterobject.h	12 Sep 2002 18:24:06 -0000	1.7
  +++ filterobject.h	8 Nov 2002 00:15:11 -0000	1.8
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * filterobject.h 
  
  
  
  1.3       +2 -2      httpd-python/src/include/hlist.h
  
  Index: hlist.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/hlist.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- hlist.h	12 Sep 2002 18:24:06 -0000	1.2
  +++ hlist.h	8 Nov 2002 00:15:11 -0000	1.3
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * hlist.h 
  
  
  
  1.4       +2 -2      httpd-python/src/include/hlistobject.h
  
  Index: hlistobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/hlistobject.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- hlistobject.h	12 Sep 2002 18:24:06 -0000	1.3
  +++ hlistobject.h	8 Nov 2002 00:15:11 -0000	1.4
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * hlistobject.h 
  
  
  
  1.27      +2 -2      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.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- mod_python.h	15 Oct 2002 15:47:32 -0000	1.26
  +++ mod_python.h	8 Nov 2002 00:15:11 -0000	1.27
  @@ -55,7 +55,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * mod_python.h 
  
  
  
  1.13      +2 -2      httpd-python/src/include/requestobject.h
  
  Index: requestobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/requestobject.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- requestobject.h	12 Sep 2002 18:24:06 -0000	1.12
  +++ requestobject.h	8 Nov 2002 00:15:11 -0000	1.13
  @@ -52,7 +52,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * requestobject.h
  
  
  
  1.4       +2 -2      httpd-python/src/include/serverobject.h
  
  Index: serverobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/serverobject.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- serverobject.h	12 Sep 2002 18:24:06 -0000	1.3
  +++ serverobject.h	8 Nov 2002 00:15:11 -0000	1.4
  @@ -58,7 +58,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * serverobject.h
  
  
  
  1.6       +2 -2      httpd-python/src/include/tableobject.h
  
  Index: tableobject.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/tableobject.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- tableobject.h	12 Sep 2002 18:24:06 -0000	1.5
  +++ tableobject.h	8 Nov 2002 00:15:11 -0000	1.6
  @@ -58,7 +58,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * tableobject.h
  
  
  
  1.9       +2 -2      httpd-python/src/include/util.h
  
  Index: util.h
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/include/util.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- util.h	19 Sep 2002 20:11:35 -0000	1.8
  +++ util.h	8 Nov 2002 00:15:11 -0000	1.9
  @@ -55,7 +55,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * Originally developed by Gregory Trubetskoy <gr...@apache.org>
  + * Originally developed by Gregory Trubetskoy.
    *
    *
    * util.h