added support for creating new requests. still wip (not working for https)

This commit is contained in:
Marcelo Glezer
2015-02-10 15:24:21 -03:00
parent e0c5f86b20
commit ba42984b59
4 changed files with 51 additions and 12 deletions

View File

@@ -17,6 +17,17 @@ VIEW_FLOW = 1
VIEW_FLOW_REQUEST = 0
VIEW_FLOW_RESPONSE = 1
METHOD_OPTIONS = [
("get", "g"),
("post", "p"),
("put", "u"),
("head", "h"),
("trace", "t"),
("delete", "d"),
("options", "o"),
("edit raw", "e"),
]
def highlight_key(s, k):
l = []