diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-01-03 08:25:24 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-01-03 08:25:24 +1300 |
commit | 101f92b2566adea605b9db69dba29e575414cbba (patch) | |
tree | eafcfac61972f7a18c069d098accc4ce2cf1cfea | |
parent | f578d68e555ff202a51b9f8672e540a964e31fed (diff) | |
download | mitmproxy-101f92b2566adea605b9db69dba29e575414cbba.tar.gz mitmproxy-101f92b2566adea605b9db69dba29e575414cbba.tar.bz2 mitmproxy-101f92b2566adea605b9db69dba29e575414cbba.zip |
Docs: move features into their own directory
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | doc-src/features/anticache.html (renamed from doc-src/anticache.html) | 0 | ||||
-rw-r--r-- | doc-src/features/clientreplay.html (renamed from doc-src/clientreplay.html) | 0 | ||||
-rw-r--r-- | doc-src/features/filters.html (renamed from doc-src/filters.html) | 0 | ||||
-rw-r--r-- | doc-src/features/index.py | 14 | ||||
-rw-r--r-- | doc-src/features/proxyauth.html (renamed from doc-src/proxyauth.html) | 0 | ||||
-rw-r--r-- | doc-src/features/replacements.html (renamed from doc-src/replacements.html) | 0 | ||||
-rw-r--r-- | doc-src/features/reverseproxy.html (renamed from doc-src/reverseproxy.html) | 0 | ||||
-rw-r--r-- | doc-src/features/serverreplay.html (renamed from doc-src/serverreplay.html) | 0 | ||||
-rw-r--r-- | doc-src/features/setheaders.html (renamed from doc-src/setheaders.html) | 0 | ||||
-rw-r--r-- | doc-src/features/sticky.html (renamed from doc-src/sticky.html) | 0 | ||||
-rw-r--r-- | doc-src/features/upstreamcerts.html (renamed from doc-src/upstreamcerts.html) | 0 | ||||
-rw-r--r-- | doc-src/index.py | 11 |
13 files changed, 16 insertions, 11 deletions
@@ -1,6 +1,8 @@ x January 2013: mitmproxy 0.9: + * Upstream certs mode is now the default. + * Add a WSGI container that lets you host in-proxy web applications. * Full transparent proxy support for Linux and OSX. diff --git a/doc-src/anticache.html b/doc-src/features/anticache.html index f42903e8..f42903e8 100644 --- a/doc-src/anticache.html +++ b/doc-src/features/anticache.html diff --git a/doc-src/clientreplay.html b/doc-src/features/clientreplay.html index 6638d078..6638d078 100644 --- a/doc-src/clientreplay.html +++ b/doc-src/features/clientreplay.html diff --git a/doc-src/filters.html b/doc-src/features/filters.html index c7f0f78b..c7f0f78b 100644 --- a/doc-src/filters.html +++ b/doc-src/features/filters.html diff --git a/doc-src/features/index.py b/doc-src/features/index.py new file mode 100644 index 00000000..f7efc23a --- /dev/null +++ b/doc-src/features/index.py @@ -0,0 +1,14 @@ +from countershape import Page + +pages = [ + Page("anticache.html", "Anticache"), + Page("clientreplay.html", "Client-side replay"), + Page("filters.html", "Filter expressions"), + Page("setheaders.html", "Set Headers"), + Page("serverreplay.html", "Server-side replay"), + Page("sticky.html", "Sticky cookies and auth"), + Page("proxyauth.html", "Proxy Authentication"), + Page("replacements.html", "Replacements"), + Page("reverseproxy.html", "Reverse proxy mode"), + Page("upstreamcerts.html", "Upstream Certs"), +] diff --git a/doc-src/proxyauth.html b/doc-src/features/proxyauth.html index 0618ee68..0618ee68 100644 --- a/doc-src/proxyauth.html +++ b/doc-src/features/proxyauth.html diff --git a/doc-src/replacements.html b/doc-src/features/replacements.html index c10fe2c3..c10fe2c3 100644 --- a/doc-src/replacements.html +++ b/doc-src/features/replacements.html diff --git a/doc-src/reverseproxy.html b/doc-src/features/reverseproxy.html index 524df083..524df083 100644 --- a/doc-src/reverseproxy.html +++ b/doc-src/features/reverseproxy.html diff --git a/doc-src/serverreplay.html b/doc-src/features/serverreplay.html index 1282be06..1282be06 100644 --- a/doc-src/serverreplay.html +++ b/doc-src/features/serverreplay.html diff --git a/doc-src/setheaders.html b/doc-src/features/setheaders.html index b74525df..b74525df 100644 --- a/doc-src/setheaders.html +++ b/doc-src/features/setheaders.html diff --git a/doc-src/sticky.html b/doc-src/features/sticky.html index 1b79f922..1b79f922 100644 --- a/doc-src/sticky.html +++ b/doc-src/features/sticky.html diff --git a/doc-src/upstreamcerts.html b/doc-src/features/upstreamcerts.html index 8de75ee3..8de75ee3 100644 --- a/doc-src/upstreamcerts.html +++ b/doc-src/features/upstreamcerts.html diff --git a/doc-src/index.py b/doc-src/index.py index f2a07db8..01b9363d 100644 --- a/doc-src/index.py +++ b/doc-src/index.py @@ -66,17 +66,6 @@ pages = [ Page("mitmproxy.html", "mitmproxy"), Page("mitmdump.html", "mitmdump"), - Page("anticache.html", "Anticache"), - Page("clientreplay.html", "Client-side replay"), - Page("filters.html", "Filter expressions"), - Page("setheaders.html", "Set Headers"), - Page("serverreplay.html", "Server-side replay"), - Page("sticky.html", "Sticky cookies and auth"), - Page("proxyauth.html", "Proxy Authentication"), - Page("replacements.html", "Replacements"), - Page("reverseproxy.html", "Reverse proxy mode"), - Page("upstreamcerts.html", "Upstream Certs"), - Page("ssl.html", "Overview"), Page("transparent.html", "Overview"), Directory("certinstall"), |