File: TaskPrefix.tjp

package info (click to toggle)
tj3 3.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,048 kB
  • sloc: ruby: 36,481; javascript: 1,113; sh: 19; makefile: 17
file content (25 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (4)
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 }
}