Author: Neil Schemenauer <nas@arctrix.com>
Date:   Wed Jun 11 17:40:47 2008 -0600

    Send Content-Length provided by client, rather than r->remaining.
    
    This new approach is simpler and appears to solve a bug that shows
    up on OS X Leopard.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Sun Apr 6 15:01:08 2008 -0600

    Generate CHANGES.txt from git log.
    
    Generate CHANGES.txt using "git log" instead of manually maintaining
    it.  Improve README text.  Update version numbers to 1.13.

Author: Daniel Rall <dlr@finemaltcoding.com>
Date:   Wed Mar 26 15:20:39 2008 -0600

    Fix error message typo in passfd.c.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri May 25 11:29:37 2007 -0600

    Remove duplicated text from Apache error messages.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Wed Feb 7 11:29:04 2007 -0600

    Ensure that PATH_INFO is correct even with mod_rewrite
    
    mod_rewrite can modify r->path_info.  One way this could happen is if
    the path being served by SCGI exists on the filesystem.  Ensure that
    PATH_INFO is correct.  Thanks to David Binger for point out the fix.

Author: Jeroen T. Vermeulen <jtv@thaiopensource.org>
Date:   Wed Feb 7 11:28:22 2007 -0600

    Add guide.html.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri Aug 25 17:43:42 2006 -0600

    Provide CMSG_* macros if they are missing.
    
    Some platforms don't provide them.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri Aug 25 17:25:48 2006 -0600

    Preserve original os.environ dictionary.
    
    Also, make some formatting tweaks.

Author: Jeroen T. Vermeulen <jtv@thaiopensource.org>
Date:   Fri Aug 25 15:50:39 2006 +0700

    Document produce() and produce_cgilike()

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri Aug 25 15:29:50 2006 +0700

    Remove unnecessary os.putenv() call.
    
    Calling os.putenv() is not necessary since os.environ alone will do
    the job.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri Aug 25 13:41:38 2006 +0700

    Add more friendly overridable methods in SCGIHandler.
    
    Optional, more user-friendly overridable methods in SCGIHandler: produce() and
    produce_cgilike().  Overriding handle_connection() will still work, but
    overriding produce() instead takes a lot of the household activities
    (reading CGI variables, opening socket for reading/writing, cleanup) out
    of the application's hands.
    
    Another alternative, produce_cgilike(), makes things even easier (at
    least for some uses): it can read its message body from stdin and write
    its output from stdout, and get its CGI parameters from its set of
    environment variables.
    
    Thanks to Jeroen Vermeulen <jtv@thaiopensource.org> for code and ideas.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Wed Aug 23 20:42:07 2006 -0600

    Add some pypi information.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Aug 14 15:49:04 2006 -0600

    Update version numbers in mod_scgi.
    
    Alos, make version number check in setup.py smarter.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Aug 14 12:11:33 2006 -0600

    Update MANIFEST for 1.11 release.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Aug 14 12:08:10 2006 -0600

    Prepare for 1.11 release.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Aug 14 12:07:59 2006 -0600

    Improve passfd test a little.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Mon Aug 14 12:06:41 2006 -0600

    Improve portability of passfd extension.

Author: Joseph Tate <jtate@rpath.com>
Date:   Thu May 25 12:55:49 2006 -0600

    Allow SCGIServer to use an already open socket.
    
    Add serve_on_socket() method that allows an already open socket to be
    used.  The existing serve() method remains the same.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri May 19 11:46:19 2006 -0600

    In passfd.c, initialize tmpbuf contents.
    
    Jonathan Corbet suggested this as a fix for trouble on an AMD64
    machine.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri May 19 11:41:59 2006 -0600

    Fix a mod_scgi bug that caused a segfault
    
    Fix a bug that resulted in a NULL pointer dereference (under certain
    configurations). Thanks to Thomas Yandell for helping track down the
    bug.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri May 19 09:41:25 2006 -0600

    Update README and LICENSE files.

Author: Neil Schemenauer <nas@arctrix.com>
Date:   Fri May 19 09:30:23 2006 -0600

    Import scgi 1.10.
