aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-04-08 20:16:25 +1200
committerAldo Cortesi <aldo@nullcube.com>2012-04-08 20:16:25 +1200
commit5553eb6371e98a6d4878cd090d342114714d20a7 (patch)
treeb155e744a6ef36bafaf85c26c212ea5e41a40963
parent4e2d19714c8c0f801ba58fccece8e658bc321c4e (diff)
downloadmitmproxy-5553eb6371e98a6d4878cd090d342114714d20a7.tar.gz
mitmproxy-5553eb6371e98a6d4878cd090d342114714d20a7.tar.bz2
mitmproxy-5553eb6371e98a6d4878cd090d342114714d20a7.zip
Add some missing help entries.
-rw-r--r--libmproxy/console/flowview.py1
-rw-r--r--libmproxy/console/help.py36
2 files changed, 21 insertions, 16 deletions
diff --git a/libmproxy/console/flowview.py b/libmproxy/console/flowview.py
index 1599421f..35bcc3ea 100644
--- a/libmproxy/console/flowview.py
+++ b/libmproxy/console/flowview.py
@@ -27,6 +27,7 @@ def _mkhelp():
("d", "delete flow"),
("D", "duplicate flow"),
("e", "edit request/response"),
+ ("f", "load full body data"),
("m", "change body display mode for this entity"),
(None,
common.highlight_key("automatic", "a") +
diff --git a/libmproxy/console/help.py b/libmproxy/console/help.py
index ba9c9f2e..c9fded3b 100644
--- a/libmproxy/console/help.py
+++ b/libmproxy/console/help.py
@@ -97,22 +97,26 @@ class HelpView(urwid.ListBox):
),
("o", "toggle options:"),
- (None,
- common.highlight_key("anticache", "a") +
- [("text", ": prevent cached responses")]
- ),
- (None,
- common.highlight_key("anticomp", "c") +
- [("text", ": prevent compressed responses")]
- ),
- (None,
- common.highlight_key("killextra", "k") +
- [("text", ": kill requests not part of server replay")]
- ),
- (None,
- common.highlight_key("norefresh", "n") +
- [("text", ": disable server replay response refresh")]
- ),
+ (None,
+ common.highlight_key("anticache", "a") +
+ [("text", ": prevent cached responses")]
+ ),
+ (None,
+ common.highlight_key("anticomp", "c") +
+ [("text", ": prevent compressed responses")]
+ ),
+ (None,
+ common.highlight_key("killextra", "k") +
+ [("text", ": kill requests not part of server replay")]
+ ),
+ (None,
+ common.highlight_key("norefresh", "n") +
+ [("text", ": disable server replay response refresh")]
+ ),
+ (None,
+ common.highlight_key("upstream certs", "u") +
+ [("text", ": sniff cert info from upstream server")]
+ ),
("q", "quit / return to flow list"),
("Q", "quit without confirm prompt"),