diff --git a/doc-src/index.html b/doc-src/index.html
index 27bcc896e..61a033be1 100644
--- a/doc-src/index.html
+++ b/doc-src/index.html
@@ -4,11 +4,10 @@
mitmproxy
mitmdump
- Features
+ Concepts
- Client-side replay
- Server-side replay
diff --git a/doc-src/mitmproxy.html b/doc-src/mitmproxy.html
index e69de29bb..da4c2a82c 100644
--- a/doc-src/mitmproxy.html
+++ b/doc-src/mitmproxy.html
@@ -0,0 +1,16 @@
+
+__mitmproxy__ is a console tool that allows interactive examination and
+modification of HTTP traffic.
+
+## Connection list
+
+
+
+
+- Looking at the connection list, we can see that we visited __gmail.com__,
+which then returned a 301 redirect.
+- The statusbar tells us that there are 11 flows in the list, and that we're
+currently using the "pretty" view mode.
+- Also visible is the __Event log__, which can be toggled on and off with the
+__v__ keyboard shortcut. This displays events like client connection
+information, errors, and script output.
diff --git a/doc-src/mitmproxy/eventlog.html b/doc-src/mitmproxy/eventlog.html
deleted file mode 100644
index e69de29bb..000000000
diff --git a/doc-src/mitmproxy/index.py b/doc-src/mitmproxy/index.py
index d7e9717c7..889f039c9 100644
--- a/doc-src/mitmproxy/index.py
+++ b/doc-src/mitmproxy/index.py
@@ -2,6 +2,5 @@ from countershape import Page
pages = [
Page("interception.html", "Interception"),
- Page("encodings.html", "Encodings"),
- Page("eventlog.html", "Event log"),
+ Page("encodings.html", "Dealing with encodings"),
]
diff --git a/doc-src/screenshots/mitmproxy.png b/doc-src/screenshots/mitmproxy.png
new file mode 100644
index 000000000..1766167ea
Binary files /dev/null and b/doc-src/screenshots/mitmproxy.png differ