summaryrefslogtreecommitdiff
path: root/paste/httpexceptions.py
Commit message (Expand)AuthorAgeFilesLines
* Merged in marsupial2k/paste (pull request #6)Marc Abramowitz2015-05-111-0/+6
|\
| * Add HTTP 429 "Too Many Requests"Neil Williams2011-12-231-0/+6
* | Fix HTTPException.make_body() on Python 3Victor Stinner2015-04-211-3/+4
* | Copy the dictionary of global variables to be able to iterate over it andVictor Stinner2014-03-181-1/+1
* | Python 3: Replace types.ClassType with six.class_typesCyril Roelandt2014-03-181-2/+1
* | Python 3: Replace "for name, value in dict.items()" with "for name, value in ...Cyril Roelandt2014-03-181-1/+1
* | Python 3: Use six types for stringsCyril Roelandt2014-03-181-4/+5
* | Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-181-1/+1
|/
* Just a bit more paranoia in quoting comments, though I wasn't able to reprodu...Ian Bicking2010-09-141-1/+1
* Fix XSS attacks as reported by Tim WintleIan Bicking2010-06-151-6/+5
* Add a warning about the unused warning_level parameterianb2009-05-051-9/+4
* fix that last commitianb2009-04-241-1/+1
* Avoid some unicode errors in httpexceptionsianb2009-04-241-7/+9
* Add a note about httpexceptions and generator applications (#242)ianb2008-03-261-0/+4
* Simplify the way HTTPExceptionHandler catches HTTPExceptions. You can no lon...ianb2007-09-211-11/+3
* Updated the way httpexception response objects are created, in response to da...ianb2007-03-061-1/+1
* add .response() method to HTTPException objects (from damjam)ianb2007-02-191-4/+15
* convert old-style classes to new-style classespjenvey2007-01-051-1/+1
* Make WWW-Authenticate header not required for httpexceptions.HTTPUnauthorizedianb2006-11-011-1/+0
* Paste should not depend upon other paste modules, suchcce2006-09-211-4/+4
* Fixing a bug when unicode is used in exceptions, thecce2006-09-111-2/+2
* reverting my last changecce2006-09-111-4/+2
* Adding HTTPException.detail_template class variable to permitcce2006-09-111-2/+4
* assert send_http_response was triggered by an HTTPException, incase it's being0.9.7pjenvey2006-08-111-0/+2
* Updating HTTPNotModified so it works with ETag. This still needs to be fixed ...bbangert2006-07-221-1/+2
* Added copyright header to a bunch of filesianb2006-06-131-0/+2
* Fixed issue with Safari and http exceptions since Safari sends */* as Accept,...bbangert2006-05-291-1/+2
* typo in last commitianb2006-02-281-1/+1
* Make sure that even if content-type is passed in to the HTTPExceptions constr...ianb2006-02-281-4/+6
* Added a location method to redirect exceptionsianb2006-02-281-0/+7
* Added relative_redirect classmethod constructor to redirect exceptionsianb2006-02-021-0/+13
* The last two commits fixed the wrong thing; urlparser now back to how it was,...ianb2006-01-261-5/+10
* Don't html-quote HTML commentsianb2006-01-221-6/+6
* Allow the httpexceptions to be 'themeable'cce2006-01-031-9/+14
* - cleaned up documentation for paste.auth.cookiecce2005-12-311-45/+49
* - fixes to make auto-documentation work nicercce2005-12-301-16/+47
* (no commit message)cce2005-12-301-1/+1
* - fixing my awful spellingcce2005-12-301-5/+5
* - added Range: functionality to FileAppcce2005-12-251-1/+1
* - got rid of unnecessary trailing spaces in httpexceptionscce2005-12-231-65/+69
* - made __call__ for an HTTPException be the same as wsgi_applicationcce2005-12-231-0/+1
* Improve error messages in assertionsianb2005-12-211-4/+11
* Handle case of no headers and proper error messageianb2005-12-191-1/+1
* A bunch of little import cleanups noted from pyflakesianb2005-12-181-1/+0
* Moved all the internal uses of wsgilib to their correct forms nowianb2005-12-181-1/+2
* Added a fix for httpexceptions when an exception is raised by the iterator, a...ianb2005-12-151-22/+11
* Let HTTPExceptions in the app iterator bubble up for now, because by using th...ianb2005-12-141-4/+3
* Warn at the right stacklevelianb2005-12-141-1/+1
* make_middleware doesn't use global_conf, not sure why its a required arg. Eva...bbangert2005-12-131-1/+1
* removed debug print; keep httpexceptions.middleware signature, which matches ...ianb2005-12-131-3/+2