summaryrefslogtreecommitdiff
path: root/paste/cgiapp.py
Commit message (Collapse)AuthorAgeFilesLines
* Port cgiapp to Python 3Victor Stinner2015-04-211-14/+17
| | | | Use bytes, not Unicode
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-181-1/+1
|
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-181-3/+3
| | | | Use "try/except ImportError" to try Python 2 and Python 3 names.
* Fix #444, egg:Paste#cgi should work nowIan Bicking2010-09-281-0/+1
|
* fixes for cgiapp on Windows (http://trac.pythonpaste.org/pythonpaste/ticket/382)Ian Bicking2010-09-021-2/+3
|
* Fix problem with CGI apps that don't give a status message, and which mix \n ↵Ian Bicking2010-08-201-6/+10
| | | | and \r\n in their headers
* small docstring formatting fixesianb2008-04-271-0/+2
|
* Fix issue with paste.cgiapp and mod_wsgi (#210)ianb2007-12-171-1/+5
|
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-2/+1
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* Paste should not depend upon other paste modules, suchcce2006-09-211-1/+2
| | | | | | | | | as Deploy. This patch moves 'converters' into paste.util since it was being used within paste proper. I'll leave it to those who know Deploy to update that. - copied converters.py from paste.deploy to paste.util - updated files that use paste.deploy.converters
* Changed the CGIApplication signature back to what it was.ianb2006-08-191-10/+5
|
* Removed Paste Deploy dependencies in many placesianb2006-08-191-6/+31
|
* Hopefully maybe make this Windows compatibleianb2005-11-221-6/+15
|
* Added license comment to all substantive filesianb2005-08-311-0/+3
|
* Converted cgiapp to paste.deployianb2005-08-221-5/+9
|
* Fixed problem with scripts that don't output any headers, and chop query ↵ianb2005-08-181-6/+10
| | | | string off earlier
* Removed debugging cruftianb2005-08-151-5/+0
|
* Added (non-Windows-compatible!) function to communicate with subprocesses, ↵ianb2005-08-151-23/+165
| | | | and other support code to avoid blocking on input or output
* Added CGI proxy applicationianb2005-08-151-0/+88