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