diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-08-06 21:10:45 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-08-06 21:10:45 +1200 |
commit | 2e72b310d9f10462e9eee96f07f39d9d9c08e0fb (patch) | |
tree | ea0b6370988b071e8bf80982abc03cc5e511ac23 | |
parent | f0122f1403bc92eac790ca2b4e1d06bcf45bf745 (diff) | |
download | mitmproxy-2e72b310d9f10462e9eee96f07f39d9d9c08e0fb.tar.gz mitmproxy-2e72b310d9f10462e9eee96f07f39d9d9c08e0fb.tar.bz2 mitmproxy-2e72b310d9f10462e9eee96f07f39d9d9c08e0fb.zip |
Remove script examples for now.
I need to come up with some uncontrived examples.
-rw-r--r-- | doc-src/index.html | 3 | ||||
-rw-r--r-- | doc-src/index.py | 1 | ||||
-rw-r--r-- | doc-src/scripts/examples.html | 4 | ||||
-rw-r--r-- | doc-src/scripts/index.py | 5 |
4 files changed, 0 insertions, 13 deletions
diff --git a/doc-src/index.html b/doc-src/index.html index ae776b15..194ed92d 100644 --- a/doc-src/index.html +++ b/doc-src/index.html @@ -12,9 +12,6 @@ <li><a href="@!urlTo("filters.html")!@">Filter expressions</a></li> </ul> <li><a href="@!urlTo("scripts.html")!@">Scripts</a></li> - <ul> - <li><a href="@!urlTo("scripts/examples.html")!@">Examples</a></li> - </ul> <li><a href="@!urlTo("ssl.html")!@">SSL interception</a></li> <ul> <li><a href="@!urlTo("certinstall/firefox.html")!@">Firefox</a></li> diff --git a/doc-src/index.py b/doc-src/index.py index 6241a232..0191de3d 100644 --- a/doc-src/index.py +++ b/doc-src/index.py @@ -77,7 +77,6 @@ pages = [ Page("anticache.html", "Anticache"), Page("filters.html", "Filter expressions"), Page("scripts.html", "Scripts"), - Directory("scripts"), Page("ssl.html", "SSL interception"), Directory("certinstall"), Page("library.html", "libmproxy: mitmproxy as a library"), diff --git a/doc-src/scripts/examples.html b/doc-src/scripts/examples.html deleted file mode 100644 index bfa1f8d7..00000000 --- a/doc-src/scripts/examples.html +++ /dev/null @@ -1,4 +0,0 @@ - -## Stub script - -$!example("examples/stub.py")!$ diff --git a/doc-src/scripts/index.py b/doc-src/scripts/index.py deleted file mode 100644 index a520fdff..00000000 --- a/doc-src/scripts/index.py +++ /dev/null @@ -1,5 +0,0 @@ -from countershape import Page - -pages = [ - Page("examples.html", "Examples"), -] |