コード例 #1
0
ファイル: fs_util.py プロジェクト: ScottWales/rose
 def __init__(self, action, target, source=None):
     self.action = action
     # FIXME: We need to sort out the verbosity for file system events
     if self.action == self.COPY:
         self.level = Event.V
     self.target = target
     self.source = source
     Event.__init__(self, action, target, source)
コード例 #2
0
ファイル: fs_util.py プロジェクト: kinow/rose
 def __init__(self, action, target, source=None):
     self.action = action
     # FIXME: We need to sort out the verbosity for file system events
     if self.action == self.COPY:
         self.level = Event.V
     self.target = target
     self.source = source
     Event.__init__(self, action, target, source)
コード例 #3
0
ファイル: job_runner.py プロジェクト: craigmaclachlan/rose
 def __init__(self, job):
     Event.__init__(self, job)
     if job.event_level is not None:
         self.level = job.event_level
コード例 #4
0
ファイル: suite_engine_proc.py プロジェクト: hjoliver/rose
 def __init__(self, *args):
     Event.__init__(self, *args)
     self.browser, self.url = args
コード例 #5
0
ファイル: popen.py プロジェクト: arjclark/rose
 def __init__(self, command, stdin):
     self.command = command
     self.stdin = stdin
     Event.__init__(self, command, stdin)
コード例 #6
0
ファイル: job_runner.py プロジェクト: arjclark/rose
 def __init__(self, job):
     Event.__init__(self, job)
     if job.event_level is not None:
         self.level = job.event_level
コード例 #7
0
 def __init__(self, name, location):
     Event.__init__(self, name, location)
     self.name = name
     self.location = location
コード例 #8
0
ファイル: fs_util.py プロジェクト: jimbolton/rose
 def __init__(self, action, target, source=None):
     self.action = action
     self.target = target
     self.source = source
     Event.__init__(self, action, target, source)
コード例 #9
0
ファイル: popen.py プロジェクト: raghavendrads22/rose
 def __init__(self, command, stdin):
     self.command = command
     self.stdin = stdin
     Event.__init__(self, command, stdin)
コード例 #10
0
ファイル: suite_engine_proc.py プロジェクト: kaday/rose
 def __init__(self, name, location):
     Event.__init__(self, name, location)
     self.name = name
     self.location = location
コード例 #11
0
ファイル: suite_engine_proc.py プロジェクト: kaday/rose
 def __init__(self, *args):
     Event.__init__(self, *args)
     self.browser, self.url = args
コード例 #12
0
ファイル: suite_log_view.py プロジェクト: jimbolton/rose
 def __init__(self, target, source):
     self.target = target
     self.source = source
     Event.__init__(self, target, source)