Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Allow 'filename*' to override 'filename' per RFC. | Jason R. Coombs | 2018-08-13 | 1 | -1/+1 | |
| | | | ||||||
| * | | * Fix _cpreqbody.Entity to handle Content-Disposition filename* with encoding | pawciobiel | 2018-03-13 | 3 | -11/+41 | |
| | | | | | | | | | | | | | | | * Change _cpcompat.unquote_qs to work with unicode on py2 - fix for #1694 | |||||
| | * | Add extra explanation for _cache.delete() | Martin van Es | 2018-06-06 | 1 | -4/+4 | |
| | | | ||||||
| | * | Rewrite comments with some punctuation to make it read more clearly. I still ↵ | Jason R. Coombs | 2018-06-06 | 1 | -0/+1 | |
| | | | | | | | | | | | | don't understand why deleting the cache is necessary. The previous comment said 'an empty response will be cached', but that seems inconsistent with the 'if body' block. | |||||
| | * | Rewrite comments with some punctuation to make it read more clearly. I still ↵ | Jason R. Coombs | 2018-06-06 | 1 | -5/+7 | |
| | | | | | | | | | | | | don't understand why deleting the cache is necessary. The previous comment said 'an empty response will be cached', but that seems inconsistent with the 'if body' block. | |||||
| | * | Extract function for _flush_body. Use 'consume' to consume an iterator. Use ↵ | Jason R. Coombs | 2018-06-06 | 2 | -5/+13 | |
| | | | | | | | | | | | | 'iter' to make iterator from iterable. | |||||
| | * | Fix static file cached 304 response | Martin van Es | 2018-06-06 | 2 | -4/+15 | |
| |/ |/| | ||||||
* | | Just open the file using io module. Decode as locale.getpreferredencoding ↵ | Jason R. Coombs | 2018-05-29 | 1 | -1/+2 | |
| | | | | | | | | (default). | |||||
* | | Construct and assign abs_urls directly, rather than using init/append loop. | Jason R. Coombs | 2018-05-29 | 1 | -7/+7 | |
| | | ||||||
* | | Expand the documentation to indicate that these functions should be avoided. | Jason R. Coombs | 2018-05-29 | 1 | -0/+6 | |
| | | ||||||
* | | Add workaround for pyyaml bug | Jason R. Coombs | 2018-05-29 | 1 | -1/+3 | |
| | | ||||||
* | | Fail with HTTP 400 for invalid headers | Sviatoslav Sydorenko | 2018-05-28 | 2 | -1/+21 | |
| | | | | | | | | | | | | | | | | | | | | Test malformed Accept-Charset quality values. Fixes #1370 Closes #1707 Co-authored-by: Zach Seils (seils) <seils@cisco.com> Co-authored-by: Zach Seils <zachseils@gmail.com> | |||||
* | | Don't attempt to make None absolute. Fixes #1697. | Jason R. Coombs | 2018-05-28 | 1 | -1/+1 | |
| | | ||||||
* | | Add test capturing failure. Ref #1697. | Jason R. Coombs | 2018-05-28 | 1 | -0/+14 | |
| | | ||||||
* | | Extract module to file mapping as _file_for_module classmethod. | Jason R. Coombs | 2018-05-28 | 1 | -19/+32 | |
| | | | | | | | | Avoids condition where zip check always produces an AttributeError in the failure stack even when irrelevant. | |||||
* | | Use filter instead of if/continue block. | Jason R. Coombs | 2018-05-28 | 1 | -3/+4 | |
| | | ||||||
* | | Whitelist mkdir. Fixes #1713 | Jason R. Coombs | 2018-05-28 | 1 | -0/+1 | |
| | | ||||||
* | | Fix linter complaints | Sviatoslav Sydorenko | 2018-05-26 | 2 | -2/+1 | |
| | | ||||||
* | | Fix property setters | Sviatoslav Sydorenko | 2018-05-26 | 8 | -16/+16 | |
| | | ||||||
* | | Remove deprecated properties | Sviatoslav Sydorenko | 2018-05-26 | 3 | -32/+8 | |
| | | ||||||
* | | Upgrade @property decorator syntax | Sviatoslav Sydorenko | 2018-05-26 | 9 | -91/+109 | |
| | | ||||||
* | | Drop unused sys import from tools | Sviatoslav Sydorenko | 2018-05-21 | 1 | -2/+0 | |
| | | ||||||
* | | Replace py3 check with six in tools | Sviatoslav Sydorenko | 2018-05-21 | 1 | -1/+3 | |
| | | ||||||
* | | Drop deprecated basic_auth and digest_auth | Sviatoslav Sydorenko | 2018-05-21 | 4 | -520/+9 | |
| | | | | | | | | | | | | Also remove ``httpauth`` module Resolves #1688 | |||||
* | | Don't try collecting tests in docsv15.0.0 | Jason R. Coombs | 2018-05-11 | 1 | -0/+7 | |
| | | ||||||
* | | Need to ignore .eggs also; why didn't this fail on my machine? | Jason R. Coombs | 2018-05-11 | 1 | -1/+1 | |
| | | ||||||
* | | If it's not one lint, it's another. | Jason R. Coombs | 2018-05-11 | 1 | -1/+1 | |
| | | ||||||
* | | The introduction of ./conftest.py seems to have caused 'tests' to be ↵ | Jason R. Coombs | 2018-05-11 | 1 | -4/+12 | |
| | | | | | | | | prepended to the path. As a result, remove_sys_path_0 no longer worked as expected. Re-write that fixture to accomplish the intended goal. | |||||
* | | One step forward, two steps back. Try this. | Jason R. Coombs | 2018-05-11 | 1 | -3/+1 | |
| | | ||||||
* | | Add docstring. | Jason R. Coombs | 2018-05-11 | 1 | -0/+5 | |
| | | ||||||
* | | Remove components from webtest no longer presented by cheroot. Fixes #1708. | Jason R. Coombs | 2018-05-11 | 2 | -3/+10 | |
| | | ||||||
* | | Initialize in a function so it's not invoked on import | Jason R. Coombs | 2018-05-11 | 1 | -22/+28 | |
| | | ||||||
* | | Remove reference to timeout_monitor, removed | Jason R. Coombs | 2018-05-11 | 1 | -1/+0 | |
| | | ||||||
* | | Re-enable doctests. Ref #1708. | Jason R. Coombs | 2018-05-11 | 2 | -1/+5 | |
| | | ||||||
* | | Update GitHub issue template | Sviatoslav Sydorenko | 2018-04-22 | 1 | -1/+1 | |
| | | ||||||
* | | Upgrade GitHub PR template | Sviatoslav Sydorenko | 2018-04-22 | 1 | -1/+24 | |
| | | ||||||
* | | Duplicate store_test_results step in Circle CI | Sviatoslav Sydorenko | 2018-04-22 | 1 | -0/+4 | |
| | | ||||||
* | | Be more specific about test results dir | Sviatoslav Sydorenko | 2018-04-22 | 1 | -2/+2 | |
| | | ||||||
* | | Store test results as artifacts in Circle CI | Sviatoslav Sydorenko | 2018-04-22 | 1 | -0/+4 | |
| | | ||||||
* | | Rename junit file to results.xml | Sviatoslav Sydorenko | 2018-04-22 | 3 | -3/+3 | |
| | | ||||||
* | | Fix store_test_results for macOS @ Circle CI | Sviatoslav Sydorenko | 2018-04-22 | 1 | -1/+1 | |
| | | ||||||
* | | Fix Circle CI store_test_results step | Sviatoslav Sydorenko | 2018-04-22 | 1 | -1/+1 | |
| | | ||||||
* | | Enable test result rendering in Circle CI | Sviatoslav Sydorenko | 2018-04-22 | 5 | -3/+8 | |
| | | ||||||
* | | Update doc about auth methods | Sviatoslav Sydorenko | 2018-04-22 | 1 | -3/+34 | |
| | | ||||||
* | | Support unicode in login/password during HTTP Authv14.2.0 | Sviatoslav Sydorenko | 2018-04-22 | 7 | -307/+226 | |
|\ \ | | | | | | | | | | Ref: :rfc:`7617` | |||||
| * | | Add info about v14.2.0 to changelogbugfix/1680-unicode-in-http-auth | Sviatoslav Sydorenko | 2018-04-22 | 1 | -0/+6 | |
| | | | ||||||
| * | | Add tools.auth_digest.accept_charset to examples | Sviatoslav Sydorenko | 2018-04-22 | 2 | -1/+3 | |
| | | | ||||||
| * | | Add tools.auth_basic.accept_charset to examples | Sviatoslav Sydorenko | 2018-04-22 | 2 | -1/+3 | |
| | | | ||||||
| * | | Reuse repeatable code in test_auth_digest | Sviatoslav Sydorenko | 2018-04-22 | 1 | -75/+30 | |
| | | | ||||||
| * | | Partially refactor test_auth_digest | Sviatoslav Sydorenko | 2018-04-22 | 1 | -40/+31 | |
| | | |