summaryrefslogtreecommitdiff
path: root/paste/httpheaders.py
Commit message (Expand)AuthorAgeFilesLines
* Fix pyflakes warningsVictor Stinner2015-04-221-1/+0
* Fix httpheaders on Python 3Victor Stinner2015-04-211-13/+25
* Copy the dictionary of global variables to be able to iterate over it andVictor Stinner2014-03-181-2/+3
* Python 3: Replace "for ... in dict.items()" with "for ... in six.iteritems(di...Cyril Roelandt2014-03-181-3/+3
* Python 3: Use absolute import instead of relative importCyril Roelandt2014-03-181-1/+1
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-181-4/+11
* Get rid of misused .remote() method (should have been .delete()): http://trac...Ian Bicking2010-09-021-2/+2
* Fix http://trac.pythonpaste.org/pythonpaste/ticket/398 -- properly reject dat...Ian Bicking2010-09-011-1/+1
* workaround mimetype's incredible lameness:pjenvey2009-03-021-3/+3
* Use Content-Range: bytes START-END/LENGTH (adding 'bytes')ianb2007-09-101-1/+1
* be a little more careful splittingianb2007-09-041-1/+1
* Fix for request.languages, which didn't pass the right value to httpheaders. ...ianb2007-05-251-1/+1
* Fix #179, exception for accept-languagesianb2007-05-251-0/+3
* Remove the languageRegEx check, as Kelly Yancey says that RFC 2616 does not a...ianb2007-04-191-3/+1
* Adding language parsing HTTP header code.bbangert2007-01-301-1/+35
* convert old-style classes to new-style classespjenvey2007-01-051-1/+1
* Fix M-t typo introducedianb2006-10-201-2/+2
* more whitespace changesianb2006-10-201-47/+47
* reverting r5459, as the issue has already been fixedpjenvey2006-07-171-5/+2
* Added tests for file-related conditional requests. Added support for If-None...ianb2006-07-171-0/+7
* More permissive parsing for dates in headers. IE in particular will add '; l...ianb2006-07-131-1/+4
* o revised the r5420 patch to be specific to the _IfModifiedSince headerpjenvey2006-06-261-4/+10
* Clean date headers of extra attributes sent by IEpjenvey2006-06-261-2/+4
* Added copyright header to a bunch of filesianb2006-06-131-0/+2
* Allowed for a -1 value in the rangeianb2006-03-301-1/+1
* Fixed docstring; removed method that was doubly-defined (I think I deleted th...ianb2006-03-011-15/+2
* - noted the RFC for exhaustive list of httpheaderscce2006-02-081-1/+1
* - py2.3 compatibility fix as reported by Ben Bangertcce2006-01-061-2/+2
* (no commit message)cce2006-01-021-0/+1
* - fixed logic/definition problem /w multi-entry headers;cce2006-01-011-41/+100
* - cleaned up documentation for paste.auth.cookiecce2005-12-311-2/+3
* Create a __pudge_all__ variable that contains classesianb2005-12-311-1/+5
* - documentation updates to make pudge output look nicercce2005-12-311-27/+41
* - fixes to make auto-documentation work nicercce2005-12-301-75/+129
* (no commit message)cce2005-12-301-60/+69
* - updating httpheaders so it is more reStructuredText compliantcce2005-12-301-16/+17
* (no commit message)cce2005-12-301-1/+2
* - removing 'return self' from delete()cce2005-12-301-2/+0
* - changed all HTTPHeader sub-classes to have a _ prefix, sincecce2005-12-301-43/+36
* (no commit message)cce2005-12-301-3/+3
* - fixing my awful spellingcce2005-12-301-16/+16
* - added concrete ContentRange headercce2005-12-301-6/+26
* - made things which are intended to be private start with underscorecce2005-12-291-57/+64
* (no commit message)cce2005-12-291-1/+1
* - moved collection searching code to resolve() andcce2005-12-291-29/+38
* - simplified HTTPHeaders by removing format()cce2005-12-291-45/+51
* - removing all entity headers for 304 responsecce2005-12-291-7/+13
* oopscce2005-12-291-2/+2
* - added Range.parse to httpheaderscce2005-12-291-38/+78
* - make ContentType and ContentLength pickup CGI environment variable ifcce2005-12-291-2/+25