index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
handlers
/
modpython.py
Age
Commit message (
Expand
)
Author
2008-09-17
Fixed #9014 -- Check that we really are processing a POST before processing
Malcolm Tredinnick
2008-08-30
Fixed #8622: accessing POST after a POST handling exception no longer throws ...
Jacob Kaplan-Moss
2008-08-06
Major refactoring of django.dispatch with an eye towards speed. The net resul...
Jacob Kaplan-Moss
2008-07-21
Fixed #7871 -- Added some more bullet-proofing in PATH_INFO determination,
Malcolm Tredinnick
2008-07-21
Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or
Malcolm Tredinnick
2008-07-19
Revert [7991] - [7993]. I was committing from the wrong branch. Sorry 'bout
Malcolm Tredinnick
2008-07-19
First part of setting request.path correctly.
Malcolm Tredinnick
2008-07-01
Fixed #2070: refactored Django's file upload capabilities.
Jacob Kaplan-Moss
2008-03-08
Fixed #5595 -- Made `ModPythonRequest.__repr__` return a string instead of a ...
Gary Wilson Jr
2007-12-02
Re-organized imports in handler modules to adhere to Django coding style.
Gary Wilson Jr
2007-11-11
Fixed #5898 -- Changed a few response processing paths to make things harder ...
Malcolm Tredinnick
2007-10-20
Slightly changed the way we handle non-UTF-8 encoded URIs (see [6475]). Made it
Malcolm Tredinnick
2007-10-13
Fixed #5738 -- Fixed bug with defective Unicode strings in a URL
Adrian Holovaty
2007-09-16
Fixed #4710 -- Improved mod_python HTTPS checking. Thanks, Aaron Maxwell, Smi...
Malcolm Tredinnick
2007-09-14
Added more dict-like methods to HttpResponse as part of the response.headers ...
Jacob Kaplan-Moss
2007-07-07
Changed HttpRequest.path to be a Unicode object. It has already been
Malcolm Tredinnick
2007-07-04
Merged Unicode branch into trunk (r4952:5608). This should be fully
Malcolm Tredinnick
2007-04-26
Fixed #4040 -- Changed uses of has_key() to "in". Slight performance
Malcolm Tredinnick
2006-10-25
Reverted [3919] because it requires mod_python 3.2.10+
Adrian Holovaty
2006-10-24
Fixed #2865 -- Reverted [3866] (problem with mod_python SERVER_PORT
Adrian Holovaty
2006-10-24
Changed django.core.handlers.modpython ModPythonRequest.is_secure() to use re...
Adrian Holovaty
2006-09-28
Removed ENABLE_PSYCO setting. If you still need to use this, write custom mid...
Adrian Holovaty
2006-09-28
Folded django.core.handlers.modpython.populate_apache_request into ModPythonH...
Adrian Holovaty
2006-09-28
Changed BaseHandler.get_response() to take a single parameter (an HttpRequest...
Adrian Holovaty
2006-09-26
Fixed #2782 -- Fixed incorrect request.META['SERVER_PORT'] for mod_python.
Adrian Holovaty
2006-09-25
Fixed #2745 -- Made the __repr__ methods for modpython and wsgi request more
Malcolm Tredinnick
2006-09-22
Fixed #2560 -- Add close() support to HttpResponse iterators. Thanks, Ivan
Malcolm Tredinnick
2006-07-21
Second half of little cleanup tweaks suggested by pyflakes.
Jacob Kaplan-Moss
2006-07-21
Fixed #2092: added a "is_secure()" method to HttpRequest which correctly hand...
Jacob Kaplan-Moss
2006-06-20
Added 'method' attribute to HttpRequest objects
Adrian Holovaty
2006-05-02
MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...
Adrian Holovaty
2006-04-09
Fixed #1569 -- HttpResponse now accepts iterators. Thanks, Maniac
Adrian Holovaty
2006-02-20
Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom Tobin
Adrian Holovaty
2006-02-18
Fixed #894 -- Moved response middleware call to base.py so that exceptions in...
Adrian Holovaty
2006-02-03
Fixed #1323 -- Added ENABLE_PSYCO. Thanks, Wojtek.
Adrian Holovaty
2005-11-30
Moved Apache auth handler to django/contrib/auth/handlers/modpython.py
Adrian Holovaty
2005-11-29
Added mod_python authentication handler and document on authenticating agains...
Jacob Kaplan-Moss
2005-10-06
Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into DEFAULT_CONTENT_T...
Adrian Holovaty
2005-08-16
Fixed #1 -- Added anonymous session support via middleware and request.sessio...
Adrian Holovaty
2005-08-15
Changed handlers (both mod_python and WSGI) to support setting multiple cooki...
Adrian Holovaty
2005-08-10
Fixed #126 -- HttpRequest now has a 'raw_post_data' attribute.
Adrian Holovaty
2005-07-22
Fixed #63 -- Refactored django.core.handlers into subclasses to remove duplic...
Adrian Holovaty
2005-07-20
Fixed #102 -- Now using text/plain mimetype for exceptions displayed in the b...
Adrian Holovaty
2005-07-20
Made ModPythonHandler.get_response() tolerant of repr(request) that has an ex...
Adrian Holovaty
2005-07-18
Changed core.handlers.modpython.populate_apache_request NOT to have side effe...
Adrian Holovaty
2005-07-18
Added WSGI support. Created core.handlers package. Moved ALL mod_python-speci...
Adrian Holovaty