fixed the group that should be associated with a field
This commit is contained in:
parent
5ddee57ef7
commit
c7bddb6630
|
@ -87,10 +87,10 @@ class XternalAppsParametricTool():
|
||||||
xml, types, modelInstance, inputs = self.interpretXML()
|
xml, types, modelInstance, inputs = self.interpretXML()
|
||||||
for (input, modelElement, type) in inputs.values():
|
for (input, modelElement, type) in inputs.values():
|
||||||
simpleName = re.sub(r'( |[^-a-zA-Z0-9])+', ' ', input.attrib['label']).title().replace(' ', '')
|
simpleName = re.sub(r'( |[^-a-zA-Z0-9])+', ' ', input.attrib['label']).title().replace(' ', '')
|
||||||
input.xpath('ancestor-or-self::group')
|
group = "/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None
|
||||||
obj.addProperty(typeToFreeCADType(type),
|
obj.addProperty(typeToFreeCADType(type),
|
||||||
simpleName,
|
simpleName,
|
||||||
"/".join(input.xpath('ancestor-or-self::xforms:group/xforms:label/text()', namespaces=ns)) or None,
|
group,
|
||||||
input.attrib['label'] + '\nA value of type ' + type)
|
input.attrib['label'] + '\nA value of type ' + type)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in New Issue
Block a user