aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS4
-rw-r--r--doc-src/_websitelayout.html4
-rwxr-xr-xscripts/contributors2
3 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
new file mode 100644
index 00000000..98c5a434
--- /dev/null
+++ b/CONTRIBUTORS
@@ -0,0 +1,4 @@
+ 179 Aldo Cortesi
+ 18 Henrik Nordstrom
+ 13 Thomas Roth
+ 1 Henrik Nordström
diff --git a/doc-src/_websitelayout.html b/doc-src/_websitelayout.html
index ad8eb317..8e2fccac 100644
--- a/doc-src/_websitelayout.html
+++ b/doc-src/_websitelayout.html
@@ -4,9 +4,9 @@
<h1><a href="@!urlTo("/index.html")!@">mitmproxy</a> </h1>
<div class="HorizontalNavBar">
<ul>
- <li class="inactive"><a href="../index.html">home</a></li>
+ <li class="inactive"><a href="@!urlTo("/index.html")!@">home</a></li>
<li class="active"><a href="@!urlTo("doc/index.html")!@">docs</a></li>
- <li class="inactive"><a href="../development.html">development</a></li>
+ <li class="inactive"><a href="@!urlTo("/about.html")!@">about</a></li>
</ul>
</div>
<br>
diff --git a/scripts/contributors b/scripts/contributors
new file mode 100755
index 00000000..75b97c6c
--- /dev/null
+++ b/scripts/contributors
@@ -0,0 +1,2 @@
+#!/bin/sh
+git log | grep "^Author:" | sed 's/ <.*//; s/^Author: //' | sort | uniq -c | sort -nr