summaryrefslogtreecommitdiff
path: root/paste
Commit message (Collapse)AuthorAgeFilesLines
* exc_info should be passed up in intercept_output (if it is not, exceptions ↵ianb2007-09-061-1/+1
| | | | sometimes won't propogate upward properly)
* reverting FreeBSD threadpool disablingianb2007-09-041-5/+1
|
* be a little more careful splittingianb2007-09-041-1/+1
|
* default value for text fields is empty string -- at least, that's how moz ↵novalis2007-08-231-1/+6
| | | | seems to do it
* tag names include namespace, so form:error tags are not incorrectly picked upnovalis2007-08-221-1/+1
|
* tag names include namespacenovalis2007-08-221-1/+1
|
* fix import orderianb2007-08-141-1/+1
|
* inherit show_exceptions_in_wsgi_errors from global_confianb2007-08-141-2/+4
|
* fix more possible thread errors, followup to r6843pjenvey2007-08-131-5/+8
|
* Fix possible thread error, when a thread finishes while add_task is looking ↵ianb2007-08-131-2/+2
| | | | at it
* Port WSGIResponse.content_type and .charset from WebObianb2007-08-101-0/+74
|
* being pedantic, trying to find source of memory leakcce2007-08-091-0/+1
|
* Try to encode values to auth_tktianb2007-08-091-0/+8
|
* - fix urlmap to include the path that was not found and notcce2007-08-081-1/+1
| | | | give a redundant message of not being found 2x
* first pass at an ArchiveStorecce2007-08-071-3/+58
|
* The threadpool code just doesn't work on FreeBSD.cce2007-08-041-1/+7
|
* remove tabsianb2007-07-222-3/+3
|
* readline takes an optional length argpjenvey2007-07-191-2/+2
|
* o fixed WSGIResponse default headers only being inherited when a mimetype ↵pjenvey2007-07-141-2/+2
| | | | | | | | was specified o default WSGIRequest's decoding error handler to 'replace'. if sent bad data, it's more appropriate to just convert it to bad unicode data instead of raising an exception
* Fix problem with .form and named formsianb2007-07-131-4/+7
|
* Make wsgi the default logger name for the entry point (it was going to the ↵ianb2007-07-091-1/+1
| | | | root logger before)
* o allow DispatchingConfigs to customize their SOP name attributepjenvey2007-07-061-19/+20
| | | | | o inline current_conf, add current as an alias o allow customizing ConfigMiddleware's environ key
* Fix bug in last commit, apply header defaults to WSGIResponse and default ↵bbangert2007-06-281-5/+3
| | | | cache-control to no-cache.
* By default, don't cache Response objects.bbangert2007-06-281-1/+4
|
* Don't read past the end of the line with LimitedLengthFile.readline (from ↵ianb2007-06-281-3/+1
| | | | Michael van Tellingen)
* docstring misformatting; added news linkianb2007-06-261-1/+1
|
* Make comments workianb2007-06-131-0/+5
|
* Added {{default}} directive to paste.util.templateianb2007-06-131-0/+30
|
* fix docs referring to cache_max_age as max_cache_agepjenvey2007-06-121-2/+2
| | | | Thanks Mike Orr
* Handle case when environ doesn't exist (request starting up)ianb2007-05-301-0/+4
|
* Added REST methods to Test, from Anders Pearsonianb2007-05-251-14/+58
|
* Fix for request.languages, which didn't pass the right value to httpheaders. ↵ianb2007-05-252-2/+2
| | | | Filter out empty languages from httpheaders.ACCEPT_LANGUAGE.
* Fix for #174; Paste Deploy entry point for paste.auth.form brokenianb2007-05-251-1/+6
|
* Fix #179, exception for accept-languagesianb2007-05-251-0/+3
|
* o make ProfileMiddleware close the consumed app_iter if applicablepjenvey2007-05-041-2/+7
| | | | | fixes "Error: app_iter.close() was not called when finishing WSGI request." o spelling
* whitespacepjenvey2007-05-041-3/+3
|
* Cleaned up the worker lifecycle logic, fixing some bugs in how workers are ↵ianb2007-04-271-34/+48
| | | | tracked. Track why worker threads are started, and include this information in the logs.
* Add __call__ to StackedObjectProxy. For cmlenzianb2007-04-261-0/+3
|
* Fix the way max_requests works, so that we don't think the idle worker ↵ianb2007-04-261-1/+7
| | | | thread is still around (which caused the *real* worker threads to be culled, leaving only ghost workers who don't actually do any work, and thus the server would freeze)
* Add a better logging message about the thread worker pollingianb2007-04-261-0/+23
|
* Don't register the cleanup until the rest of the threadpool constructor has ↵ianb2007-04-261-3/+2
| | | | successfully run
* Treat missing Content-Length as 0, not unlimitedianb2007-04-251-2/+2
|
* Remove the languageRegEx check, as Kelly Yancey says that RFC 2616 does not ↵ianb2007-04-191-3/+1
| | | | actually require languages to be of that format (per http://kbyanc.blogspot.com/2007/04/more-i-dig-through-code-more-paste-is.html)
* Fix case with continuation headersianb2007-04-171-13/+30
|
* avoid unnecessary ports in URL constructionianb2007-04-171-1/+13
|
* Add information about proxy requestsianb2007-04-151-1/+5
|
* Fix .urlvars to use wsgiorg.routing_argsianb2007-04-151-1/+13
|
* Added a parameter to the threadpool: max_requests, which is the maximum ↵ianb2007-04-121-12/+25
| | | | number of requests to process in a worker thread before killing that thread. This should resolve problems with long-lived threads, as no thread lives too terribly long with this on. Also, turn the threadpool back on by default. And turn LimitedLengthFile back on when it is not an SSL connection
* Fix for #167ianb2007-04-111-1/+1
|
* lowercasing 'UTF-8', as most docs use lowercase encoding namespjenvey2007-04-111-1/+1
|