Sha256: bb556991769a777a62ea0b798a3276a59d74c822ea7885357bc109d4bf85509a

Contents?: true

Size: 649 Bytes

Versions: 4

Compression:

Stored size: 649 Bytes

Contents

project "Journal" 2010-06-07 +1m

flags foo, bar

task "T" {
  duration 3w
  journalentry 2010-06-07-8:00 "Entry 1" {
    flags foo, bar
  }
  journalentry 2010-06-14-8:00 "Entry 2" {
    flags foo
  }
  journalentry 2010-06-21-8:00 "Entry 3" {
    flags bar
  }
}

taskreport "Journal-1" {
  formats csv
  # Only "Entry 2" should be included
  columns name, journal { period 2010-06-14 +1w }
}

taskreport "Journal-2" {
  formats csv
  # Only "Entry 1" should be included
  columns name, journal
  hidejournalentry ~(foo & bar)
}

textreport "Journal-3" {
  formats html

  hidejournalentry foo
  left -8<-
  <-query attribute='journal'->
  ->8-
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
taskjuggler-0.2.1 test/TestSuite/ReportGenerator/Correct/Journal.tjp
taskjuggler-0.2.0 test/TestSuite/ReportGenerator/Correct/Journal.tjp
taskjuggler-0.1.1 test/TestSuite/ReportGenerator/Correct/Journal.tjp
taskjuggler-0.1.0 test/TestSuite/ReportGenerator/Correct/Journal.tjp