summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: d555a7aadfcbc3a83567e985bb9fbd0349f146d9 (plain)
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
2005-07-03  Allan Saddi  <asaddi@europa.saddi.net>

	* Ensure session identifiers only contain ASCII characters when
	  using a non-ASCII locale. Thanks to Ksenia Marasanova for the
	  the fix.

2005-06-12  Allan Saddi  <asaddi@europa.saddi.net>

	* Cleanly close connection socket to avoid sending a TCP RST to
	  the web server. (fcgi_base) Fix suggested by Dima Barsky.

2005-05-31  Allan Saddi  <asaddi@ganymede.saddi.net>

	* Take scriptName from the WSGI_SCRIPT_NAME environment variable
	  passed from the web server, if present.
	* Check if scriptName is None, and if so, don't modify SCRIPT_NAME
	  & PATH_INFO. For better compatibility with cgi2scgi. (scgi_base)

2005-05-18  Allan Saddi  <asaddi@ganymede.saddi.net>

	* Change default allowedServers for ajp and scgi to ['127.0.0.1'].
	* Accept PATH_INFO from environment for scgi servers, in case
	  cgi2scgi is being used. Submitted by Ian Bicking.
	* Change threaded servers so wsgi.multiprocess is False by default.
	  Allow it to be changed by keyword argument.
	* Fix wsgi.multiprocess for scgi_fork. (Set to True.)

2005-05-15  Allan Saddi  <asaddi@ganymede.saddi.net>

	* Prevent possible deadlock related to DiskSessionStore locking.
	* Add logic to SessionStore so that it will block if attempting to
	  check out a Session that's already been checked out.

2005-05-14  Allan Saddi  <asaddi@ganymede.saddi.net>

	* Convert the use of decorators in session.py to something
	  compatible with Python <2.4.

2005-04-23  Allan Saddi  <asaddi@ganymede.saddi.net>

	* Ensure that SessionStore.checkOutSession() never returns an
	  invalidated Session. Reported by Rene Dudfield.