summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Added link to do-it-yourselfianb2006-10-311-0/+1
|
* Updated docs for 1.0ianb2006-10-222-2/+18
|
* changes to QUERY_STRING shouldn't trigger reparsing of formvars:pjenvey2006-10-201-0/+3
| | | | | | no longer caching QUERY_STRING vars together with parsed_formvars (parse_querystring caches them anyway) nor using QUERY_STRING information as cache keys
* Moved and fixed gzip middleware entry point; typo in docsianb2006-10-201-1/+1
|
* Quote the frame name aka function name, which contains <> in Genshiianb2006-10-201-0/+3
|
* Added session cleanup, from patch by Amirianb2006-10-201-0/+3
|
* Added a force_host arg to TransparentProxyianb2006-10-181-0/+4
|
* Fixed a couple problems with error reports that might go over sizeianb2006-10-131-0/+6
|
* Added an Paste Deploy entry point for paste.transloggerianb2006-10-071-0/+3
|
* Fixed problem where the errorcatching middleware doesn't expose the close ↵ianb2006-10-031-0/+9
| | | | method of the app_iter that it is wrapping
* Fix paste.fixture res.follow docsianb2006-09-261-4/+4
|
* Make fileapp.DataApp directly usable, plus handle empty content properlyianb2006-09-251-0/+3
|
* Fix case when using TestApp, and params={'key': ['list', 'of', 'values']}, ↵ianb2006-09-101-0/+3
| | | | as reported by Syver Enstad
* Some docstring fixes, and a link fix; exception fix in paste.lint0.9.8.1ianb2006-09-051-1/+1
|
* o fixed WSGIResponse to determine the correct encoding after the Content-Typepjenvey2006-09-041-0/+6
| | | | | | header was changed o defaulting the WSGIResponse charset to iso-8859-1 as per RFC2616 o fixed HeaderDict's get and setdefault to be case insensitive
* o WSGIResponse changes:0.9.8pjenvey2006-09-041-0/+7
| | | | | | | | - properly encoding any unicode content according to the response's charset - handling generator/iterator content more cleanly - fixed delete_cookie. also now takes optional path and domain args o added wsgilib.encode_unicode_app_iter: encodes an app_iterable's unicode responses as strings
* use headeritems() instead of items() in WSGIResponse.pjenvey2006-08-301-0/+3
| | | | thanks jaq
* Patch to add suppress_http_headers to paste.proxy.Proxy, from Brad Clementsianb2006-08-291-0/+4
|
* Patch for cache_max_age from Brad Clementsianb2006-08-291-0/+4
|
* Added TransparentProxyianb2006-08-241-0/+6
|
* Fixed a bug in the registry test (not code), since str(registered_object) ↵ianb2006-08-231-0/+6
| | | | never fails anymore. Fixed some formatting because of new-style exceptions in Python 2.5
* better error message in paste.auth.cookieianb2006-08-211-0/+3
|
* Fixed problem with exception formatter word wrapping routineianb2006-08-211-0/+6
|
* Fixed problem when wrap_app_iter wraps an app_iter with no close methodianb2006-08-191-0/+3
|
* Removed Paste Deploy dependencies in many placesianb2006-08-191-0/+11
|
* Added an entry point for paste.auth.cookie; added/currected a little info to ↵ianb2006-08-191-1/+6
| | | | the docstrings
* documentation formattingpjenvey2006-08-041-2/+2
|
* doc format fix; better error message from Jamie Wilkinsonianb2006-08-031-4/+5
|
* only displaying EvalException's full traceback button when the full tracebackpjenvey2006-07-311-0/+4
| | | | differs from the regular (includes hidden frames)
* added changelog of r5516 to the newspjenvey2006-07-301-0/+6
|
* renamed the multidict class to MultiDictpjenvey2006-07-252-1/+7
|
* o request.parse_formvars changes:pjenvey2006-07-241-3/+3
| | | | | | | | | | | | - now returns a multidict instead of dict (like parse_dict_querystring) - removed all_as_list keyword arg: use multidict.mixed() instead to produce an all_as_list dict - preventing FieldStorage from parsing out QUERY_STRING during GET/HEAD requests - the fake_out_cgi check wasn't careful enough about multipart/form-data content-types. Was also missing a StringIO import (r5471 broke file uploads) o evalexception's wsgiapp decorator assumed parse_formvars would return GET vars during a GET (buggy behavior), now it explicitly asks for them
* Removed defunct doc build scriptianb2006-07-201-47/+0
|
* Removed errordocument.empty_error, since it never actually worked in a ↵0.9.5ianb2006-07-201-2/+7
| | | | useful way; changed the news to 0.9.5 (since that's what the next release will be)
* Added more download notesianb2006-07-201-0/+20
|
* Keep wsgi.input from being eaten when the cgi module is looking for POST ↵ianb2006-07-201-0/+4
| | | | variables
* Changed usage of MultiDict to util.multidictianb2006-07-191-0/+4
|
* added WSGIThreadPoolServer. Provides much better performance thanpjenvey2006-07-191-0/+9
| | | | | | | | WSGIServer. paste.httpserver.serve now uses the thread pooled server by default. Users can set the number of worker threads (defaults to 10) or switch back to the normal WSGIServer with config file toggles. submitted by: james@jamestaylor.org (Thanks!) resolves: #112
* Added tests for file-related conditional requests. Added support for ↵ianb2006-07-171-0/+6
| | | | If-None-Match to DataApp. Added parsing support for multi-value headers.
* Added a 'no' argument to mustcontainianb2006-07-151-0/+9
|
* added news item for resolved ticket #114pjenvey2006-06-261-0/+6
|
* Fix for paste.urlmap and vhostsianb2006-06-221-0/+3
|
* Rearranged news a little0.9.4ianb2006-06-221-3/+10
|
* Preventing circumvention of StaticURLParser and PkgResourcesParser's root ↵pjenvey2006-06-191-0/+3
| | | | | | directories. Ensuring fix with tests
* Fixed urlparser classes to handle quoted (e.g. %20) URL paths.pjenvey2006-06-181-0/+3
| | | | | Added tests for this (Thanks Jose Galvez)
* fixed TransLogger to log to the Apache combined log format as advertisedpjenvey2006-06-181-0/+3
| | | | | submitted by: http://nate.myopenid.com/ resolves: #118
* Added license textianb2006-06-151-0/+20
|
* Corrected copyright noteianb2006-06-131-4/+2
|
* Handle case with testapp.post(params={})ianb2006-06-041-0/+2
|
* Added a warning to paste.wsgilib.add_closeianb2006-05-311-0/+3
|