コード例 #1
0
 def configuration(self):
     config = Calculator.configuration(self)
     get_attribute(self, 'message', config)
     get_attribute(self, 'poll_period', config, str)
     get_attribute(self, 'critical_input', config)
     get_attribute(self, 'send_retries', config)
     get_attribute(self, 'enabled', config, str)
     return config
コード例 #2
0
ファイル: trigger.py プロジェクト: mcruse/monotone
 def configuration(self):
     config = Calculator.configuration(self)
     get_attribute(self,'message', config)
     get_attribute(self, 'poll_period', config, str)
     get_attribute(self, 'critical_input', config)
     get_attribute(self, 'send_retries', config)
     get_attribute(self, 'enabled', config, str)
     return config
コード例 #3
0
ファイル: triggers.py プロジェクト: mcruse/monotone
 def configuration(self):
     config = Calculator.configuration(self)
     config.update(_Trigger.configuration(self))
     get_attribute(self,'message', config)
     get_attribute(self, 'poll_period', config, str)
     get_attribute(self, 'critical_input', config)
     get_attribute(self,'description', config)
     get_attribute(self, 'enabled', config, str)
     return config
コード例 #4
0
ファイル: triggers.py プロジェクト: ed-aicradle/monotone
 def configuration(self):
     config = Calculator.configuration(self)
     config.update(_Trigger.configuration(self))
     get_attribute(self, 'message', config)
     get_attribute(self, 'poll_period', config, str)
     get_attribute(self, 'critical_input', config)
     get_attribute(self, 'description', config)
     get_attribute(self, 'enabled', config, str)
     return config