summaryrefslogtreecommitdiffstats
path: root/tools/bundlecvt.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bundlecvt.py')
-rw-r--r--tools/bundlecvt.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/bundlecvt.py b/tools/bundlecvt.py
deleted file mode 100644
index 176c9a46d..000000000
--- a/tools/bundlecvt.py
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env python
-# $Id: $
-
-from os import listdir
-from sys import argv
-from elementtree.ElementTree import XML, Element, tostring
-
-if __name__ == '__main__':
- bname = argv[1]
- translations = argv[2]
- tdata = {}
-
- for t in listdir(translations):
- data = XML(open("%s/%s"%(translations,t)).read())
- tdata[data.attrib['system']] = {'VConfig':{}, 'VPackage':{}, 'VService':{}, 'VFS':{}}
- for entry in data.getchildren():
- if entry.tag == 'Image':
- continue
- tdata[data.attrib['system']][entry.tag][entry.attrib['name']] = entry.getchildren()
- bundle = XML(open(bname).read())
-
- new = Element('Bundle', version='2.0', name=bundle.attrib['name'])
-
- for system in tdata.keys():
- b = Element("System", name=system)
- for entry in bundle.getchildren():
- try:
- map(b.append, tdata[system][entry.tag][entry.attrib['name']])
- except:
- pass
- new.append(b)
-
- print tostring(new)
-