File: Celltext.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 (34 lines) | stat: -rw-r--r-- 763 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
26
27
28
29
30
31
32
33
34
project celltext  "celltext" "1.0" 2007-01-01 - 2007-03-01 {
  timezone "America/Denver"
}

# *** EXAMPLE: 1 +
resource tux "Tux"

task t "Task" {
  task s "SubTask" {
    start 2007-01-01
    effort 5d
    allocate tux
  }
}
# *** EXAMPLE: 1 -
# Just a very basic report with some standard columns
taskreport simple "SimpleReport" {
  formats html
  columns bsi, name, start, end, weekly
}

# Report with custom colum title
taskreport custom "CustomTitle" {
  formats html
  columns bsi, name { title "Work Item" }, effort
}

# *** EXAMPLE: 1 +
# Report with index and task name combined in one single column
taskreport combined "CombinedColumn" {
  formats html
  columns name { celltext 1 "<-query attribute='bsi'-> <-query->"},
          start, end, weekly
}