[jira] Resolved: (MODPYTHON-82) mod_python.publisher cache will not work if threading not built into Python

2005-10-15 Thread Nicolas Lehuen (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-82?page=all ] Nicolas Lehuen resolved MODPYTHON-82: - Fix Version: 3.2.0 Resolution: Fixed Assign To: Nicolas Lehuen Ooops, my bad, sorry ! This is fixed now. > mod_python.publisher ca

Re: [jira] Created: (MODPYTHON-82) mod_python.publisher cache will not work if threading not built into Python

2005-10-15 Thread Nick
Instead of the code: from threading import Lock It should use: try: from threading import Lock except: class Lock: def acquire(self): pass def release(self): pass I suggest: try: from threading import Lock except: from dummy_threading import Lock Nick

[jira] Created: (MODPYTHON-84) req.sendfile(filename) sends an incorrect number of bytes when filename is a symlink

2005-10-15 Thread Jim Gallacher (JIRA)
req.sendfile(filename) sends an incorrect number of bytes when filename is a symlink Key: MODPYTHON-84 URL: http://issues.apache.org/jira/browse/MODPYTHON-84 Project: mod_python Typ

[jira] Work started: (MODPYTHON-84) req.sendfile(filename) sends an incorrect number of bytes when filename is a symlink

2005-10-15 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-84?page=all ] Work on MODPYTHON-84 started by Jim Gallacher > req.sendfile(filename) sends an incorrect number of bytes when filename is a > symlink > >

[jira] Resolved: (MODPYTHON-67) Make req.path_info writable.

2005-10-15 Thread Jim Gallacher (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-67?page=all ] Jim Gallacher resolved MODPYTHON-67: Fix Version: 3.2.0 Resolution: Fixed I'm not sure why this was not marked as resolved earlier, but the fix has been committed so I'm markin