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)
def __init__(self, job): Event.__init__(self, job) if job.event_level is not None: self.level = job.event_level
def __init__(self, *args): Event.__init__(self, *args) self.browser, self.url = args
def __init__(self, command, stdin): self.command = command self.stdin = stdin Event.__init__(self, command, stdin)
def __init__(self, name, location): Event.__init__(self, name, location) self.name = name self.location = location
def __init__(self, action, target, source=None): self.action = action self.target = target self.source = source Event.__init__(self, action, target, source)
def __init__(self, target, source): self.target = target self.source = source Event.__init__(self, target, source)