Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test & examples: zap six | Aldo Cortesi | 2016-10-17 | 1 | -6/+0 |
| | |||||
* | Lint fix - replace tests | arjun23496 | 2016-08-31 | 1 | -2/+3 |
| | |||||
* | Added tests for replace in request,message,header | arjun23496 | 2016-08-31 | 1 | -1/+10 |
| | |||||
* | py3++ | Maximilian Hils | 2016-07-07 | 1 | -4/+4 |
| | |||||
* | fix tests | Maximilian Hils | 2016-05-28 | 1 | -1/+1 |
| | |||||
* | Clean un-needed imports | Aldo Cortesi | 2016-05-21 | 1 | -2/+0 |
| | |||||
* | improve MultiDict, add ImmutableMultiDict, adjust response.cookies | Maximilian Hils | 2016-05-18 | 1 | -2/+2 |
| | |||||
* | add MultiDict | Maximilian Hils | 2016-05-18 | 1 | -31/+30 |
| | | | | | | | | This commit introduces MultiDict, a multi-dictionary similar to ODict, but with improved semantics (as in the Headers class). MultiDict fixes a few issues that were present in the Request/Response API. In particular, `request.cookies["foo"] = "bar"` has previously been a no-op, as the cookies property returned a mutable _copy_ of the cookies. | ||||
* | Merge pull request #1121 from Kriechi/fix-cookies | Thomas Kriechbaumer | 2016-05-11 | 1 | -1/+1 |
|\ | | | | | improve cookie parsing | ||||
| * | improve cookie parsing | Thomas Kriechbaumer | 2016-05-10 | 1 | -1/+1 |
| | | | | | | | | | | allows '/' to be within a cookie name removes deprecated cookie getter/setter fixes #1118 | ||||
* | | actually fix tests | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
| | | |||||
* | | Revert "fix tests" | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
| | | | | | | | | This reverts commit f315dc1eb9f4701548fd57bbb38de1e9caa34e40. | ||||
* | | fix tests | Maximilian Hils | 2016-05-10 | 1 | -2/+2 |
|/ | |||||
* | fix #1120 | Maximilian Hils | 2016-05-09 | 1 | -0/+12 |
| | |||||
* | netlib: request.path can be None | Maximilian Hils | 2016-03-20 | 1 | -1/+6 |
| | |||||
* | Fixup more tests | Shadab Zafar | 2016-02-18 | 1 | -4/+7 |
| | |||||
* | Use host header values only when the ports match | Shadab Zafar | 2016-02-18 | 1 | -2/+6 |
| | |||||
* | Handle port numbers in host header | Shadab Zafar | 2016-02-17 | 1 | -0/+4 |
| | | | | from: https://github.com/mitmproxy/netlib/pull/121 | ||||
* | Fix failing unit tests caused by a69d223b | Will Coster | 2016-02-15 | 1 | -4/+4 |
| | |||||
* | Preserve host header when modifying request path | Will Coster | 2016-02-15 | 1 | -2/+7 |
| | | | | | | | | | | | | | Currently the path_components and query setters of the Request object use the url setter under the hood. The url setter updates all parts of the URL including the host. If the host header and the host in the request URL are different (as is common when making HTTPS requests) then the host header will be updated to the value in the URL as a result of modifying the path. This change fixes this problem by modifying the query and path_components setters to not use the url setter and instead directly update the path field. | ||||
* | move tests into shared folder | Maximilian Hils | 2016-02-15 | 1 | -0/+238 |