Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | addons.Addons -> addonmanager, builtins -> addons | Aldo Cortesi | 2016-10-19 | 1 | -253/+0 |
| | |||||
* | dumper: limit url length | Maximilian Hils | 2016-10-17 | 1 | -0/+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 |
| | |||||
* | python3: clean up class brackets | Aldo Cortesi | 2016-10-17 | 1 | -1/+1 |
| | |||||
* | Zap object base class | Aldo Cortesi | 2016-10-17 | 1 | -1/+1 |
| | |||||
* | fix flowfilter.match args | Thomas Kriechbaumer | 2016-10-03 | 1 | -1/+1 |
| | |||||
* | use flowfilter.match | Thomas Kriechbaumer | 2016-10-03 | 1 | -1/+1 |
| | |||||
* | rename mitmproxy.filt -> mitmproxy.flowfilter | Thomas Kriechbaumer | 2016-10-03 | 1 | -3/+3 |
| | |||||
* | Misc cleanups | Aldo Cortesi | 2016-09-12 | 1 | -0/+8 |
| | |||||
* | fix tests | Maximilian Hils | 2016-08-04 | 1 | -1/+0 |
| | |||||
* | simplify contentview logic | Maximilian Hils | 2016-08-04 | 1 | -27/+9 |
| | |||||
* | make sure to escape errors printed to the console | Maximilian Hils | 2016-07-25 | 1 | -1/+2 |
| | |||||
* | improve dumper addon text alignment (#1415) | Maximilian Hils | 2016-07-23 | 1 | -34/+45 |
| | |||||
* | Addon iface: .configure(options) -> .configure(options, updated) | Aldo Cortesi | 2016-07-23 | 1 | -1/+1 |
| | |||||
* | dumper: correctly detect request replay | Aldo Cortesi | 2016-07-17 | 1 | -2/+4 |
| | | | | Fixes #1361 | ||||
* | Some mild refactoring of dumper.py | Aldo Cortesi | 2016-07-17 | 1 | -19/+46 |
| | |||||
* | Extract console dump functionality into an addon | Aldo Cortesi | 2016-07-17 | 1 | -0/+223 |
This removes all the code that deals with printing flows to screen from dump.py into a self-contained addon. - This fixes a bug - by moving dumping into an addon, we now dump flows AFTER addon transformation, so we can see the changes made. - We get dumping "for free" in other places by simply adding the addon. It's now easy to add dumping to console to mitmweb for debugging and development. The same goes for external projects that derive from master. - We also get major benefits in clarity for a frankly hairy part of our project. Mitmdump is much clearer, and all the hairyness is now isolated for further refactoring. |