summaryrefslogtreecommitdiff
path: root/apps/plugins/credits.pl
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-09-02 05:39:09 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-09-02 05:39:09 +0000
commit60895bc107f5689f19de61828d8ffe0f2f1f59b5 (patch)
tree0141dc6cada785f2c7c6b6655820567432c353ec /apps/plugins/credits.pl
parent58e9412bff9947e4514c0d55152bfad91049a60c (diff)
downloadrockbox-60895bc107f5689f19de61828d8ffe0f2f1f59b5.tar.gz
rockbox-60895bc107f5689f19de61828d8ffe0f2f1f59b5.zip
Patch #1272052 by Henrik Backe - Move credits to a plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7450 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/credits.pl')
-rw-r--r--apps/plugins/credits.pl13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/plugins/credits.pl b/apps/plugins/credits.pl
new file mode 100644
index 0000000000..942a96b99f
--- /dev/null
+++ b/apps/plugins/credits.pl
@@ -0,0 +1,13 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9while (<STDIN>) {
10 if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
11 print "\"$1\",\n";
12 }
13}