diff --git a/AUTHORS.TXT b/AUTHORS.TXT new file mode 100644 index 00000000000..fc6acff48da --- /dev/null +++ b/AUTHORS.TXT @@ -0,0 +1,215 @@ +Michael DeHaan +Daniel Hokka Zakrisson +Stephen Fromm +Seth Vidal +Tim Bielawa +Dag Wieers +Jan-Piet Mens +Jeroen Hoekx +Lorin Hochstein +Michel Blanc +Stephen Fromm +Matthew Williams +Marco Vito Moscaritolo +Mark Theunissen +Brian Coca +Dave Hatton +Pepe Barbe +Peter Sankauskas +John Kleint +Derek Carter +Dane Summers +Romeo Theriault +Matt Wright +Nigel Metheringham +Brad Olson +Chris Hoffman +Timothy Appnel +fdavis +Dietmar Schinnerl +jkleint +Jeroen Hoekx +Wes Johnson +Nikhil Singh +Daniel Néri +Tim Gerla +lwade +Rodney Quillo +Christopher Johnston +Stoned Elipot +Yeukhon Wong +Anastasis Andronidis +cocoy +Yves Dorfsman +Brian Coca +Shaun Zinck +Dag Wieërs +Ludovic Claude +Peter Sankauskas +Petros Moisiadis +Ahmad Khayyat +Matt Wright +Serge van Ginderachter +Fred Alger +Aleksej Romanov +Aurélien Bondis +Johan Wirén +Gregory Duchatelet +Jimmy Tang +Henry Graham +Jeremy Smitherman +Jim Richardson +Ingo Gottwald +Fabian Arrotin +Silviu Dicu +Blair Zajac +Christoph Seitz +Cosmin Luță +Félix Sipma +Grzegorz Nosek +John Callender +John Eckersberg +Jonathan Palley +Kavin Kankeshwar +Lester Wade +Luke Antins +Maxim Burgerhout +Nigel Metheringham +Nigel Metheringham +Norman J. Harman Jr +Sebastien Bocahu +Sundar Raman +Will Thames +lessmian +willthames +afterburn +Lorin Hochstein +bradobro +Chelsea Robb +Brendan Beveridge +Philipp Grau +Matthew Johnson +Nathan A. Feger +Junegunn Choi +Ton Kersten +Maykel Moya +Les Aker +Rafal Lewczuk +Jeremy Katz +Patrik Lundin +Stijn Opheide +Will Thames +willthames +Jesse Andrews +Marco Vito Moscaritolo +James Martin +Pepe Barbe +Matt Coddington +Ingo Gottwald +u348095 +willthames +Hubert Feyrer +Juha Litola +Jayson Vantuyl +Javier Candeira +Martijn Koster +Nandor Sivok +Rune Kaagaard +Igor Galić +Matt Cordial +Chris Geddings +schmic +Matt Goodall +Chin Fang +Dave Peticolas +Stavros Korokithakis +Patrick Pelletier +willthames +Florian Diebold +Till Maas +Brendan Taylor +martin f. krafft +Vincent Van der Kussen +ron1 +Yvan Cottyn +Ashley Penney +alex +bleader +Ali Asad Lotia +davixx +Piffey Parlance +felix +igor +Michael Lambert +Jure Triglav +Alexandre Bourget +ftao +jibs +Alan Orth +Jeremiah Heller +Jeremy Penner +Jens Rantil +Jeff Blaine +Joel Roller +Johan Wirén +junyoung +John Gosset +Adam Denenberg +Jonathan Palley +Jonte Norman +Joshua Tacoma +K. Preyk +Lennie +mxxcon +Lester Wade +Gert Goet +Gary Richards +Mark Maas +Francis Besset +Marko Mikulicic +Matt Klich +Francesc Esplugas +Matthew Johnson +Felix Ingram +Max Spransy +root +Fabian Arrotin +Elliott Foster +Miek Gieben +Mikael Zayenz Lagerkvist +Mike Grozak +Nathan A. Feger +Dave Peticolas +shlomozippel +Oscar Korz +Dave Coutu +Daniel Néri +Collin Allen +Petetin Ludovic +Christopher A. Snapp +Piotr Kweclich +Piotr Kweclich +Piotr Roszatycki +Ralph Bean +Reed Murphy +Rob Parrott +Chris Read +Chris Hoffman +Romeo Theriault +Scott Anderson +vincent Van der Kussen +Sergey Popov +Chris Berkhout +ADRIyas +Sri Harsha Yalamanchili +Stanis Trendelenburg +Stefane Fermigier +Chandler Latour +Steve Frank +Brian Coca +Sébastien Bocahu +Brandon Alexander +Ton Kersten +Boyd Adamson +Bowe Strickland +diefans diff --git a/Makefile b/Makefile index 4e5d1ee4f69..8e3f4c02efe 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,10 @@ tests: PYTHONPATH=./lib nosetests -d -v # To force a rebuild of the docs run 'touch VERSION && make docs' -docs: $(MANPAGES) modulepages +docs: $(MANPAGES) modulepages webdocs authors + +authors: + sh hacking/authors.sh # Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more # recently than %.1.asciidoc. diff --git a/hacking/authors.sh b/hacking/authors.sh new file mode 100644 index 00000000000..f9287828e4c --- /dev/null +++ b/hacking/authors.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# script from http://stackoverflow.com/questions/12133583 +set -e + +# Get a list of authors ordered by number of commits +# and remove the commit count column +AUTHORS=$(git --no-pager shortlog -nse | cut -f 2-) +if [ -z "$AUTHORS" ] ; then + echo "Authors list was empty" + exit 1 +fi + +# Display the authors list and write it to the file +echo "$AUTHORS" | tee "$(git rev-parse --show-toplevel)/AUTHORS.TXT" | sort