Commit f428b3cc authored by wenjie.zheng's avatar wenjie.zheng

Worklist.py: when the key is causality in getVarMatch, return the causality state id directly.

parent 5997c51b
...@@ -131,8 +131,8 @@ class Worklist(IdAsReferenceMixin("worklist_", "prefix"), XMLObject): ...@@ -131,8 +131,8 @@ class Worklist(IdAsReferenceMixin("worklist_", "prefix"), XMLObject):
def getVarMatch(self, id): def getVarMatch(self, id):
""" return value of matched keys""" """ return value of matched keys"""
self.var_matches = {} #self.var_matches = {}
matches = '' matches = None
if id == 'portal_type': if id == 'portal_type':
v = ''.join(self.matched_portal_type) v = ''.join(self.matched_portal_type)
if tales_re.match(v).group(1): if tales_re.match(v).group(1):
...@@ -153,18 +153,19 @@ class Worklist(IdAsReferenceMixin("worklist_", "prefix"), XMLObject): ...@@ -153,18 +153,19 @@ class Worklist(IdAsReferenceMixin("worklist_", "prefix"), XMLObject):
matches_ref_list.append(self.getParent()._getOb(state_id).getReference()) matches_ref_list.append(self.getParent()._getOb(state_id).getReference())
matches = tuple(matches_ref_list) matches = tuple(matches_ref_list)
elif id == 'causality_state': elif id == 'causality_state':
matches_id_list = self.getMatchedCausalityStateList() matches_id = self.getMatchedCausalityState()
matches_ref_list = [] matches_ref_list = []
for state_id in matches_id_list: matches_ref_list.append(matches_id)
matches_ref_list.append(self.getParent()._getOb(state_id).getReference())
matches = tuple(matches_ref_list) matches = tuple(matches_ref_list)
else: else:
raise NotImplementedError ("Cataloged variable '%s' matching error in Worklist.py"%id) raise NotImplementedError ("Cataloged variable '%s' matching error in Worklist.py"%id)
if matches is not None: if matches is not None:
"""
if not isinstance(matches, (tuple, Expression)): if not isinstance(matches, (tuple, Expression)):
# Old version, convert it. # Old version, convert it.
matches = (matches,) matches = (matches,)
self.var_matches[id] = str(matches) self.var_matches[id] = str(matches)
"""
return matches return matches
else: else:
return () return ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment