aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* fix #568Maximilian Hils2015-04-261-0/+1
|
* console: more consistent view stack managementAldo Cortesi2015-04-171-40/+55
|
* console: add a -l flag to set the limit on startupAldo Cortesi2015-04-151-0/+4
|
* Refactor flow list state managementAldo Cortesi2015-04-071-14/+6
| | | | | - Use signal mechanism for state synchronisation - Move "Copy to clipboard" shortcut to "P"
* consone: don't enter Options if it's already openAldo Cortesi2015-04-071-0/+3
|
* console: All palettes now explicitly set a background colourAldo Cortesi2015-04-071-1/+3
| | | | | There's a new option --palette-transparent to turn this off if you want to use your own terminal background.
* console: palette picker for the options screenAldo Cortesi2015-04-071-4/+18
|
* console: TCP proxy patterns to new options screenAldo Cortesi2015-04-061-4/+0
|
* console: scripts to new options screenAldo Cortesi2015-04-061-0/+1
|
* console: ignore patterns to new options screen.Aldo Cortesi2015-04-061-4/+0
|
* Minimal help context for optionsAldo Cortesi2015-04-031-1/+1
|
* console: C to clear all options, correct footer in options screenAldo Cortesi2015-04-031-1/+1
|
* console: basic options pageAldo Cortesi2015-04-031-19/+11
|
* console: fix a crash that sometimes occurs when setting a limitAldo Cortesi2015-04-011-0/+2
|
* console: improve handling of help contexts, fix key bindings in flow viewsAldo Cortesi2015-04-011-12/+22
|
* Update statusbar when flow list is cleared.Aldo Cortesi2015-03-301-0/+1
|
* Add flow detail view as a tab in the flow viewAldo Cortesi2015-03-291-9/+0
|
* console: add a tabs widget, and use it for flowview.Aldo Cortesi2015-03-291-4/+3
|
* Keep record of last search termAldo Cortesi2015-03-291-2/+1
|
* fix #535 server replay was failing from ui but working from command line ↵Marcelo Glezer2015-03-251-0/+2
| | | | (fixed now too)
* fix #535 now works with both cases: using -c from command line and pressing ↵Marcelo Glezer2015-03-251-0/+2
| | | | c in the ui
* fixed exception in mitmproxy -c fix #535Marcelo Glezer2015-03-251-1/+1
|
* console: signal-based view stack, unifying mechanisms for help, flow views, etc.Aldo Cortesi2015-03-221-19/+17
|
* console: refactor the way we keep global view stateAldo Cortesi2015-03-221-52/+47
|
* Remove refresh_flow mechanism in favor of a signal-based implementationAldo Cortesi2015-03-221-14/+7
|
* console: observe state objects for changes, fire event to update status bar.Aldo Cortesi2015-03-221-0/+9
|
* Simplify the way in which path prompts keep stateAldo Cortesi2015-03-221-6/+0
| | | | | | In the past, we kept the last path the user specified for a number of different path types to pre-seed the path prompt. Now, we no longer distinguish between types, and pre-seed with the last used directory regardless.
* Refactor status bar prompting to use signal systemAldo Cortesi2015-03-221-54/+4
|
* Status bar message expiry based on signals and Urwid main loopAldo Cortesi2015-03-211-1/+7
|
* Add blinker dependency, start using it to refactor console appAldo Cortesi2015-03-211-10/+12
| | | | | Blinker lets us set up a central pub/sub mechanism to disentangle our object structure.
* console: pull primary window frame management out into window.pyAldo Cortesi2015-03-201-148/+4
|
* Pull console StatusBar into its own file.Aldo Cortesi2015-03-201-182/+7
|
* Remove cruft to work around an old Urwid bugAldo Cortesi2015-03-201-5/+0
|
* Fix general prompt input.Aldo Cortesi2015-03-201-0/+3
|
* Pull PathEdit out into its own file.Aldo Cortesi2015-03-201-67/+2
|
* Explicitly handle keyboard interrupt in mitmproxyAldo Cortesi2015-03-201-10/+13
| | | | Fixes #522
* Fix crashes on mouse click when input is being handledAldo Cortesi2015-03-201-3/+1
|
* Revamp palette specificationAldo Cortesi2015-03-191-1/+1
| | | | | | | - Split low-color and high-color specifications in palettes. - Split off light, dark, lowlight and lowdark palettes. Lowlight and lowdark will be the low-color base for most subsequent palettes. - Add a small script that makes test pattern requests to pathod.
* fixes crash pressing 'c':client-replay in mitmproxyMarcelo Glezer2015-03-171-1/+1
|
* Merge remote-tracking branch 'onlywade/master'Maximilian Hils2015-03-151-1/+2
|\ | | | | | | | | | | Conflicts: libmproxy/console/__init__.py libmproxy/console/flowlist.py
| * Adding a server replay option to ignore host when searching for matching ↵Wade Catron2015-03-081-1/+4
| | | | | | | | requests
* | Remove compatibility shim used to interop with older versions of UrwidAldo Cortesi2015-03-131-8/+8
| |
* | Formatting and whitespaceAldo Cortesi2015-03-131-1/+1
| |
* | Style & whitespaceAldo Cortesi2015-03-131-18/+35
| |
* | Integrate Urwid's MainLoop in console mitmproxyAldo Cortesi2015-03-131-191/+191
|/ | | | | | | Urwid's method for accumulating multi-character escape codes is now tied up with its main loop, which means we can't avoid it. This commit fixes a range of issues (like escape not working to exit editable fields), and also improves responsiveness.
* clean up flow readingMaximilian Hils2015-02-051-25/+20
|
* Merge remote-tracking branch 'tekii/master'Maximilian Hils2015-02-051-4/+6
|\
| * open flow files using with as max suggestedMarcelo Glezer2015-01-121-2/+2
| |
| * Merge remote-tracking branch 'base/master'Marcelo Glezer2015-01-121-4/+12
| |\
| * | now mitmproxy supports multiple saved flows files too. also fixed ↵Marcelo Glezer2015-01-061-5/+7
| | | | | | | | | | | | server_play_back start with mitmproxy (missing parameter)