summaryrefslogtreecommitdiffstats
path: root/tools/xmlGenerator
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xmlGenerator')
-rwxr-xr-xtools/xmlGenerator/PFWScriptGenerator.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/xmlGenerator/PFWScriptGenerator.py b/tools/xmlGenerator/PFWScriptGenerator.py
index ff83ed3..c63b806 100755
--- a/tools/xmlGenerator/PFWScriptGenerator.py
+++ b/tools/xmlGenerator/PFWScriptGenerator.py
@@ -689,7 +689,7 @@ class Configuration (ElementWithRuleInheritance, ElementWithTag) :
class GroupConfiguration (Configuration) :
tag = "GroupConfiguration"
optionNames = ["Name"]
- match = re.compile(r"supConf *:").match
+ match = re.compile(r"(supConf|confGroup|confType) *:").match
childWhiteList = ["Rule", "Operator", "GroupConfiguration", "Configuration", "GroupPath"]
def composition (self, context) :
@@ -889,8 +889,7 @@ class Domain (ElementWithRuleInheritance, ElementWithTag) :
class GroupDomain (Domain) :
tag = "groupDomain"
-
- match = re.compile(r"supDomain *:").match
+ match = re.compile(r"(supDomain|domainGroup) *:").match
childWhiteList = ["GroupDomain", "Domain", "GroupConfiguration", "Rule", "Operator"]
def toXML(self, context="") :
return self.childrenToXML(context)