aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/connlist.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-02-08 21:47:39 +1300
committerAldo Cortesi <aldo@nullcube.com>2012-02-08 21:47:39 +1300
commite3f28e1c06093147660e2857adce24b441d6530f (patch)
tree7bbc55b1e8ed93c6ae4d94380f3c09556072be80 /libmproxy/console/connlist.py
parent76f2595df76f81bdbca360fe032167b6b1269a4d (diff)
downloadmitmproxy-e3f28e1c06093147660e2857adce24b441d6530f.tar.gz
mitmproxy-e3f28e1c06093147660e2857adce24b441d6530f.tar.bz2
mitmproxy-e3f28e1c06093147660e2857adce24b441d6530f.zip
Move to context-dependent help model.
The all-in-one page was just getting too unwieldy.
Diffstat (limited to 'libmproxy/console/connlist.py')
-rw-r--r--libmproxy/console/connlist.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/libmproxy/console/connlist.py b/libmproxy/console/connlist.py
index 319963e8..1d34fba9 100644
--- a/libmproxy/console/connlist.py
+++ b/libmproxy/console/connlist.py
@@ -1,6 +1,21 @@
import urwid
import common
+def _mkhelp():
+ text = []
+ keys = [
+ ("C", "clear connection list or eventlog"),
+ ("d", "delete connection from view"),
+ ("v", "toggle eventlog"),
+ ("X", "kill and delete connection, even if it's mid-intercept"),
+ ("tab", "tab between eventlog and connection list"),
+ ("enter", "view connection"),
+ ]
+ text.extend(common.format_keyvals(keys, key="key", val="text", indent=4))
+ return text
+help_context = _mkhelp()
+
+
class EventListBox(urwid.ListBox):
def __init__(self, master):
self.master = master