Fix adding of variants to catalog property-list

This commit is contained in:
James Turner
2016-01-03 19:49:54 -06:00
parent 5b1b01bb0f
commit 141be1410a
2 changed files with 19 additions and 3 deletions

View File

@@ -15,16 +15,28 @@ class VariantData:
#self._primary = primary
self._path = path
self._name = node.getValue("sim/description")
if (not self._name):
print "Missing description for " + path
self._name = "Missing description:" + self.id
# ratings
# seperate thumbnails
@property
def name(self):
return self._name
@property
def id(self):
return self._path[:-8] # "remove -set.xml" (8 chars)
@property
def catalogNode(self):
n = sgprops.Node("variant")
n.addChild("id").value = self._path[:-8] # "remove -set.xml" (8 chars)
n.addChild("name").value = self._name
n.addChild("id").value = self.id
n.addChild("name").value = self.name
return n
class PackageData:
def __init__(self, path, scmRepo):