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 49 50 51 52 53 54 55 56 57 58 59
|
project "Extend Test" 2013-04-24 +1m {
extend task {
date DueDate "Due Date"
number Count "Count"
reference URL "URL"
richtext Claim "Claim"
text Intro "Intro"
date DueDateS "Due Date" { scenariospecific inherit }
number CountS "Count" { scenariospecific }
reference URLS "URL" { scenariospecific }
richtext ClaimS "Claim" { scenariospecific inherit }
text IntroS "Intro" { scenariospecific }
}
extend resource {
date Birthday "Birthday"
number Count "Count"
reference URL "URL"
richtext Claim "Claim"
text Intro "Intro"
date BirthdayS "Birthday" { scenariospecific inherit }
number CountS "Count" { scenariospecific }
reference URLS "URL" { scenariospecific }
richtext ClaimS "Claim" { scenariospecific inherit }
text IntroS "Intro" { scenariospecific }
}
scenario one "One" {
scenario two "Two"
}
}
resource "R" {
Birthday 2000-05-01
Count 42
URL "http://www.taskjuggler.org"
Claim "A '''big''' statement."
Intro "Let's think about this..."
two:BirthdayS 2000-05-01
two:CountS 42
two:URLS "http://www.taskjuggler.org" { label "TJ Web" }
two:ClaimS "A '''big''' statement."
two:IntroS "Let's think about this..."
}
task "T" {
DueDate 2013-05-01
Count 42
URL "http://www.taskjuggler.org"
Claim "A '''big''' statement."
Intro "Let's think about this..."
two:DueDateS 2013-05-01
two:CountS 42
two:URLS "http://www.taskjuggler.org" { label "TJ Web" }
two:ClaimS "A '''big''' statement."
two:IntroS "Let's think about this..."
}
|