forked from cherokee/pyscgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
67 lines (43 loc) · 2.22 KB
/
ChangeLog
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
2008-08-27 Alvaro Lopez Ortega <[email protected]>
* pyscgi.py (SCGIHandler.handle_request): The default handler
method had to use send() so reply the requests rather than the low
level self.wfile socket.
* Applies a couple of changes that there released with 1.7 but
that for some reason were not committed.
2008-03-23 Alvaro Lopez Ortega <[email protected]>
* pyscgi/pyscgi.py: Added a new method send() to write the
information safely. There was an issue on OS X that made large
responses to fail.
* pyscgi/pyscgi.py: Print all the exceptions except of SystemExit.
2007-12-29 Alvaro Lopez Ortega <[email protected]>
* pyscgi/pyscgi.py: Fixed communication issue between the SCGI
application and the web server. The information follow could
fail because EAGAIN errors. It is fixed now.
2007-10-04 Alvaro Lopez Ortega <[email protected]>
* The __init__.py file inside the pyscgi module is empty, this
means that to import the module properly I need to type:
from pyscgi.pyscgi import *, instead of: from pyscgi import *
Patch by Alberto Ruiz <[email protected]>
2007-08-02 Alvaro Lopez Ortega <[email protected]>
* tests/test1_env.py, tests/test2_post.py: Updated to use rfile
and wfile instead of input and output.
2007-02-07 Alvaro Lopez Ortega <[email protected]>
* pyscgi/pyscgi.py (SCGIHandler.__init__): It inherits from
StreamRequestHandler rather than from BaseRequestHandler.
2007-01-27 Alvaro Lopez Ortega <[email protected]>
* pyscgi/pyscgi.py (SCGIHandler.handle): self.handle_request() is
now inside a try clause. That method have to be implement by the
user, so there is a change of something going wrong, in which case
the server should close the in/out descriptiors as well.
2006-12-12 Alvaro Lopez Ortega <[email protected]>
* 1.1 Released
* setup.py: Version bumped
* tests/test1_env.py, tests/test2_post.py: Updated for using
ServerFactory.
* pyscgi/pyscgi.py: Added new SCGIServerFork class implementing a
forking server. So far I had only a Thread based one.
* pyscgi/pyscgi.py (ServerFactory): Added a new factory function
to instance servers.
2006-12-10 Alvaro Lopez Ortega <[email protected]>
* pyscgi/pyscgi.py, tests/test1_env.py, tests/test2_post.py: First
version.