aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/features/filters.html
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2015-09-07 10:30:40 +0200
committerMaximilian Hils <git@maximilianhils.com>2015-09-07 10:30:40 +0200
commit31ee4607c892f85c5d139e54acbc3ca4f9fb6bcb (patch)
tree873629c79b60b0ac0a7dbb458fe6ad82c2e042ef /doc-src/features/filters.html
parentb4013659a81a48908eb3e060f04143ba1f9689bb (diff)
downloadmitmproxy-31ee4607c892f85c5d139e54acbc3ca4f9fb6bcb.tar.gz
mitmproxy-31ee4607c892f85c5d139e54acbc3ca4f9fb6bcb.tar.bz2
mitmproxy-31ee4607c892f85c5d139e54acbc3ca4f9fb6bcb.zip
remove old docs
Diffstat (limited to 'doc-src/features/filters.html')
-rw-r--r--doc-src/features/filters.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/doc-src/features/filters.html b/doc-src/features/filters.html
deleted file mode 100644
index c7f0f78b..00000000
--- a/doc-src/features/filters.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-Many commands in __mitmproxy__ and __mitmdump__ take a filter expression.
-Filter expressions consist of the following operators:
-
-<table class="table">
- <tbody>
- <!--(for i in filt_help)-->
- <tr>
- <td class="filt_cmd">@!i[0]!@</td>
- <td class="filt_help">@!i[1]!@</td>
- </tr>
- <!--(end)-->
- </tbody>
-</table>
-
-- Regexes are Python-style
-- Regexes can be specified as quoted strings
-- Header matching (~h, ~hq, ~hs) is against a string of the form "name: value".
-- Strings with no operators are matched against the request URL.
-- The default binary operator is &amp;.
-
-Examples
-========
-
-URL containing "google.com":
-
- google\.com
-
-Requests whose body contains the string "test":
-
- ~q ~b test
-
-Anything but requests with a text/html content type:
-
- !(~q & ~t \"text/html\")
-