From 80e023b5ba9fa5f4a9ec5cf4a60753e01a590c05 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 19 Mar 2011 20:34:53 +1300 Subject: Add a script to generate a contributors list, and use it to make a CONTRIBUTORS file. --- CONTRIBUTORS | 4 ++++ doc-src/_websitelayout.html | 4 ++-- scripts/contributors | 2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 CONTRIBUTORS create mode 100755 scripts/contributors 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 @@

mitmproxy


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 -- cgit v1.2.3