aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc-src/index.html3
-rw-r--r--doc-src/index.py1
-rw-r--r--doc-src/scripts/examples.html4
-rw-r--r--doc-src/scripts/index.py5
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"),
-]
a> 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274