diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-12-27 23:08:56 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-12-27 23:08:56 +1300 |
commit | ab06c2436be23c9bfbf3af924f0117ecdb6724b4 (patch) | |
tree | 950bec445a85dd4eef9efb8ebe83b94f314345d7 /doc-src | |
parent | 8a8437470e224ee53acbd9a353c7d01a83168cd4 (diff) | |
parent | 3e63107e9473e3ec6676c047171a5d23c79b7dcd (diff) | |
download | mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.tar.gz mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.tar.bz2 mitmproxy-ab06c2436be23c9bfbf3af924f0117ecdb6724b4.zip |
Merge branch 'master' of ssh.github.com:mitmproxy/mitmproxy
Diffstat (limited to 'doc-src')
-rw-r--r-- | doc-src/index.py | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/doc-src/index.py b/doc-src/index.py index e6064e3a..9eb0ea2b 100644 --- a/doc-src/index.py +++ b/doc-src/index.py @@ -40,29 +40,7 @@ def example(s): ns.example = example -filt_help = [] -for i in filt.filt_unary: - filt_help.append( - ("~%s"%i.code, i.help) - ) -for i in filt.filt_rex: - filt_help.append( - ("~%s regex"%i.code, i.help) - ) -for i in filt.filt_int: - filt_help.append( - ("~%s int"%i.code, i.help) - ) -filt_help.sort() -filt_help.extend( - [ - ("!", "unary not"), - ("&", "and"), - ("|", "or"), - ("(...)", "grouping"), - ] -) -ns.filt_help = filt_help +ns.filt_help = filt.help def nav(page, current, state): |