summaryrefslogtreecommitdiff
path: root/paste
Commit message (Collapse)AuthorAgeFilesLines
* fix for example in docstring0.9.1Ian Bicking2006-05-071-1/+1
|
* Small stylesheet updatesIan Bicking2006-05-071-2/+2
|
* fix for non-form POSTs, putting all the variables in __body__Ian Bicking2006-05-071-15/+24
|
* Fixed hang bug when using recursive forwards during an exception toss during ↵bbangert2006-05-041-0/+1
| | | | a POST. At this point, changing the request method to a GET alleviates the issue with re-reading the 'wsgi.input' which is no longer present at this point. Ideally instead of having to change the request method during an internal redirect, the wsgi.input should possibly be repopulated somehow.
* typoIan Bicking2006-04-251-1/+1
|
* Fix argument orderIan Bicking2006-04-241-1/+1
|
* damn, coerced incorrectlyIan Bicking2006-04-241-2/+2
|
* Added a chmod option to paste.sessionIan Bicking2006-04-241-3/+10
|
* fix docstringIan Bicking2006-04-241-1/+1
|
* fix docstringIan Bicking2006-04-241-11/+11
|
* docstring fixupIan Bicking2006-04-241-4/+3
|
* When xmlhttp was detected, we weren't saving the debug info, so you couldn't ↵Ian Bicking2006-04-241-6/+15
| | | | view the full traceback; also the error wasn't very good when a key was missing
* Fixed port matching in urlmapIan Bicking2006-04-141-3/+9
|
* Fixed bug in port urlmap parsingIan Bicking2006-04-141-1/+1
|
* Patch for paste.proxy from Brad ClementsIan Bicking2006-04-031-11/+50
|
* OMG a pony\!Ian Bicking2006-04-011-0/+30
|
* docstringIan Bicking2006-03-301-0/+4
|
* Handle a host:port configurationIan Bicking2006-03-301-1/+7
|
* Allowed for a -1 value in the rangeIan Bicking2006-03-301-1/+1
|
* Added notes on what is testedIan Bicking2006-03-301-0/+103
|
* Typo in not-found handlerIan Bicking2006-03-301-1/+1
|
* Added has_session method to paste.sessionIan Bicking2006-03-301-0/+8
|
* Fix from Damjan when Accept-Encoding is missing from requestIan Bicking2006-03-281-1/+1
|
* More docs, passing __len__ into objectbbangert2006-03-271-0/+39
|
* Typo fixed in flup sessionsIan Bicking2006-03-241-1/+1
|
* Switched to holding content as an array internallybbangert2006-03-211-5/+5
|
* moving 'serving on...' inside start_loop as suggested by mitsuhiko on irccce2006-03-201-1/+1
|
* Removed LazyCache, cause it didn't work, and should use environ to cache the ↵bbangert2006-03-191-22/+1
| | | | values anyways
* Moved WSGIRequest from request -> wsgiwrappers. Created WSGIResponse object ↵bbangert2006-03-193-129/+256
| | | | in wsgiwrappers.
* Fixed bug with WSGIRequest paramsbbangert2006-03-191-2/+2
|
* Added naming capability to StackedObject for better debugging when a object ↵bbangert2006-03-191-2/+4
| | | | isn't registered
* Fixed bug in setattr for stacked objectbbangert2006-03-191-1/+1
|
* Docstring addition from Alexey ShamrinIan Bicking2006-03-151-3/+11
|
* Added entry point for paste.proxyIan Bicking2006-03-131-0/+7
|
* Added a get_cookie_headers function; added a dictionary-like object that ↵Ian Bicking2006-03-132-34/+118
| | | | dynamically reads headers from the WSGI environment; altered request object to cache a little less (still more to remove); made urlvars a request value
* Wrap what is now a really long lineIan Bicking2006-03-131-1/+3
|
* Fixed WSGIRequest not parsing right, updating unit tests for WSGIRequestbbangert2006-03-131-18/+10
|
* Added unit tests to ensure that TypeError is thrown if no default is ↵bbangert2006-03-121-5/+21
| | | | | | provided and no object is pushed to the Proxy. Added ability to define a default object for a StackedObjectProxy
* Adding copyright/license infobbangert2006-03-101-0/+4
|
* Doc change to make it clear that paste.registry is a Registry instancebbangert2006-03-101-1/+1
|
* Updating docsbbangert2006-03-101-48/+90
|
* Didn't need custom app_iter, as my unit test wasn't following WSGI spec by ↵bbangert2006-03-101-17/+2
| | | | calling close on the response. Unit tests for registry all passing
* Fixes iterable issue by using new IterWrap, likely need to break it into ↵bbangert2006-03-101-1/+15
| | | | wsgilib still, added test case for iterable app
* Adding registry unit tests, fixed registry to not use weakref's so any ↵bbangert2006-03-101-14/+3
| | | | object can be proxied (including dicts)
* Initial creation of registry and stacked object proxy, hasn't been tested ↵bbangert2006-03-101-0/+197
| | | | yet but I'm feeling lucky
* - Space Nazicce2006-03-091-1/+2
|
* Implementation of a multidictIan Bicking2006-03-091-0/+187
|
* Fixed headers propertybbangert2006-03-091-4/+3
|
* Added body, headers prototypebbangert2006-03-091-3/+9
|
* Added cookies and urlvars to WSGIRequestbbangert2006-03-091-5/+10
|