Example #1
0
 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)
Example #2
0
 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)
Example #3
0
 def __init__(self, job):
     Event.__init__(self, job)
     if job.event_level is not None:
         self.level = job.event_level
Example #4
0
 def __init__(self, *args):
     Event.__init__(self, *args)
     self.browser, self.url = args
Example #5
0
 def __init__(self, command, stdin):
     self.command = command
     self.stdin = stdin
     Event.__init__(self, command, stdin)
Example #6
0
 def __init__(self, job):
     Event.__init__(self, job)
     if job.event_level is not None:
         self.level = job.event_level
 def __init__(self, name, location):
     Event.__init__(self, name, location)
     self.name = name
     self.location = location
Example #8
0
 def __init__(self, action, target, source=None):
     self.action = action
     self.target = target
     self.source = source
     Event.__init__(self, action, target, source)
Example #9
0
 def __init__(self, command, stdin):
     self.command = command
     self.stdin = stdin
     Event.__init__(self, command, stdin)
Example #10
0
 def __init__(self, name, location):
     Event.__init__(self, name, location)
     self.name = name
     self.location = location
Example #11
0
 def __init__(self, *args):
     Event.__init__(self, *args)
     self.browser, self.url = args
Example #12
0
 def __init__(self, target, source):
     self.target = target
     self.source = source
     Event.__init__(self, target, source)