Esempio n. 1
0
 def run(self, controller, name):
     if self.search_str:
         reportusage.record_feature('query', controller)
     if self.queryPipeline is not None and \
         len(self.queryPipeline.modules) > 0:
         VisualQuery.run(self, controller, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt
Esempio n. 2
0
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     self.search_stmt = SearchCompiler(self.search_str).searchStmt
Esempio n. 3
0
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     self.search_stmt = SearchCompiler(self.search_str).searchStmt
Esempio n. 4
0
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt
Esempio n. 5
0
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt
Esempio n. 6
0
 def run(self, controller, name):
     if self.queryPipeline is not None and \
         len(self.queryPipeline.modules) > 0:
         VisualQuery.run(self, controller, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt