aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/common.py
Commit message (Collapse)AuthorAgeFilesLines
* pretty_size now lives in netlib.utilsAldo Cortesi2015-04-301-1/+2
|
* make code more pythonicMaximilian Hils2015-04-261-8/+11
|
* Merge remote-tracking branch 'tunz/crash1'Maximilian Hils2015-04-261-4/+11
|\
| * Fix crash when save to clipboard before loadingChoongwoo Han2015-04-231-4/+11
| |
* | Check overwrite, when save to file instaed of clipboardChoongwoo Han2015-04-231-2/+20
|/
* console: first pass of a Set-cookie editor for responsesAldo Cortesi2015-04-161-14/+20
|
* console: keyboard shortcuts for optionsAldo Cortesi2015-04-031-5/+5
|
* handles UnicodeDecodeErrorMarcelo Glezer2015-03-231-1/+1
|
* Replace far-too-clever decorator LRU cache with something simplerAldo Cortesi2015-03-221-6/+3
|
* console: signal-based view stack, unifying mechanisms for help, flow views, etc.Aldo Cortesi2015-03-221-3/+0
|
* Simplify the way in which path prompts keep stateAldo Cortesi2015-03-221-2/+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.
* Rationalise prompt calling conventionsAldo Cortesi2015-03-221-4/+4
|
* Refactor status bar prompting to use signal systemAldo Cortesi2015-03-221-27/+19
|
* Add blinker dependency, start using it to refactor console appAldo Cortesi2015-03-211-5/+6
| | | | | Blinker lets us set up a central pub/sub mechanism to disentangle our object structure.
* Fix general prompt input.Aldo Cortesi2015-03-201-0/+8
|
* Indentation, style, whitespaceAldo Cortesi2015-03-131-5/+18
|
* Remove compatibility shim used to interop with older versions of UrwidAldo Cortesi2015-03-131-22/+0
|
* Formatting and whitespaceAldo Cortesi2015-03-131-7/+8
|
* changes requested by @mhilsMarcelo Glezer2015-03-011-9/+2
|
* added to flowlist / flowdetail time elapsed between request sent and ↵Marcelo Glezer2015-02-261-1/+6
| | | | response received
* added support for creating new requests. still wip (not working for https)Marcelo Glezer2015-02-101-0/+11
|
* make copy context-sensitiveMaximilian Hils2015-02-071-40/+82
|
* improve clipboard UXMaximilian Hils2015-02-061-62/+79
|
* removed str() cast and changed 'failed copy trying save instead' messageMarcelo Glezer2015-02-061-2/+2
|
* save_flow now uses with, and pyperclip requirement updated to 1.5.8Marcelo Glezer2015-02-061-3/+2
|
* added copy to clipboard support for urlMarcelo Glezer2015-02-051-0/+5
|
* added support for 'b' key in flowlistMarcelo Glezer2015-02-051-0/+28
|
* added support for copying request (content|header) to clipboardMarcelo Glezer2015-02-051-7/+6
|
* used save_body from common when b key is pressedMarcelo Glezer2015-02-051-4/+4
|
* added support for saving file if content is binary. still wipMarcelo Glezer2015-02-051-4/+40
|
* extracted server_copy_response to commonMarcelo Glezer2015-02-051-1/+19
|
* web: intercept featureMaximilian Hils2014-12-231-3/+3
|
* fix timestamp formatting: end_time may not be setMaximilian Hils2014-09-221-1/+4
|
* Merge branch 'issue_341' into server_change_apiMaximilian Hils2014-09-041-4/+3
|\ | | | | | | | | | | Conflicts: examples/redirect_requests.py libmproxy/console/common.py
| * fix some leftoversMaximilian Hils2014-09-041-4/+3
| |
* | improve HTTPRequest syntaxMaximilian Hils2014-09-031-1/+1
|/
* always use relative imports, fix status bar bugMaximilian Hils2014-03-101-0/+1
|
* fix mentions of CONTENT_MISSING in libmproxy.consoleMaximilian Hils2014-03-091-2/+3
|
* fix all tests except those using set_url and get_urlMaximilian Hils2014-02-051-2/+2
|
* merge flow classes. current status: basic mitmdump workingMaximilian Hils2014-01-301-1/+1
|
* Fix divide by zero issue when timestamp start and end are the sameRich Somerfield2013-11-261-1/+1
|
* Tweak timing displayAldo Cortesi2013-08-231-6/+4
| | | | | | | | | | | - Remove elapsed time. Space is at a premium here, and this is somewhat redundant with the rate figure. We should display complete timing information somewhere in the detailed flow view. - Tone down the colour. Reserve highlights for stuff that should really pop out to the user. - Make rate calculation more acurate. Include header sizes. Use response start and end time, rather than request end and response end. This means that we show actual transfer rates, not including DNS requests and so forth.
* console: Add support for displaying transfer rateKyle Manna2013-08-131-0/+3
| | | | | * Display the rate in the the response row. * Very handy for passive performance analysis.
* console: Add support for displaying elapsed timeKyle Manna2013-08-131-1/+8
| | | | | * Display the elapsed time in the the response row. * Very handy for passive performance analysis.
* Remove GPL notices left in source files after our change to the MIT license.Aldo Cortesi2013-08-011-15/+0
| | | | Thanks to Roy Shamir for reporting this.
* Some refactoring of the console inteface.Aldo Cortesi2013-07-281-0/+3
| | | | | | Reduce some state duplication, by removing currentflow variable. Fixes #141
* Add the --host option, which uses the value in the Host header for dispaly URLs.Aldo Cortesi2013-03-171-2/+2
| | | | | - Can be toggled with "o" then "h" in mitmproxy - Useful for transparent mode
* Significantly refactor the master/slave message passing interface.Aldo Cortesi2013-02-171-2/+2
|
* Fixed a bug in format_flow in common.py. Changed the reference from ↵Chris Neasbitt2013-01-181-1/+1
| | | | timestamp to timestamp_start.
* Add interface to mark content missing, and extend UI to indicate when ↵Aldo Cortesi2012-05-161-2/+8
| | | | content is missing.