File: TaskTree-Reference.tjp

package info (click to toggle)
taskjuggler 2.3.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,764 kB
  • ctags: 3,700
  • sloc: cpp: 36,852; sh: 12,761; xml: 5,541; perl: 5,207; makefile: 269; python: 258; lisp: 67
file content (67 lines) | stat: -rw-r--r-- 1,490 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * For details about TaskJuggler see http://www.taskjuggler.org
 */
project simple "Simple Project" "$Id" 2000-01-01-00:00:00-GMT 2000-01-30-23:59:59-GMT {
  timezone "GMT"
  dailyworkinghours 8
  yearlyworkingdays 260.714
  timingresolution 60min
  timeformat "%Y-%m-%d %H:%M"
  shorttimeformat "%H:%M"
  currencyformat "(" ")" "," "." 0
  weekstartsmonday
    workinghours sun off
    workinghours mon 9:00 - 12:00, 13:00 - 18:00
    workinghours tue 9:00 - 12:00, 13:00 - 18:00
    workinghours wed 9:00 - 12:00, 13:00 - 18:00
    workinghours thu 9:00 - 12:00, 13:00 - 18:00
    workinghours fri 9:00 - 12:00, 13:00 - 18:00
    workinghours sat off
  scenario plan "Plan" {
    enabled
  }
}
projectids simple
task t1 "Task1" {
  projectid simple
  plan:start 2000-01-01-00:00:00-+0000
  plan:end 2000-01-14-18:00:00-+0000
  plan:scheduled
  scheduling asap
}
task t2 "Task2" {
  projectid simple
  precedes m1
  plan:start 2000-01-10-09:00:00-+0000
  plan:end 2000-01-14-18:00:00-+0000
  plan:scheduled
  scheduling alap
}
task m1 "Milestone1" {
  projectid simple
  depends t1
  plan:start 2000-01-14-18:00:00-+0000
  plan:scheduled
  milestone 
  scheduling asap
}
task t3 "Task3" {
  projectid simple
  depends m1
  plan:start 2000-01-14-18:00:00-+0000
  plan:end 2000-01-21-18:00:00-+0000
  plan:scheduled
  scheduling asap
}
supplement task t1 {
  priority 500
}
supplement task t2 {
  priority 500
}
supplement task m1 {
  priority 500
}
supplement task t3 {
  priority 500
}