summaryrefslogtreecommitdiff
path: root/utils/themeeditor/addresourcedir.php
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-05 20:38:04 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-05 20:38:04 +0000
commitac58d02ceef534ef3a42c8d40ac106f1943f351d (patch)
tree99353c14a9f90fd64e6c5358ad6fcf63db98c4d1 /utils/themeeditor/addresourcedir.php
parent4158192975728d0c00212ae09844e7e295b98ab0 (diff)
downloadrockbox-ac58d02ceef534ef3a42c8d40ac106f1943f351d.zip
rockbox-ac58d02ceef534ef3a42c8d40ac106f1943f351d.tar.gz
rockbox-ac58d02ceef534ef3a42c8d40ac106f1943f351d.tar.bz2
rockbox-ac58d02ceef534ef3a42c8d40ac106f1943f351d.tar.xz
Theme Editor: Added a small PHP script to auto-generate a qrc entry for a directory with aliases for each file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27298 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/addresourcedir.php')
-rwxr-xr-xutils/themeeditor/addresourcedir.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/utils/themeeditor/addresourcedir.php b/utils/themeeditor/addresourcedir.php
new file mode 100755
index 0000000..3c2ac33
--- /dev/null
+++ b/utils/themeeditor/addresourcedir.php
@@ -0,0 +1,46 @@
+#!/usr/bin/php -q
+<?php
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2010 Robert Bieber
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+
+if($argc < 2)
+ $path = getcwd();
+else
+ $path = $argv[1];
+if($path[count($path) - 1] != '/')
+ $path = $path . '/';
+$dir = dir($path);
+$split = explode("/", $path);
+$last = $split[count($split) - 2];
+echo "\t<qresource prefix=\"/$last\">\n";
+while(false !== ($entry = $dir->read()))
+{
+ if($entry == '.' || $entry == '..')
+ continue;
+ echo "\t\t";
+ echo "<file alias = \"$entry\">";
+ echo $path . $entry . "</file>";
+ echo "\n";
+}
+echo "\t</qresource>\n";
+$dir->close();
+
+?>