File: CustomAttributes-1.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 (48 lines) | stat: -rw-r--r-- 955 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
project ca "Custom Attributes" "$Id: CustomAttributes-1.tjp 600 2003-10-29 21:30:24Z cs $" 2003-05-28 2003-06-28 {
	extend task {
		reference MyTLink "My TLink"
		text MyTText "My TText"
		text MyText "My Text" { inherit }
	}

	extend resource {
		reference MyRLink "My RLink"
		text MyRText "My RText"
		text MyText "My Text"
	}
}

resource r1 "Resource 1" {
	MyRLink "http://www.taskjuggler.org/download.php"
	MyRText "It's all right!"
	MyText "Just around the corner"
}

task t1 "Task 1" {
	start 2003-05-28
	MyTLink "http://www.taskjuggler.org" { label "TJ Web" }
	MyTText "TJ is great!"
	MyText "No man's land!"

	task t3 "Task 3" {
		effort 1d
		allocate r1	
	}
}

task t2 "Task 2" {
	MyText "Hello, world!"

	task t4 "Task 4" {
		milestone
		depends !!t1
	}
}

htmltaskreport "." {
	columns no { celltext "Hallo" hidecelltext ~isLeaf() }, 
	        name { celltext "[$${MyText}] $${0}" }, 
					MyText, MyTLink, MyTText, MyRLink
	hideresource 0
}