summaryrefslogtreecommitdiff
path: root/paste
Commit message (Expand)AuthorAgeFilesLines
* Use 404 instead of 400 when there's extra path on a static file, like with /i...Ian Bicking2006-12-221-1/+1
* fixed parse_dict_querystring returning empty dicts instead of MultiDictspjenvey2006-12-221-1/+1
* Reverting r6016Ian Bicking2006-12-221-33/+30
* Tweaked StaticURLParser to fix windows paths and infinite URL redirects. Curr...thejimmyg2006-12-221-30/+33
* renamed restorer evalcontext_begin/end in_evalcontext to restoration_begin/en...pjenvey2006-12-222-16/+15
* added paste.config, a rewrite of paste.deploy.config using the registrypjenvey2006-12-211-0/+118
* rename proxy's variables to have many underscores: to avoid clashing with the...pjenvey2006-12-211-13/+13
* time.time() is too coarse for cert serials: use a randint insteadpjenvey2006-12-201-1/+1
* daemon_threads fix in r6009 was invalid, revertingpjenvey2006-12-201-3/+2
* o the _auto_ssl_context cert serial number must be an int not a longpjenvey2006-12-201-6/+10
* Don't confuse people with inaccurate messageIan Bicking2006-12-201-2/+3
* Use a more appropriate parameter nameIan Bicking2006-12-201-3/+3
* Quote SCRIPT_NAME and PATH_INFO in construct_url and when forwarding the requ...Ian Bicking2006-12-182-6/+10
* Fixed the paths for to work with Windowsthejimmyg2006-12-181-1/+6
* Fix for recursiveIan Bicking2006-12-181-0/+3
* Add atexit importIan Bicking2006-12-181-1/+2
* Revert r5958, for more threadsafe profiling -- the feature it used is only av...Ian Bicking2006-12-181-13/+22
* Apply #146, avoid orphaned threadpool, from jekIan Bicking2006-12-181-6/+12
* Apply #145, put http:// before URLs when starting serverIan Bicking2006-12-181-1/+4
* Security fix for StaticURLParser, plus unquote SCRIPT_NAME and PATH_INFO, plu...Ian Bicking2006-12-183-8/+11
* Header values sent by dump_environ should be strings.asaddi2006-12-141-1/+1
* allow ssl_context and auto-generated certs, from Jason Kirtland; closes #143Ian Bicking2006-12-141-9/+45
* fixed ThreadPoolMixIn.server_close to shutdown its thread poolpjenvey2006-12-131-0/+1
* Made Registries work in EvalException (prepare, register, replace, cleanup)pjenvey2006-12-071-53/+92
* Added unicorn power, from Chad WhitacreIan Bicking2006-12-051-4/+26
* enable the StackedObjectRestorer during show_frame so locals show uppjenvey2006-12-041-0/+2
* Fixed issue with pushing obj twice.bbangert2006-12-041-1/+0
* Added replace method to registry for replacing registered objects with a new ...bbangert2006-12-041-0/+13
* small refactorpjenvey2006-12-021-2/+2
* StackedObjectRestorer tests. fixed a couple edge cases:pjenvey2006-12-011-20/+30
* Remove sys.stdout patching, in favor of directly capturing outputIan Bicking2006-12-011-22/+13
* StackedObjectProxies now work within the interactive debugger. Whenpjenvey2006-12-012-3/+155
* StatusKeeper now also retains headers.bbangert2006-12-011-7/+14
* use repr instead of __repr__ directlypjenvey2006-11-301-1/+1
* Added __traceback_decorator__Ian Bicking2006-11-271-2/+22
* Change CONTENT_LENGTH's default to '0', not ''Ian Bicking2006-11-271-1/+1
* Handle case when CONTENT_LENGTH is empty string (which cgi.FieldStorage treat...Ian Bicking2006-11-261-1/+2
* Use a default CONTENT_LENGTH of 0Ian Bicking2006-11-261-0/+3
* Fix for error condition in OpenID auth; patch from Christopher BausIan Bicking2006-11-261-1/+1
* Fix last commit (CONTENT_TYPE), newsIan Bicking2006-11-261-1/+1
* Handle request CONTENT_TYPE with parameters (e.g., charset=X). prototype.js ...Ian Bicking2006-11-261-2/+4
* fixed openid failures not returning a correct responsepjenvey2006-11-221-1/+1
* Fix for Set-Cookie in paste.proxyIan Bicking2006-11-211-2/+12
* Fix the flow of information in the gzipper response; you shouldn't update the...Ian Bicking2006-11-121-5/+9
* Fix for Content-Length in gzip response from Brad Clements. Also gzip testIan Bicking2006-11-121-0/+5
* Added modulefinder declaration, per Brad Clement's requestIan Bicking2006-11-061-0/+4
* Fixed #133 from cookedm: paste.auth.form doesn't return valid headersIan Bicking2006-11-021-2/+2
* Fix #134 from cookedm: paste.util.scgiserver doesn't like an empty string as ...Ian Bicking2006-11-021-1/+1
* fix #127: paste.fixture doesn't correctly handle empty actionIan Bicking2006-11-021-1/+1
* Fixed header assignment so value is assigned only if value is not None or Fal...bbangert2006-11-021-1/+1