summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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
* Link some more attributesBert JW Regeer2017-11-201-4/+4
|
* 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
* Merge pull request #338 from whiteroses/update-fix-accept-headersBert JW Regeer2017-11-201-20/+61
|\ | | | | Update and fix Accept* headers handling
| * Remove hyphen, as the Accept header itself has no hyphen.Ira Lun2017-08-291-1/+1
| |
| * Remove MIMEAccept, MIMENilAccept and NilAccept.Ira Lun2017-08-291-12/+0
| |
| * Add create_accept_header, docs and tests.Ira Lun2017-08-291-0/+2
| |
| * Add AcceptInvalidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptNoHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptValidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Rewrite Accept class, and add docs and tests.Ira Lun2017-08-291-0/+4
| |
| * Add create_accept_charset_header, docs and tests.Ira Lun2017-08-291-0/+3
| |
| * Add AcceptCharsetInvalidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptCharsetNoHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptCharsetValidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Rewrite AcceptCharset class, and add docs and tests.Ira Lun2017-08-291-2/+1
| | | | | | | | | | | | From the old AcceptCharset.parse: 'ISO-8859-1' was a default charset in early versions of HTTP/1.1, but this is no longer the case (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Charset)
| * Remove now-unused NoAccept class.Ira Lun2017-08-291-3/+0
| |
| * Add create_accept_encoding_header, docs and tests.Ira Lun2017-08-291-0/+3
| |
| * Add AcceptEncodingInvalidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptEncodingNoHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Add AcceptEncodingValidHeader class, docs and tests.Ira Lun2017-08-291-0/+5
| |
| * Rewrite AcceptEncoding class and add docs and tests.Ira Lun2017-08-291-2/+2
| |
* | Update and fix links per `make linkcheck` (#334)Steve Piercy2017-10-298-62/+56
|/ | | | | | | | | | | | | * update intersphinx mapping for latest python * update links to python PEP333 and datetime * update links per make linkcheck * update links per make linkcheck - pythonpaste.org has been down since 2016-11-09 https://bitbucket.org/ianb/paste/issues/20/pythonpasteorg-is-down
* Move .parse from AcceptLanguageValidHeader to AcceptLanguage.Ira Lun2017-08-241-2/+5
|
* Remove comment.Ira Lun2017-07-251-8/+0
| | | | | After switching .header_value and .parsed to read-only properties, we no longer need to use autoinstanceattribute.
* Set autodoc_member_order.Ira Lun2017-07-251-0/+2
|
* Make .header_value and .parsed read-only properties.Ira Lun2017-07-251-21/+7
| | | | | As mentioned in the docstrings of the classes, the objects should not be modified.
* Remove :members: option.Ira Lun2017-07-241-1/+0
| | | | As AcceptLanguage class currently has no members.
* Remove :inherited-members: option.Ira Lun2017-07-231-1/+0
|
* Update documentation.Ira Lun2017-07-221-4/+6
|
* Add create_accept_language_header().Ira Lun2017-07-221-0/+2
|
* Add AcceptLanguageInvalidHeader class, __init__, test and doc.Ira Lun2017-07-171-2/+10
|
* Add AcceptLanguageNoHeader class, __init__, test and documentation.Ira Lun2017-07-171-0/+7
|
* Add AcceptLanguageValidHeader.quality().Ira Lun2017-07-161-1/+2
| | | | | This is mostly a copy of `Accept.quality`, with call to ``self._match`` updated to ``self._old_match``, and documentation added.
* Add AcceptLanguageValidHeader.best_match.Ira Lun2017-07-151-1/+1
| | | | | | This is mostly a copy of `Accept.best_match`, but with the call to ``self._match()`` updated to ``self._old_match()``, and with additional documentation.
* Add AcceptLanguageValidHeader.__contains__.Ira Lun2017-07-131-1/+1
| | | | | | | | | | This is mostly a copy of AcceptLanguage.__contains__. Changes: - It calls ._old_match() instead of ._match(). - It returns False instead of None when no matches found. - Additional documentation and pending-deprecation warning. - Tests changed to use @pytest.mark.parametrize.
* Add AcceptLanguageValidHeader.__iter__.Ira Lun2017-07-131-1/+1
| | | | | This is a copy of AcceptLanguage.__iter__, with tests (there were not any before) and additional documentation.
* Add AcceptLanguageValidHeader.lookup().Ira Lun2017-07-111-1/+1
|
* Add AcceptLanguageValidHeader.basic_filtering().Ira Lun2017-07-071-1/+1
|
* Document instance attributes of AcceptLanguageValidHeader.Ira Lun2017-07-071-0/+13
|
* Add AcceptLanguageValidHeader class with .__init__ and .parse().Ira Lun2017-07-061-0/+4
|
* Document acceptparse.py using :members: and :inherited-members:.Ira Lun2017-06-211-27/+14
|
* Remove comment.Ira Lun2017-06-181-5/+0
|