summaryrefslogtreecommitdiff
path: root/django/core/handlers/modpython.py
AgeCommit message (Expand)Author
2012-03-31Fixed #18029 -- Removed leftover mod_python files forgotten in r17835.Claude Paroz
2011-12-16Fixed #14597 -- Added a SECURE_PROXY_SSL_HEADER setting for cases when you're...Adrian Holovaty
2011-12-16Removed incorrect comment in core/handlers/modpython.py. If it were true, the...Adrian Holovaty
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-09Fixed #16178 - Cleanup request classes' `__repr__()`Luke Plant
2011-04-22Fixed #15672 -- Refined changes made in r15918. Thanks, vung.Jannis Leidel
2011-04-02Advanced deprecations in core.mail, core.commands, core.context_processors an...Russell Keith-Magee
2010-10-29Fixed #9886 -- Added a file-like interface to HttpRequest. Thanks to Ivan Sag...Russell Keith-Magee
2010-10-29Fixed #14523 -- Modified response handling so that exceptions raised by proce...Russell Keith-Magee
2010-10-06Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Th...Russell Keith-Magee
2010-10-04Fixed #12012 -- Added support for logging. Thanks to Vinay Sajip for his draf...Russell Keith-Magee
2010-08-28Fixed #13820 -- Started the deprecation process for mod_python. Thanks to Rob...Russell Keith-Magee
2009-09-12Fixed #11660 -- Corrected the CONTENT_TYPE and CONTENT_LENGTH headers provide...Russell Keith-Magee
2008-11-21Fixed #2782 -- Make the server port available through the modpython handler.Malcolm Tredinnick
2008-10-07Fixed #9224 -- Prevent a crash when certain query strings are sent usingMalcolm Tredinnick
2008-09-17Fixed #9014 -- Check that we really are processing a POST before processingMalcolm Tredinnick
2008-08-30Fixed #8622: accessing POST after a POST handling exception no longer throws ...Jacob Kaplan-Moss
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-21Fixed #7871 -- Added some more bullet-proofing in PATH_INFO determination,Malcolm Tredinnick
2008-07-21Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (orMalcolm Tredinnick
2008-07-19Revert [7991] - [7993]. I was committing from the wrong branch. Sorry 'boutMalcolm Tredinnick
2008-07-19First part of setting request.path correctly.Malcolm Tredinnick
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-03-08Fixed #5595 -- Made `ModPythonRequest.__repr__` return a string instead of a ...Gary Wilson Jr
2007-12-02Re-organized imports in handler modules to adhere to Django coding style.Gary Wilson Jr
2007-11-11Fixed #5898 -- Changed a few response processing paths to make things harder ...Malcolm Tredinnick
2007-10-20Slightly changed the way we handle non-UTF-8 encoded URIs (see [6475]). Made itMalcolm Tredinnick
2007-10-13Fixed #5738 -- Fixed bug with defective Unicode strings in a URLAdrian Holovaty
2007-09-16Fixed #4710 -- Improved mod_python HTTPS checking. Thanks, Aaron Maxwell, Smi...Malcolm Tredinnick
2007-09-14Added more dict-like methods to HttpResponse as part of the response.headers ...Jacob Kaplan-Moss
2007-07-07Changed HttpRequest.path to be a Unicode object. It has already beenMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2006-10-25Reverted [3919] because it requires mod_python 3.2.10+Adrian Holovaty
2006-10-24Fixed #2865 -- Reverted [3866] (problem with mod_python SERVER_PORTAdrian Holovaty
2006-10-24Changed django.core.handlers.modpython ModPythonRequest.is_secure() to use re...Adrian Holovaty
2006-09-28Removed ENABLE_PSYCO setting. If you still need to use this, write custom mid...Adrian Holovaty
2006-09-28Folded django.core.handlers.modpython.populate_apache_request into ModPythonH...Adrian Holovaty
2006-09-28Changed BaseHandler.get_response() to take a single parameter (an HttpRequest...Adrian Holovaty
2006-09-26Fixed #2782 -- Fixed incorrect request.META['SERVER_PORT'] for mod_python.Adrian Holovaty
2006-09-25Fixed #2745 -- Made the __repr__ methods for modpython and wsgi request moreMalcolm Tredinnick
2006-09-22Fixed #2560 -- Add close() support to HttpResponse iterators. Thanks, IvanMalcolm Tredinnick
2006-07-21Second half of little cleanup tweaks suggested by pyflakes.Jacob Kaplan-Moss
2006-07-21Fixed #2092: added a "is_secure()" method to HttpRequest which correctly hand...Jacob Kaplan-Moss
2006-06-20Added 'method' attribute to HttpRequest objectsAdrian Holovaty
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty
2006-04-09Fixed #1569 -- HttpResponse now accepts iterators. Thanks, ManiacAdrian Holovaty
2006-02-20Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom TobinAdrian Holovaty
2006-02-18Fixed #894 -- Moved response middleware call to base.py so that exceptions in...Adrian Holovaty
2006-02-03Fixed #1323 -- Added ENABLE_PSYCO. Thanks, Wojtek.Adrian Holovaty