diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-16 18:20:33 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-16 18:20:33 (GMT) |
commit | 05111e25fd10aa140cd823d37ca884b73dad2725 (patch) | |
tree | d656d5587f140f40eee47ee2cbfe51552e89511c /tools/ThemeQRC.py | |
parent | b6742f9054f368f634a2a269a7ca146a1b250f3b (diff) | |
download | swift-05111e25fd10aa140cd823d37ca884b73dad2725.zip swift-05111e25fd10aa140cd823d37ca884b73dad2725.tar.bz2 |
Removing obsolete files.
Diffstat (limited to 'tools/ThemeQRC.py')
-rwxr-xr-x | tools/ThemeQRC.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/ThemeQRC.py b/tools/ThemeQRC.py deleted file mode 100755 index 63de8c3..0000000 --- a/tools/ThemeQRC.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python - -import os, sys, os.path - -print "<RCC version =\"1.0\">" -print "<qresource prefix=\"/themes/Default\">" -for (path, dirs, files) in os.walk(sys.argv[1]) : - for file in files : - filePath = os.path.join(path,file) - print "<file alias=\"%(alias)s\">%(path)s</file>" % { - "alias": filePath[len(sys.argv[1])+1:], - "path": filePath - } - -print "</qresource>" -print "</RCC>" - |