copyright <text>

copyright <text>
Description

Adds a copyright notice to all subsequently defined reports. This notice may contain any text. The notice is added at the bottom of the report.

AttributesNameTypeDescription
textSTRING 
ContextThe TJP File,
InheritableNoScenario Spec.No
See alsoheadline, caption

project simple "Simple Project" "1.0" 2005-06-06 - 2005-06-26
  
copyright "Bucks Beavis Inc."

resource tux "Tux"

task items "Project breakdown" {
  start 2005-06-06

  task plan "Plan work" {
    length 3d
  }

  task implementation "Implement work" {
    effort 5d
    allocate tux
    depends !plan
  }

  task acceptance "Customer acceptance" {
    duration 5d
    depends !implementation
  }
}

htmltaskreport "ProjectBreakdown.html" {
  caption "This is the project breakdown"
  headline "Project Breakdown"
  columns name, start, end, daily
  # Don't hide any resource, meaning show them all.
  hideresource 0
}