summaryrefslogtreecommitdiff
path: root/paste/cascade.py
Commit message (Collapse)AuthorAgeFilesLines
* Strip trailing spacesVictor Stinner2015-04-211-3/+3
|
* Python 3: fix more submodulesVictor Stinner2014-03-191-1/+1
| | | | | * print syntax * replace "except Exception, exc:" with "except Exception as exc:"
* small docstring formatting fixesianb2008-04-271-8/+15
|
* Avoid infinite loop of reading no data from a socket in cascadeianb2008-02-131-0/+2
|
* Fix #194; seek(0) before last app in cascadeianb2007-10-241-0/+2
|
* be more tolerant of bad CONTENT_LENGTH1.5.1ianb2007-10-221-1/+4
|
* Content-Length: -1 means we should read indefinitely, not count down to zero ↵ianb2007-10-111-6/+9
| | | | (which would of course be fatal)
* Fix #194, paste.cascade doesn't copy wsgi.input, and blocking can occur: now ↵ianb2007-10-101-0/+21
| | | | wsgi.input is copied and .seek(0) on each call
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-2/+2
| | | | 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/+1
| | | | | | | | | 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
* Removed Paste Deploy dependencies in many placesianb2006-08-191-1/+1
|
* Avoid using exceptions in Cascade; this was causing a problem if an ↵ianb2005-12-131-3/+17
| | | | exception-catching middleware was above the cascade process. Now it doesn't use exceptions at all.
* Fix for case when you pass a string to cascadeianb2005-11-281-1/+1
|
* Be more careful about sharing environmentsianb2005-09-211-1/+2
|
* Added license comment to all substantive filesianb2005-08-311-0/+3
|
* paste.deployified cascadeianb2005-08-221-0/+27
|
* Dispatcher to try multiple applications until 404 not givenianb2005-08-151-0/+50