summaryrefslogtreecommitdiff
path: root/django/core/handlers/modpython.py
AgeCommit message (Collapse)Author
2005-11-30Moved Apache auth handler to django/contrib/auth/handlers/modpython.pyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1500 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-11-29Added mod_python authentication handler and document on authenticating ↵Jacob Kaplan-Moss
against Django's auth database from Apache git-svn-id: http://code.djangoproject.com/svn/django/trunk@1495 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-10-06Fixed #333 and #440 -- Split DEFAULT_MIME_TYPE setting into ↵Adrian Holovaty
DEFAULT_CONTENT_TYPE and DEFAULT_CHARSET. Thanks, Maniac. git-svn-id: http://code.djangoproject.com/svn/django/trunk@786 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-16Fixed #1 -- Added anonymous session support via middleware and ↵Adrian Holovaty
request.session. Removed the former request.session, which wasn't being used anyway. Removed auth.Session model. See the BackwardsIncompatibleChanges wiki page for IMPORTANT notes on code you'll have to change and a DB table you'll have to create. git-svn-id: http://code.djangoproject.com/svn/django/trunk@518 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-15Changed handlers (both mod_python and WSGI) to support setting multiple ↵Adrian Holovaty
cookies per request git-svn-id: http://code.djangoproject.com/svn/django/trunk@511 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-08-10Fixed #126 -- HttpRequest now has a 'raw_post_data' attribute.Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-22Fixed #63 -- Refactored django.core.handlers into subclasses to remove ↵Adrian Holovaty
duplicate code git-svn-id: http://code.djangoproject.com/svn/django/trunk@298 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-20Fixed #102 -- Now using text/plain mimetype for exceptions displayed in the ↵Adrian Holovaty
browser, so angle brackets are no longer an issue git-svn-id: http://code.djangoproject.com/svn/django/trunk@241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-20Made ModPythonHandler.get_response() tolerant of repr(request) that has an ↵Adrian Holovaty
exception git-svn-id: http://code.djangoproject.com/svn/django/trunk@232 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Changed core.handlers.modpython.populate_apache_request NOT to have side ↵Adrian Holovaty
effects on http_response. This has no effect on legacy code but will prevent problems in new code git-svn-id: http://code.djangoproject.com/svn/django/trunk@181 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2005-07-18Added WSGI support. Created core.handlers package. Moved ALL ↵Adrian Holovaty
mod_python-specific code to django.core.handlers.modpython. Note that django.core.handler is still a valid mod_python handler but IS DEPRECATED. Use django.core.handlers.modpython, instead. git-svn-id: http://code.djangoproject.com/svn/django/trunk@169 bcc190cf-cafb-0310-a4f2-bffc1f526a37