1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
project project "Include task prefix test" "1.0" 2010-12-01 +1m {
timezone "Europe/Amsterdam"
now 2010-12-01
}
resource tux "Tux"
task parent_task "Parent task" {
start ${projectstart}
allocate tux
}
include "TaskPrefix.tji" { taskprefix parent_task }
task other_task "Other task" {
start ${projectstart}
effort 1d
allocate tux
}
supplement resource tux {
booking parent_task.sub_task1 2010-12-01-9:00 +9h { sloppy 2 }
booking other_task 2010-12-02-9:00 +9h { sloppy 2 }
}
|