diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-02-19 22:43:05 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-02-19 22:43:05 +1300 |
commit | 0c3035a2b5cbf0bba3185b1ffab3444cd8c20490 (patch) | |
tree | 1dc088cf1b981e1084cf53bc55b473461632d7db /doc-src | |
parent | 86a19faf6859e1f971ccccba3dabe596531636e9 (diff) | |
download | mitmproxy-0c3035a2b5cbf0bba3185b1ffab3444cd8c20490.tar.gz mitmproxy-0c3035a2b5cbf0bba3185b1ffab3444cd8c20490.tar.bz2 mitmproxy-0c3035a2b5cbf0bba3185b1ffab3444cd8c20490.zip |
Start preparing for 0.7
Update CHANGELOG, CONTRIBUTORS, README.mkd, todo, and bump version.
Diffstat (limited to 'doc-src')
-rw-r--r-- | doc-src/_layout.html | 2 | ||||
-rw-r--r-- | doc-src/faq.html | 4 | ||||
-rw-r--r-- | doc-src/index.py | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/doc-src/_layout.html b/doc-src/_layout.html index c711e6dd..f48f1e58 100644 --- a/doc-src/_layout.html +++ b/doc-src/_layout.html @@ -14,7 +14,7 @@ </div> <!--(end)--> $!nav if this.title!="docs" else ""!$ - <h1><a href="@!urlTo("/index.html")!@">mitmproxy 0.6 docs</a></h1> + <h1><a href="@!urlTo("/index.html")!@">mitmproxy 0.7 docs</a></h1> </div> <div id="bd"> <div id="yui-main"> diff --git a/doc-src/faq.html b/doc-src/faq.html index a2e6810f..7b38b04a 100644 --- a/doc-src/faq.html +++ b/doc-src/faq.html @@ -1,5 +1,5 @@ -### Any tips for running mitmproxy on OSX? +## Any tips for running mitmproxy on OSX? You can use the OSX <b>open</b> program to create a simple and effective <b>~/.mailcap</b> file to view HTTP bodies: @@ -12,7 +12,7 @@ video/*; /usr/bin/open -Wn %s </pre> -### I'd like to hack on mitmproxy. What should I work on? +## I'd like to hack on mitmproxy. What should I work on? There's a __todo__ file at the top of the source tree that outlines a variety of tasks, from simple to complex. If you don't have your own itch, feel free to diff --git a/doc-src/index.py b/doc-src/index.py index 451cf8d6..bf21f5f1 100644 --- a/doc-src/index.py +++ b/doc-src/index.py @@ -17,7 +17,7 @@ else: this.markup = markup.Markdown() ns.docMaintainer = "Aldo Cortesi" ns.docMaintainerEmail = "aldo@corte.si" -ns.copyright = u"\u00a9 mitmproxy project, 2011" +ns.copyright = u"\u00a9 mitmproxy project, 2012" ns.index = countershape.widgets.SiblingPageIndex('/index.html', divclass="pageindex") @@ -62,7 +62,7 @@ filt_help.extend( ] ) ns.filt_help = filt_help - + pages = [ |