aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console.py
Commit message (Collapse)AuthorAgeFilesLines
* Add tab completion for save and load path specs.Aldo Cortesi2011-01-271-4/+79
|
* Fix UI sync bugs introduced by flow serialization.Aldo Cortesi2011-01-261-2/+6
|
* Add saving and loading of complete flows for later replay and analysis.Aldo Cortesi2011-01-261-35/+41
|
* Abstract flow management out of the interactive code.Aldo Cortesi2011-01-251-180/+19
|
* Add mitmproxy command line flags for a number of filter expressions.Aldo Cortesi2010-03-011-4/+28
| | | | For now, these are supported: intercept, limit, sticky cookies, beep
* Housekeeping: todo updates, move put handler_ methods together in console.py.Aldo Cortesi2010-03-011-10/+10
|
* Just make using the user's terminal background the default.Aldo Cortesi2010-03-011-22/+16
| | | | | | This just makes sense. Later on, we'll have a config file in which users can set the palette, so that they can over-ride the default background if they really want.
* Don't intercept replays - it makes no sense to do so.Aldo Cortesi2010-03-011-16/+12
|
* Don't show error if user tries to save, but specifies no path.Aldo Cortesi2010-03-011-0/+2
|
* Add "A" key, to accept all intercepted connections.Aldo Cortesi2010-03-011-3/+14
|
* Make beeping more general.Aldo Cortesi2010-03-011-18/+17
| | | | | | | | | | | | | | | | - The "B" key now sets a filter pattern. Whenever the filter matches, the terminal beeps. - The beep specification is now stored in the State object, where I want to keep all mutable state. - I've removed the startup flags for beeping for now. We probably want to let users specify a number of options on startup, including interception patterns and limits. When we do this, we should also separate out the dumping and curses programs, because many of these options will only make sense in one of the two. - This isn't an exact replacement for the beep functionality I ripped out, because specifying beeping on intercept is slightly cumbersome (you need to re-specify the intercept pattern using B). Sorry - we'll add a better way soon.
* Maintain compatibility with 0.9.8.x of urwid.Aldo Cortesi2010-03-011-16/+36
| | | | | This is the most common deployed version, so it's worth doing a bit of extra work to make sure mitmproxy runs smoothly under it.
* Added beeping. --bireq and --bires enables beeping on intercepted ↵Thomas Roth2010-02-261-3/+20
| | | | requests/responses.
* Added a 'keep terminal background' option (-t), so that you can use it with ↵Thomas Roth2010-02-261-25/+34
| | | | your own background color. (Foreground color following.)
* Added exception if starting editor fails and added vi as default editor.Thomas Roth2010-02-251-1/+11
|
* Fixes a bug which caused a crash if you've tried to accept a connection ↵Thomas Roth2010-02-241-5/+6
| | | | which wasn't intercepted.
* Fixes blocking problem with a workaround which sets a timeout of 0.1 seconds.Thomas Roth2010-02-241-0/+1
|
* Additional fix for compatibility with Urwid >0.9.9Thomas Roth2010-02-241-1/+1
|
* Fixes compatibility with Urwid >0.9.9Thomas Roth2010-02-241-9/+9
|
* Add some error handling for connection saving.Aldo Cortesi2010-02-241-5/+8
|
* Save a request or response to file.Aldo Cortesi2010-02-241-0/+19
| | | | | Ideally, we'd have a nice selection widget with tab completion and the like. Maybe later...
* Initial checkin.Aldo Cortesi2010-02-161-0/+1065