Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The final piece: netlib -> mitproxy.net | Aldo Cortesi | 2016-10-20 | 3 | -70/+0 |
| | |||||
* | netlib.exceptions.* -> mitmproxy.exceptions | Aldo Cortesi | 2016-10-20 | 1 | -2/+2 |
| | |||||
* | remove empty lines at beginning of file | Thomas Kriechbaumer | 2016-10-17 | 1 | -1/+0 |
| | |||||
* | python3: clean up super and __future__ | Aldo Cortesi | 2016-10-17 | 1 | -1/+0 |
| | |||||
* | http2: improve framereader | Thomas Kriechbaumer | 2016-09-03 | 2 | -5/+10 |
| | |||||
* | py3++, multidict fixes | Maximilian Hils | 2016-07-06 | 1 | -3/+3 |
| | | | | | | | | | | | | This commit improves Python 3 compatibility and fixes two multidict issues: 1. Headers.items(multi=True) now decodes fields 2. MultiDict.clear(item) has been removed, as Python's MutableMapping already defines .clear() with different semantics. This is confusing for everyone who expects a dict-like object. `.pop("attr", None)` is not fantastic, but it's the Python way to do it. | ||||
* | py3: fix bytes vs. str | Thomas Kriechbaumer | 2016-07-03 | 1 | -4/+4 |
| | |||||
* | h2: move header parsing to netlib | Shadab Zafar | 2016-07-03 | 2 | -0/+39 |
| | |||||
* | http2: improve error handling in tests | Thomas Kriechbaumer | 2016-06-22 | 1 | -1/+2 |
| | |||||
* | move custom HTTP/2 stack from netlib to pathod | Thomas Kriechbaumer | 2016-06-17 | 2 | -434/+0 |
| | |||||
* | Py3: fix http2 bytes issue | Shadab Zafar | 2016-06-15 | 1 | -2/+2 |
| | |||||
* | Merge pull request #1183 from mitmproxy/module-imports | Aldo Cortesi | 2016-06-01 | 1 | -1/+3 |
|\ | | | | | use module-level imports only | ||||
| * | use module-level imports only | Maximilian Hils | 2016-05-31 | 1 | -1/+3 |
| | | |||||
* | | Reorganise netlib imports according to Google Style Guide | Aldo Cortesi | 2016-06-01 | 1 | -10/+13 |
|/ | |||||
* | Fix tests harder | Aldo Cortesi | 2016-05-31 | 1 | -2/+2 |
| | |||||
* | http2.frame -> http2.framereader | Aldo Cortesi | 2016-05-31 | 1 | -0/+0 |
| | |||||
* | Module is part of the name - url.decode, not url.urldecode | Aldo Cortesi | 2016-05-31 | 1 | -1/+1 |
| | | | | A pattern we need to use far more often in the codebase | ||||
* | Extract url functions from netlib.utils and move to netlib.http.url | Aldo Cortesi | 2016-05-31 | 1 | -2/+2 |
| | |||||
* | Start cleaning up netlib.utils | Aldo Cortesi | 2016-05-31 | 2 | -29/+51 |
| | | | | | - Remove http2 functions, move to http2.frame - Remove Serializable, move to netlib.basetypes | ||||
* | Improve handling of pseudo-headers | Aldo Cortesi | 2016-05-31 | 1 | -6/+8 |
| | | | | | | | | | - The canonical source for :method, :scheme and :path are the .method, .scheme and .path attributes on the request object. - These pseudo-headers are stripped after reading the request, and re-inserted just before sending. - The :authority header remains, and should be handled analagously to the Host header in HTTP1 with respect to display and user interaction. | ||||
* | more style cleanup | Thomas Kriechbaumer | 2016-05-29 | 1 | -2/+2 |
| | | | | Use this to check: flake8 --count mitmproxy netlib pathod examples test | ||||
* | add MultiDict | Maximilian Hils | 2016-05-18 | 1 | -6/+6 |
| | | | | | | | | 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. | ||||
* | form_(in|out) -> first_line_format | Maximilian Hils | 2016-04-02 | 1 | -4/+4 |
| | |||||
* | combine projects | Maximilian Hils | 2016-02-18 | 2 | -0/+432 |