File: CHANGES.txt

package info (click to toggle)
scgi 1.13-1.1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 292 kB
  • ctags: 308
  • sloc: ansic: 1,379; python: 395; makefile: 71
file content (151 lines) | stat: -rw-r--r-- 4,567 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
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.