コード例 #1
0
ファイル: combined.py プロジェクト: vistrails-ufrj/VisTrails
 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
コード例 #2
0
ファイル: combined.py プロジェクト: cjh1/VisTrails
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     self.search_stmt = SearchCompiler(self.search_str).searchStmt
コード例 #3
0
ファイル: combined.py プロジェクト: painter1/vistrails
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     self.search_stmt = SearchCompiler(self.search_str).searchStmt
コード例 #4
0
ファイル: combined.py プロジェクト: Nikea/VisTrails
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt
コード例 #5
0
ファイル: combined.py プロジェクト: licode/VisTrails
 def run(self, vistrail, name):
     VisualQuery.run(self, vistrail, name)
     compiler = SearchCompiler(self.search_str, self.use_regex)
     self.search_stmt = compiler.searchStmt
コード例 #6
0
ファイル: combined.py プロジェクト: sguzwf/VisTrails
 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