--- a/CodeFileTreeNode.py Thu Mar 21 13:10:49 2019 +0100
+++ b/CodeFileTreeNode.py Thu Mar 21 14:00:26 2019 +0100
@@ -36,6 +36,8 @@
from PLCControler import UndoBuffer
from ConfigTreeNode import XSDSchemaErrorMessage
+from plcopen.plcopen import TestTextElement CODEFILE_XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
@@ -212,7 +214,15 @@
def CTNSearch(self, criteria):
- return [((self.CTNFullName(),"var_inout",1,"name"), (0,2),(0,4),"a_cow"),
+ variables = self.GetVariables() + tagname = self.CTNFullName() + for index, var in enumerate(variables): + results.extend([((tagname, "var_inout", index, "name"),) + result + for result in TestTextElement(varname, criteria)]) + print("FFFFFFFFFF", results) + return results + [((self.CTNFullName(),"var_inout",1,"name"), (0,2),(0,4),"a_cow"), ((self.CTNFullName(),"body"), (1,12),(1,15),"Bitch I'm a cow !")]
# -------------------------------------------------------------------------------