save supposed afterEvent config in class Job member (fixes #394 DVDBurn shutdown...
[enigma2.git] / lib / python / Components / Task.py
index 86bd233ed261a372d642e869d965cb9b7d02e191..2e4e757de86525bdc2054d3535d8263d43f32de9 100644 (file)
@@ -16,6 +16,7 @@ class Job(object):
                self.end = 100
                self.__progress = 0
                self.weightScale = 1
+               self.afterEvent = None
 
                self.state_changed = CList()
 
@@ -371,12 +372,18 @@ class ToolExistsPrecondition(Condition):
        def check(self, task):
                import os
                
-               self.realpath = task.cmd
-               path = os.environ.get('PATH', '').split(os.pathsep)
-               absolutes = filter(lambda file: os.access(file, os.X_OK), map(lambda directory, file = task.cmd: os.path.join(directory, file), path))
-               if len(absolutes) > 0:
-                       self.realpath = task.cmd[0]
-                       return True
+               if task.cmd[0]=='/':
+                       self.realpath = task.cmd
+                       print "[Task.py][ToolExistsPrecondition] WARNING: usage of absolute paths for tasks should be avoided!" 
+                       return os.access(self.realpath, os.X_OK)
+               else:
+                       self.realpath = task.cmd
+                       path = os.environ.get('PATH', '').split(os.pathsep)
+                       path.append(task.cwd + '/')
+                       absolutes = filter(lambda file: os.access(file, os.X_OK), map(lambda directory, file = task.cmd: os.path.join(directory, file), path))
+                       if len(absolutes) > 0:
+                               self.realpath = task.cmd[0]
+                               return True
                return False 
 
        def getErrorMessage(self, task):