예제 #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
 def __init__(self, job):
     Event.__init__(self, job)
     if job.event_level is not None:
         self.level = job.event_level
예제 #4
0
 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
 def __init__(self, command, stdin):
     self.command = command
     self.stdin = stdin
     Event.__init__(self, command, stdin)
예제 #10
0
 def __init__(self, name, location):
     Event.__init__(self, name, location)
     self.name = name
     self.location = location
예제 #11
0
 def __init__(self, *args):
     Event.__init__(self, *args)
     self.browser, self.url = args
예제 #12
0
 def __init__(self, target, source):
     self.target = target
     self.source = source
     Event.__init__(self, target, source)