[banshee] Update AUTHORS and add script to gen it



commit dbf53abe6b7c9fa61a6713dbe3ba20b039e06e4b
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Fri Jan 22 13:14:09 2010 -0800

    Update AUTHORS and add script to gen it

 AUTHORS                                         |  131 ++++++++++++++++++++++-
 extras/create-authors                           |   32 ++++++
 {build => extras}/create-contributors-paragraph |    0
 3 files changed, 160 insertions(+), 3 deletions(-)
---
diff --git a/AUTHORS b/AUTHORS
index dac2988..61d833f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,128 @@
-Aaron Bockover <abock gnome org> - Maintainer
-Gabriel Burt <gabriel burt gmail com> - Maintainer
-Scott Peterson <lunchtimemama gmail com> - Developer
+Maintainers:
+  Aaron Bockover
+  Alexander Kojevnikov
+  Bertrand Lorentz
+  Gabriel Burt
+
+Contributors:
+  Alan McGovern
+  Alex Bennee
+  Alex Kloss
+  Alex Launi
+  Alexander Hixon
+  Alexandros Frantzis
+  Alp Toker
+  Andrea Cimitan
+  Andreas Neustifter
+  Andrew Conkling
+  Andrés G. Aragoneses
+  Andy Midgette
+  Arthur Carli
+  Aydemir UlaÅ? Å?ahin
+  Ben Maurer
+  Benjamín Valero Espinosa
+  Bertrand Lorentz
+  Bill Dawson
+  Bob Copeland
+  Bojan Rajkovic
+  Brad Taylor
+  Brandon Perry
+  Brian Lucas
+  Brian Nickel
+  Brian Teague
+  Chow Loong Jin
+  Chris Howie
+  Chris Jones
+  Chris Lahey
+  Chris Toshok
+  Chris Turchin
+  Christian Krause
+  Christoph Burgdorf
+  Christopher James Halse Rogers
+  Cody Russell
+  Cosmin Banu
+  Dan Wilson
+  Dan Winship
+  Daniel Munkton
+  Daniel Siegel
+  David Spreen
+  David Stone
+  Diego E. Pettenò
+  Eitan Isaacson
+  Elena Grassi
+  Eoin Hennessy
+  Eric Butler
+  Erik Schmidt
+  Fabian Jost
+  Felipe Almeida Lessa
+  Félix Velasco
+  Florent Thoumie
+  Fredrik Hedberg
+  Götz Waschk
+  Haitao Feng
+  Hans Petter Jansson
+  Iain Lane
+  Igor Guerrero Fonseca
+  Ilya Konstantinov
+  Ivan N. Zlatev
+  Jack Deslippe
+  James Willcox
+  Jan Arne Petersen
+  Jason Conti
+  Jason Taylor
+  Jeff Tickle
+  Jeff Wheeler
+  Jensen Somers
+  Jérémie Laval
+  Jo Shields
+  Johannes Kuhn
+  John Millikin
+  Jorge Castro
+  Juri Pakaste
+  Ken Vandine
+  Larry Ewing
+  Lauri Kotilainen
+  Lukas Lipka
+  Matt Enright
+  Michael Kaiser
+  Michael Martin-Smucker
+  Michael Monreal
+  Miguel de Icaza
+  Mike Urbanski
+  Moritz Schallaböck
+  Nathan Palmer
+  Neil Loknath
+  Nicholas Doyle
+  Nicholas Parker
+  Nicolò Chieffo
+  Nils Naumann
+  Olivier Duff
+  Oscar Forero
+  Pacho Ramos
+  Patrick van Staveren
+  Paul Lange
+  Pepijn van de Geer
+  Peter de Kraker
+  Pratik Patel
+  PrzemysÅ?aw Grzegorczyk
+  Roderich Schupp
+  Romain Tartière
+  Ruben Vermeersch
+  Sandy Armstrong
+  Scott Peterson
+  Sebastian Dröge
+  Tim Yamin
+  Tobias Mueller
+  Todd Berman
+  Travis Glenn Hansen
+  Trey Ethridge
+  Valentin Sawadski
+  Will Farrington
+  William Pettersson
+  Wouter Bolsterlee
+
+Artists:
+  Garrett LeSage
+  Jakub Steiner
+  Michael Monreal
+  Ryan Collier
diff --git a/extras/create-authors b/extras/create-authors
new file mode 100755
index 0000000..630b90e
--- /dev/null
+++ b/extras/create-authors
@@ -0,0 +1,32 @@
+#!/usr/bin/perl
+
+open (IN, '../src/Core/Banshee.Core/Resources/contributors.xml');
+
+sub print_section {
+    $n = shift;
+    print "$n:\n";
+}
+
+my $section = '';
+while (my $line = readline(IN)) {
+    if ($line =~ m/>([^<]+)</) {
+        $name = $1;
+
+        if ($line =~ /author/ && $section ne 'author') {
+            $section = 'author';
+            print_section ("Maintainers");
+        } elsif ($line =~ m/contributor/ && $section ne 'contributor') {
+            $section = 'contributor';
+            print "\n";
+            print_section ("Contributors");
+        } elsif ($line =~ m/artist/ && $section ne 'artist') {
+            $section = 'artist';
+            print "\n";
+            print_section ("Artists");
+        }
+
+        print "  $name\n";
+    }
+}
+
+close (IN);
diff --git a/build/create-contributors-paragraph b/extras/create-contributors-paragraph
similarity index 100%
rename from build/create-contributors-paragraph
rename to extras/create-contributors-paragraph



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]