summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add support for immutable cache-control response headerimmutable-cache-controlMichael Merickel2018-01-093-1/+10
|
* I can't spellBert JW Regeer2018-01-011-1/+1
|
* Prep for 1.8.0rc11.8.0rc1Bert JW Regeer2018-01-012-3/+3
|
* Add Whats New in WebOb 1.8 documentBert JW Regeer2018-01-012-0/+100
|
* Add reference to sectionBert JW Regeer2018-01-011-1/+4
|
* Update copyright on documentationBert JW Regeer2018-01-011-2/+2
|
* Remove Python 3.3 supportBert JW Regeer2018-01-014-5/+7
| | | | Thanks pytest for the reminder
* Change Accept header documentation slightlyBert JW Regeer2018-01-011-9/+13
| | | | | | | This moves around where the convenience functions are located so that they are nearer to the top. Also adds deprecation information for MIMEAccept
* Verify warning is raised when calling MIMEAccept's initBert JW Regeer2018-01-011-3/+15
|
* Add MIMEAccept shim that warns about deprecationBert JW Regeer2018-01-011-1/+21
|
* Remove tests for deprecated functionsBert JW Regeer2017-11-202-7/+0
|
* PEP8Bert JW Regeer2017-11-201-10/+13
|
* Remove deprecations that were raisingBert JW Regeer2017-11-201-21/+1
|
* Support wsgi.input_terminatedBert JW Regeer2017-11-201-3/+14
| | | | | | This has grown support in uWSGI and we would like to support it as well. Closes #278
* Link some more attributesBert JW Regeer2017-11-201-4/+4
|
* Fix bad indentationBert JW Regeer2017-11-201-1/+1
|
* Explicitly import all the things, instead of doing import *Bert JW Regeer2017-11-201-3/+17
|
* Add Py3 only noticeBert JW Regeer2017-11-201-0/+5
|
* Allow linking to referenceBert JW Regeer2017-11-201-0/+2
|
* Cleanup index.txt documentationBert JW Regeer2017-11-201-107/+108
|
* Add information about MultiDict to the multidict API docsBert JW Regeer2017-11-202-23/+22
|
* Code in references.txt is now Python 3Bert JW Regeer2017-11-201-109/+84
| | | | And it passes doctest again
* Update CHANGES.txt to warn about Accept handling differencesBert JW Regeer2017-11-201-5/+10
|
* Merge pull request #338 from whiteroses/update-fix-accept-headersBert JW Regeer2017-11-206-836/+7807
|\ | | | | Update and fix Accept* headers handling
| * Add MIMEAccept for backward compatibility.Ira Lun2017-11-061-0/+3
| |
| * Place methods in alphabetical order.Ira Lun2017-08-291-45/+45
| |
| * Remove hyphen, as the Accept header itself has no hyphen.Ira Lun2017-08-291-1/+1
| |
| * Place imports in alphabetical order.Ira Lun2017-08-291-3/+3
| |
| * Place imports in alphabetical order.Ira Lun2017-08-291-3/+3
| |
| * List possible types for all header subclasses.Ira Lun2017-08-291-6/+6
| |
| * Fix typo.Ira Lun2017-08-291-1/+1
| |
| * Improve AcceptLanguageValidHeader.basic_filtering.Ira Lun2017-08-292-99/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The main change here is to simplify the handling of duplicate ranges in the header. The RFC does not specify what to do when the same range appears in the header more than once, possibly with different qvalues and giving conflicting information. Previously, we chose which of the possibly conflicting versions of the range to use for matching by first checking if there was one with q=0, which would take priority; if one with q=0 was not found, we chose the one with the highest qvalue. Having given it a lot more thought, it now seems clear that this kind of special handling is not necessary -- the simplest way to handle it is to take the first appearance of the range in the header (from the left) and simple use that for matching.
| * Correct method calls in examples.Ira Lun2017-08-291-2/+2
| |
| * Only retrieve qvalue, as we do not need language_range.Ira Lun2017-08-291-4/+2
| |
| * Fix markup.Ira Lun2017-08-291-15/+15
| |
| * Update module docstring.Ira Lun2017-08-291-7/+3
| |
| * Remove obsolete regex.Ira Lun2017-08-291-3/+0
| |
| * Remove unused imports.Ira Lun2017-08-291-4/+0
| |
| * Fix assert.Ira Lun2017-08-291-1/+1
| | | | | | | | | | '' is a valid value for the Accept header, and bool(AcceptValidHeader) is True.
| * Update import and isinstance test.Ira Lun2017-08-291-2/+2
| |
| * Remove the unused _check_offer.Ira Lun2017-08-291-3/+0
| |
| * Remove MIMEAccept, MIMENilAccept and NilAccept.Ira Lun2017-08-292-169/+0
| |
| * Update processing of Accept header.Ira Lun2017-08-291-3/+6
| |
| * Remove obsolete tests.Ira Lun2017-08-291-340/+0
| |
| * Add tests for request.accept.Ira Lun2017-08-291-0/+23
| |
| * Rewrite accept_property and add tests.Ira Lun2017-08-293-26/+240
| |
| * Add create_accept_header, docs and tests.Ira Lun2017-08-293-0/+45
| |
| * Add AcceptInvalidHeader class, docs and tests.Ira Lun2017-08-293-0/+517
| |
| * Add AcceptNoHeader class, docs and tests.Ira Lun2017-08-293-0/+504
| |
| * Add _AcceptInvalidOrNoHeader class.Ira Lun2017-08-291-0/+202
| |