diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-11-14 14:27:15 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-14 14:27:15 +0000 |
| commit | 5e883c36b1876f00ee6c1625018c30b1bd2ac275 (patch) | |
| tree | 37ce56fda13cb643d110ed87efde9f6ddc721a8a | |
| parent | 4dd2748b835fca619f4651b5c2ec4629f52776b1 (diff) | |
| download | rockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.zip rockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.tar.gz rockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.tar.bz2 rockbox-5e883c36b1876f00ee6c1625018c30b1bd2ac275.tar.xz | |
moved to /wps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7860 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/wps/WPSLIST | 14 | ||||
| -rw-r--r-- | apps/wps/ipodVOL.wps | 41 | ||||
| -rwxr-xr-x | apps/wps/wpsbuild.pl | 55 |
3 files changed, 0 insertions, 110 deletions
diff --git a/apps/wps/WPSLIST b/apps/wps/WPSLIST deleted file mode 100644 index dc4f2c2..0000000 --- a/apps/wps/WPSLIST +++ /dev/null @@ -1,14 +0,0 @@ -<wps> -# Name of the WPS _including_ extension -Name: ipodVOL.wps -# Name of the creator of the WPS -Author: xameius -# prefered font: -Font: chicago12.fnt -# Weather the WPS is designed to have the statusbar present or not -Statusbar: off -# The minimum required pixel height for the WPS -Height: 128 -# The minimum required pixel width for the WPS -Width: 160 -</wps> diff --git a/apps/wps/ipodVOL.wps b/apps/wps/ipodVOL.wps deleted file mode 100644 index 7278ea2..0000000 --- a/apps/wps/ipodVOL.wps +++ /dev/null @@ -1,41 +0,0 @@ -%xl|y|play.bmp|0|2| -%xl|p|pause.bmp|0|2| -%xl|h|hold.bmp|20|2| -%xl|b|blank.bmp|20|2| -%xl|r|rep.bmp|120|2| -%xl|s|reps.bmp|120|2| -%xl|t|rep1.bmp|120|2| -%xl|x|repb.bmp|120|2| -%xl|A|be.bmp|136|2| -%xl|B|bqe.bmp|136|2| -%xl|B|bh.bmp|136|2| -%xl|D|bqf.bmp|136|2| -%xl|E|bf.bmp|136|2| -%xl|F|bfp.bmp|136|2| -%xl|Q|vol0.bmp|139|18| -%xl|R|vol1.bmp|139|18| -%xl|S|vol2.bmp|139|18| -%xl|T|vol3.bmp|139|18| -%xl|U|vol4.bmp|139|18| -%xl|V|vol5.bmp|139|18| -%xl|W|vol6.bmp|139|18| -%xl|X|vol7.bmp|139|18| -%xl|Y|vol8.bmp|139|18| -%xl|Z|vol9.bmp|139|18| -%x|g|bg.bmp|0|0| - -%al%pp of %pe - -%s%ac%?it<%it|%fn> -%s%t3%ac%?ia<%ia|%d2> -%s%t3%ac%?id<%id|%d1> - -%pb -%al%pc %ar-%pr -%?mp<|%xdy|%xdp||> -%?pv<%xdQ|%xdR|%xdS|%xdT|%xdU|%xdV|%xdW|%xdX|%xdY|%xdZ> -%?mh<%xdh|%xdb> -%?bp<%xdF|%?bl<%xdA|%xdB|%xdC|%xdD|%xdE>> -%?mm<%xdx|%xdr|%xdt|%xds> - - diff --git a/apps/wps/wpsbuild.pl b/apps/wps/wpsbuild.pl deleted file mode 100755 index 2eb76c6..0000000 --- a/apps/wps/wpsbuild.pl +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/perl - -my $wpslist=$ARGV[0]; - -if(!$wpslist) { - print "Usage: wpsbuilds.pl [WPSLIST]\n"; - exit; -} - -sub buildcfg { - my $cfg = $wps; - - $cfg =~ s/\.wps/.cfg/; - - open(CFG, ">$cfg"); - - print CFG <<MOO -\# $cfg generated by wpsbuild.pl -\# -wps: /.rockbox/wps/$wps -font: /.rockbox/fonts/$font -statusbar: $statusbar -MOO -; - close(CFG); -} - -open(WPS, "<$wpslist"); -while(<WPS>) { - my $l = $_; - if($l =~ /^ *\#/) { - # skip comment - next; - } - if($l =~ /^ *<wps>/i) { - $within = 1; - next; - } - if($within) { - if($l =~ /^ *<\/wps>/i) { - buildcfg(); - $within = 0; - } - elsif($l =~ /^Name: (.*)/i) { - $wps = $1; - } - elsif($l =~ /^Font: (.*)/i) { - $font = $1; - } - elsif($l =~ /^Statusbar: (.*)/i) { - $statusbar = $1; - } - } -} - |