Better help page statusbar text.

This commit is contained in:
Aldo Cortesi 2011-01-30 15:31:44 +13:00
parent cf165bc32e
commit 74aa622fdd
1 changed files with 5 additions and 1 deletions

View File

@ -622,7 +622,7 @@ class ConsoleFlow(flow.Flow):
txt.append( txt.append(
("ack", "!") if self.intercepting and not self.response.acked else " " ("ack", "!") if self.intercepting and not self.response.acked else " "
) )
txt.append("-> ") txt.append("<- ")
if self.response.code in [200, 304]: if self.response.code in [200, 304]:
txt.append(("goodcode", str(self.response.code))) txt.append(("goodcode", str(self.response.code)))
else: else:
@ -720,6 +720,9 @@ class ConsoleMaster(controller.Master):
('key', "?"), ":help ", ('key', "?"), ":help ",
('key', "q"), ":exit ", ('key', "q"), ":exit ",
] ]
footer_text_help = [
('key', "q"), ":back",
]
footer_text_connview = [ footer_text_connview = [
('key', "tab"), ":toggle view ", ('key', "tab"), ":toggle view ",
('key', "?"), ":help ", ('key', "?"), ":help ",
@ -813,6 +816,7 @@ class ConsoleMaster(controller.Master):
self.view.set_focus("body") self.view.set_focus("body")
def view_help(self): def view_help(self):
self.statusbar = StatusBar(self, self.footer_text_help)
self.body = self.helptext() self.body = self.helptext()
self.header = None self.header = None
self.viewstate = VIEW_HELP self.viewstate = VIEW_HELP