reference <url>

reference <url>
Description

A reference to an external document. If you need more than one reference, you can create your own URL placeholders.

AttributesNameTypeDescription
urlSTRING

Should be a well formed URL.

Optional Attributeslabel
Contexttask,
InheritableNoScenario Spec.No
See alsoextend

project ca "Custom Attributes" "1.0" 2003-05-28 - 2003-06-28 {
  extend task {
    reference MyLink "My Link"
    text MyText "My Text" { inherit }
  }
}

task t "Task" {
  start 2003-05-28
  milestone
  MyLink "http://www.taskjuggler.org" { label "TJ Web" }
  MyText "TaskJuggler is great!"
}

2; [, <criteria> ... ]
start <date>
start <date>
startbuffer <percent>
startcredit <amount>
statusnote <text>
strict
subtitle <text>
subtitleurl <url>
supplement <type>
svgtimetimereport <filename>
task <id> <name>
taskattributes <attribute> [, <attribute> ... ]
taskbarprefix <text>
taskbarpostfix <text>
taskprefix <prefix>
taskreport <file>
taskroot <root>
timezone <zone>
timeformat <format>
timingresolution <value> <unit>
title <text>
titleurl <url>
vacation <name> <interval>
vacation <interval>
version <number>
weekdays <weekday> [, <weekday> ... ]
weeklymax <value> <unit>
weekstartsmonday
weekstartssunday
workinghours <weekday> [, <weekday> ... ] <interval> [, <interval> ... ]
xmlreport <file>
yearlyworkingdays <days>

The TJP File

The TJP File
Description

All TaskJuggler project files should start with the project property and must contain at least one task definition. To visualize the results of the scheduling process, at least one of the reports should be specified.

Optional Attributesaccount, copyright, csvaccountreport, csvresourcereport, csvtaskreport, export, flags, htmlaccountreport, htmlresourcereport, htmlstatusreport, htmltaskreport, htmlmonthlycalendar, htmlweeklycalendar, include, macro, maxeffort, limits, priority, projectid, projectids, project, rate, resource, shift, supplement, svgtimetimereport, task, vacation, xmlreport
Context 
InheritableNoScenario Spec.No

project simple "Simple Project" "1.0" 2005-06-06 - 2005-06-26

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
  }
}

taskreport "My Tasks"