aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/connview.py
Commit message (Collapse)AuthorAgeFilesLines
* connection -> flow in libmitmproxy/consoleAldo Cortesi2012-02-211-575/+0
| | | | "Flow" is the correct term here - every connection can have multiple flows.
* Use ODict for request.get_form_urlencoded and set_form_urlencodedAldo Cortesi2012-02-201-2/+2
|
* Use ODict for Request.get_query and Request.set_queryAldo Cortesi2012-02-201-2/+2
|
* Rename Headers class to ODictAldo Cortesi2012-02-201-2/+2
| | | | | ODict is an ordered dictionary class that will be useful in many other parts of our API.
* Add duplicate to connection view, and rename to "D".Aldo Cortesi2012-02-191-0/+6
|
* Missing import, plus fix body divider palette.Aldo Cortesi2012-02-181-6/+6
|
* Consolidate palettes somewhat.Aldo Cortesi2012-02-181-16/+10
|
* Refactor reverse proxyingAldo Cortesi2012-02-181-2/+2
| | | | | | | - Retain the specification from the Host header as a Request's description. - Expand upstream proxy specifications to include the scheme. We now say https://hostname:port - Move the "R" revert keybinding to "v" to make room for a reverse proxy binding that matches the command-line flag.
* Refactor the way we display flows.Aldo Cortesi2012-02-181-2/+2
| | | | | Use columns to make spacing nicer, and to ensure that long URLs don't bugger up formatting when they spill into the next line.
* Better formatting for headers, help and other key-value displays.Aldo Cortesi2012-02-111-21/+14
| | | | We now use proper Columns, rather than laying it out manually.
* Fix a minor keypress glitch in connection view.Aldo Cortesi2012-02-111-1/+1
|
* Revamp the way request and response bodies are displayed.Aldo Cortesi2012-02-111-21/+40
|
* Enable editing of urlencoded form data with KVEditor.Aldo Cortesi2012-02-101-0/+6
|
* Methods for getting and setting form urlencoded data on Request.Aldo Cortesi2012-02-101-4/+1
|
* Add "d" for delete shortcut to flow view.Aldo Cortesi2012-02-091-0/+11
|
* Add a built-in query string editor using KVEditor.Aldo Cortesi2012-02-091-1/+7
|
* Add get_query and set_query methods to Request.Aldo Cortesi2012-02-091-3/+3
|
* Allow user to specify non-standard request methods when editing a flow.Aldo Cortesi2012-02-091-6/+15
| | | | Addresses feature request in #27
* Fix import missed during refactoring.Aldo Cortesi2012-02-091-0/+1
| | | | Addresses issue #26
* Fix attribute error.Aldo Cortesi2012-02-081-1/+1
| | | | Should address issue #23
* Further keybinding consolidation.Aldo Cortesi2012-02-081-0/+4
| | | | Also, move KVEditor's "i" binding to "A" to avoid clashes with global bindings.
* Start consolidating keybindings.Aldo Cortesi2012-02-081-1/+29
| | | | | | I want each view to have a more coherent set of bindings. This means minimizing the global bindings, and making some bindings accessible only from screens related to their functionality.
* Move to context-dependent help model.Aldo Cortesi2012-02-081-0/+16
| | | | The all-in-one page was just getting too unwieldy.
* KVEditor: "e" shortcut spawns an external editor on a field.Aldo Cortesi2012-02-081-23/+1
|
* Refine look and feel, make editor operate on copy of data.Aldo Cortesi2012-02-081-7/+5
|
* Editable fields for KVEditor.Aldo Cortesi2012-02-081-2/+21
|
* Refactor console.Aldo Cortesi2012-02-071-0/+490
Split the console implementation out into logical components.