Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/core/handlers/wsgi.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #17133 -- Optimized script_url handling in get_scrip...Claude Paroz2015-10-271-3/+4
* Fixed #17133 -- Properly handled successive slashes in in...Claude Paroz2015-10-231-0/+6
* Fixed #23173 -- Fixed incorrect stripping of SCRIPT_URLBas Peschier2015-03-081-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #24137 -- Switched to HTTP reason phrases from Pyth...Jon Dufresne2015-01-281-3/+0
* Removed request.REQUEST per deprecation timeline; refs #1...Tim Graham2015-01-171-11/+0
* Fixed #24072 -- Added FileResponse for streaming binary f...Collin Anderson2015-01-051-0/+2
* Fixed #19508 -- Implemented uri_to_iri as per RFC.Anubhav Joshi2014-10-151-7/+4
* Fixed #23638 -- Prevented crash while parsing invalid coo...Claude Paroz2014-10-131-1/+1
* Fixed #21483 -- Added WSGI environ to kwargs sent to requ...Joshua "jag" Ginsberg2014-08-291-1/+1
* Fixed #18314 -- Corrected request.build_absolute_uri() ha...Unai Zalakain2014-06-071-1/+5
* Fixed #21188 -- Introduced subclasses for to-be-removed-i...Claude Paroz2014-03-081-1/+2
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Replace _parse_content_type with cgi.parse_headerCurtis2014-02-091-16/+2
* Use cached_property for request.GET and request.COOKIESCurtis2013-12-241-19/+10
* Fixed all E261 warningscoagulant2013-11-021-1/+1
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+1
* Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma2013-10-171-0/+3
* Fixed #7603 -- Added a 'scheme' property to the HttpReque...Unai Zalakain2013-10-151-2/+2
* Fixed #20557 -- Properly decoded non-ASCII cookies on Pyt...Aymeric Augustin2013-09-071-2/+16
* Minor cleanup in the WSGI handler.Aymeric Augustin2013-09-071-3/+3
* Refactored the unmangling of the WSGI environ.Aymeric Augustin2013-09-071-14/+29
* Moved two WSGI-specific functions to the WSGI handler.Aymeric Augustin2013-09-071-4/+48
* Fixed a number of lint warnings, particularly around unus...Alex Gaynor2013-08-041-1/+1
* Fixed missing initializations in WSGIRequest. Refs #20619Loic Bistuer2013-06-261-0/+1
* Fixed #12747 -- Made reason phrases customizable.Aymeric Augustin2013-05-191-63/+4
* Added an HTTP status code to Django's WSGI application th...Alex Gaynor2013-05-081-0/+1
* Fixed #20169 -- Ensured that the WSGI request's path is c...Julien Phalip2013-04-011-1/+1
* Fixed #17550 -- Removed a workaround for a bug in flup 1....Aymeric Augustin2013-03-241-4/+1
* Fixed #19519 -- Fired request_finished in the WSGI iterab...Aymeric Augustin2012-12-311-2/+2
* Fixed #19468 -- Decoded request.path correctly on Python 3.Aymeric Augustin2012-12-221-1/+1
* Fixed #5076 -- Properly decode POSTs with non-utf-8 paylo...Claude Paroz2012-10-301-0/+24
* Removed a function that is already fully implemented by a...Alex Gaynor2012-10-241-5/+0
* Imported getLogger directly from logging moduleClaude Paroz2012-09-201-2/+2
* Replace nested try/finally try/except with try/except/fin...Florian Apolloner2012-09-091-12/+11
* Replaced some smart_xxx by force_xxx equivalentClaude Paroz2012-08-301-2/+2
* [py3] Removed excessive usage of smart_bytesClaude Paroz2012-08-151-2/+2
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-3/+3
* Replaced some byte strings by str() callsClaude Paroz2012-08-031-1/+1
* Switch to using context managers for acquiring and releas...Alex Gaynor2012-06-231-4/+1
* Fixed #18269 -- Applied unicode_literals for Python 3 com...Claude Paroz2012-06-071-5/+7
* Marked bytestrings with b prefix. Refs #18269Claude Paroz2012-05-191-5/+5
* Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz2012-05-051-5/+2
* Fixed #14597 -- Added a SECURE_PROXY_SSL_HEADER setting f...Adrian Holovaty2011-12-161-3/+2
* Negligible typo fix in a comment in handlers/wsgi.pyAdrian Holovaty2011-12-161-1/+1
* Fixed #16360 -- Added WSGI entrypoint to startproject lay...Carl Meyer2011-10-221-3/+2
* Fixed #16746 - added more HTTP code/string mappings.Jacob Kaplan-Moss2011-09-091-1/+13
* Fixed #16225 -- Removed unused imports. Many thanks to Ay...Jannis Leidel2011-07-131-2/+0
* Fixed #15785 -- Stopped HttpRequest.read() from reading b...Jannis Leidel2011-06-281-20/+5
* Fixed #16178 - Cleanup request classes' `__repr__()`Luke Plant2011-06-101-25/+0