aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/builtins/dumper.py
Commit message (Collapse)AuthorAgeFilesLines
* addons.Addons -> addonmanager, builtins -> addonsAldo Cortesi2016-10-191-253/+0
|
* dumper: limit url lengthMaximilian Hils2016-10-171-0/+2
|
* remove empty lines at beginning of fileThomas Kriechbaumer2016-10-171-1/+0
|
* python3: clean up super and __future__Aldo Cortesi2016-10-171-1/+0
|
* python3: clean up class bracketsAldo Cortesi2016-10-171-1/+1
|
* Zap object base classAldo Cortesi2016-10-171-1/+1
|
* fix flowfilter.match argsThomas Kriechbaumer2016-10-031-1/+1
|
* use flowfilter.matchThomas Kriechbaumer2016-10-031-1/+1
|
* rename mitmproxy.filt -> mitmproxy.flowfilterThomas Kriechbaumer2016-10-031-3/+3
|
* Misc cleanupsAldo Cortesi2016-09-121-0/+8
|
* fix testsMaximilian Hils2016-08-041-1/+0
|
* simplify contentview logicMaximilian Hils2016-08-041-27/+9
|
* make sure to escape errors printed to the consoleMaximilian Hils2016-07-251-1/+2
|
* improve dumper addon text alignment (#1415)Maximilian Hils2016-07-231-34/+45
|
* Addon iface: .configure(options) -> .configure(options, updated)Aldo Cortesi2016-07-231-1/+1
|
* dumper: correctly detect request replayAldo Cortesi2016-07-171-2/+4
| | | | Fixes #1361
* Some mild refactoring of dumper.pyAldo Cortesi2016-07-171-19/+46
|
* Extract console dump functionality into an addonAldo Cortesi2016-07-171-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.