File: project_a.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 (96 lines) | stat: -rw-r--r-- 1,373 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
project test "Test" "$Id" 2000-01-01-00:00:00-MST 2000-03-10-00:00:00-MST {
	timezone "US/Mountain"
	extend task {
		text UserText "User Text"
		reference UserRef "User Reference"
	}
}

include "workforce.tji"

task t1 "Task1" {
	start 2000-01-01
	effort 10d
	allocate r1
}

task t2 "Task2" {
	depends t1
	effort 10d
	allocate r2
}

task t3 "Task3" {
	start 2000-01-01
	length 13d
	allocate r3
}

task t4 "Task4" {
	task t1 "Task1"
	{
		depends !!t3
		duration 26d
		UserText "Hello, world!"
	}
	task t2 "Task2"
	{
		depends !t1
		effort 10d
		allocate r3
		UserRef "http://www.taskjuggler.org" { label "TaskJuggler" }
	}
}

task t5 "Task5" {
	depends t1
	priority 1000
	length 5d
	allocate r2
}

export "project_a_sub.tji" {
	taskroot t4
	taskattributes all 
	hideresource 0
}

export "project_a_1.tjp" {
	taskattributes all
	properties all
	hideresource 0
	notimestamp
}

export "project_a_2.tji" {
	taskattributes all
	properties tasks
	hideresource 0
	notimestamp
}

export "project_a_3.tji" {
	properties resources
	hideresource 0
	notimestamp
}

export "project_a_4.tji" {
	properties bookings
	hideresource 0
	notimestamp
}

htmltaskreport "project_a.html" {
	columns name, id, projectid, start, end, daily
	sorttasks nameup
	hideresource 0
	notimestamp
}

htmlresourcereport "project_a_res.html" {
	columns name, daily
  hidetask 0
	sorttasks nameup
	notimestamp
}