Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The final piece: netlib -> mitproxy.net | Aldo Cortesi | 2016-10-20 | 18 | -2752/+0 |
| | |||||
* | netlib.exceptions.* -> mitmproxy.exceptions | Aldo Cortesi | 2016-10-20 | 3 | -4/+4 |
| | |||||
* | netlib.encoding -> netlib.http.encoding | Aldo Cortesi | 2016-10-20 | 2 | -1/+176 |
| | | | | Encoding is highly specific to http, and only used within this module. | ||||
* | netlib.utils -> netlib.check | Aldo Cortesi | 2016-10-20 | 2 | -5/+5 |
| | | | | | | Now only contains is_valid_[host,port] Intermediate step - this will be in mitproxy.net soon. | ||||
* | mitmproxy.types.[basethread,multidict,serializable] | Aldo Cortesi | 2016-10-20 | 5 | -7/+7 |
| | |||||
* | netlib.strutils -> mitmproxy.utils.strutils | Aldo Cortesi | 2016-10-20 | 3 | -3/+5 |
| | |||||
* | netlib.human -> mitmproxy.utils.human | Aldo Cortesi | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | remove empty lines at beginning of file | Thomas Kriechbaumer | 2016-10-17 | 8 | -8/+0 |
| | |||||
* | python3: clean up super and __future__ | Aldo Cortesi | 2016-10-17 | 12 | -22/+10 |
| | |||||
* | python3: clean up class brackets | Aldo Cortesi | 2016-10-17 | 2 | -3/+3 |
| | |||||
* | Zap object base class | Aldo Cortesi | 2016-10-17 | 2 | -3/+3 |
| | |||||
* | py2--: inline type info | Maximilian Hils | 2016-10-16 | 4 | -30/+22 |
| | |||||
* | First-order conversion to Python3-only | Aldo Cortesi | 2016-10-17 | 5 | -78/+40 |
| | | | | | | - Zap various occurrences of Python2 in docs and scripts - Remove six from netlib, and some other places where obvious project-wide search and replace works. | ||||
* | parse_set_cookie header returns an empty list if no cookies are found | Aldo Cortesi | 2016-09-28 | 1 | -9/+4 |
| | | | | This matches parse_cookie, and is more idiomatic. | ||||
* | Clarify that 'expires' values MUST have a comma now | Shadab Zafar | 2016-09-27 | 1 | -1/+4 |
| | |||||
* | Modify format_set_cookie_header to take cookie list | Shadab Zafar | 2016-09-27 | 2 | -15/+24 |
| | | | | and return a comma separated string of cookies | ||||
* | Fixup an error with indices | Shadab Zafar | 2016-09-27 | 1 | -1/+1 |
| | |||||
* | Refactor functions | Shadab Zafar | 2016-09-27 | 1 | -35/+26 |
| | |||||
* | Add a new pairs reader for SetCookie headers | Shadab Zafar | 2016-09-27 | 1 | -3/+15 |
| | |||||
* | Rename _read_pairs to _read_cookie_pairs | Shadab Zafar | 2016-09-27 | 1 | -3/+22 |
| | | | | We will have a separate _read_set_cookie_pairs | ||||
* | Rename _read_token to _read_key | Shadab Zafar | 2016-09-27 | 1 | -8/+8 |
| | | | | Since we also have a _read_value | ||||
* | Move CookieAttrs and SetCookie to top | Shadab Zafar | 2016-09-27 | 1 | -18/+14 |
| | |||||
* | Minor refactor | Shadab Zafar | 2016-09-27 | 1 | -2/+3 |
| | |||||
* | Add support for comma separated cookies | Shadab Zafar | 2016-09-27 | 1 | -30/+51 |
| | |||||
* | Merge pull request #1564 from mhils/issue-1554 | Maximilian Hils | 2016-09-21 | 1 | -9/+10 |
|\ | | | | | Fix Response.make content-length header | ||||
| * | fix Response.make content-length header | Maximilian Hils | 2016-09-21 | 1 | -9/+10 |
| | | |||||
* | | raise TypeError on invalid header assignment, fix #1562 | Maximilian Hils | 2016-09-21 | 1 | -0/+1 |
|/ | |||||
* | http2: improve framereader | Thomas Kriechbaumer | 2016-09-03 | 2 | -5/+10 |
| | |||||
* | Lint fix - minor | arjun23496 | 2016-08-31 | 1 | -2/+1 |
| | |||||
* | Lint fix - netlib headers | arjun23496 | 2016-08-31 | 1 | -4/+2 |
| | |||||
* | minor bug fix header replace | arjun23496 | 2016-08-31 | 1 | -3/+7 |
| | |||||
* | Added tests for replace in request,message,header | arjun23496 | 2016-08-31 | 1 | -0/+2 |
| | |||||
* | Minor bug fix - messages.py replace | arjun23496 | 2016-08-29 | 1 | -1/+1 |
| | |||||
* | Added replace for request and headers - Fixed missing replace option | arjun23496 | 2016-08-29 | 2 | -5/+6 |
| | |||||
* | Added count argument for replace for contents in body | arjun23496 | 2016-08-26 | 1 | -2/+2 |
| | |||||
* | wrap long lines | Thomas Kriechbaumer | 2016-08-24 | 2 | -4/+24 |
| | |||||
* | introduce Response.make for simple response creation | Maximilian Hils | 2016-08-23 | 1 | -5/+49 |
| | |||||
* | Merge pull request #1480 from mhils/reverse-proxy-auth | Thomas Kriechbaumer | 2016-08-16 | 1 | -3/+13 |
|\ | | | | | Add basic auth support for reverse proxy mode | ||||
| * | add basic auth support for reverse proxy mode | Maximilian Hils | 2016-08-13 | 1 | -3/+13 |
| | | |||||
* | | Simplify cookies.is_expired | Shadab Zafar | 2016-08-15 | 1 | -16/+7 |
| | | |||||
* | | Add a function to get cookie expiration time | Shadab Zafar | 2016-08-15 | 1 | -0/+26 |
| | | |||||
* | | Add method to group pairs by cookies | Shadab Zafar | 2016-08-15 | 1 | -0/+31 |
|/ | |||||
* | fix tests | Maximilian Hils | 2016-08-04 | 1 | -0/+1 |
| | |||||
* | simplify contentview logic | Maximilian Hils | 2016-08-04 | 1 | -0/+1 |
| | |||||
* | Integrated encode/decoder for brotli | Angelo Agatino Nicolosi | 2016-07-30 | 2 | -2/+2 |
| | |||||
* | improve query/path_components getter/setter | Maximilian Hils | 2016-07-24 | 2 | -19/+49 |
| | |||||
* | remove content caching in netlib.http.Message | Maximilian Hils | 2016-07-23 | 1 | -84/+31 |
| | |||||
* | fix test_view_urlencoded | Maximilian Hils | 2016-07-23 | 1 | -0/+1 |
| | |||||
* | fix content view cache invalidation | Maximilian Hils | 2016-07-21 | 1 | -6/+0 |
| | |||||
* | fix-1366 | Thomas Kriechbaumer | 2016-07-16 | 1 | -3/+2 |
| |