project ExampleDependencies "Example Dependencies Modelled" "1.0" 2006-01-01 2006-12-31 { now 2006-01-17 workinghours mon 08:00-12:00 , 13:00-17:00 workinghours tue 08:00-12:00 , 13:00-17:00 workinghours wed 08:00-12:00 , 13:00-17:00 workinghours thu 08:00-12:00 , 13:00-17:00 workinghours fri 08:00-12:00 , 13:00-17:00 workinghours sat off workinghours sun off timeformat "%Y-%m-%d" } task SS_DependencyExample "SS Dependency Example"{ task A "A" { start 2006-01-16-08:00 milestone } task B "B" { depends !A length 5d } task C "C" { depends !A length 3d } } task FF_DependencyExample "FF Dependency Example"{ task A "A" { #depends !!SS_DependencyExample.B start 2006-01-20-17:00 milestone } task B "B" { precedes !A length 5d } task C "C" { precedes !A length 3d } } task FS_DependencyExample "FS Dependency Example"{ task A "A" { start 2006-01-20-17:00 #depends !!SS_DependencyExample.C length 5d } task B "B" { note "FS dependency achieved through 'precedes' statement" precedes !A length 3d } } taskreport "Project Overview" { timeformat "%Y-%m-%d %k:%M" columns monthly, hierarchindex, start, end, name, effort { title "work" },duration, completed, chart #columns start, end, name, effort { title "work" }, duration, #completed, cost, revenue, chart #hidetask administration hideresource 0 sorttasks tree, sequenceup } # As the first report, we would like to have a general overview of all # tasks with their computed start and end dates. For better # readability we include a calendar like column that lists the effort # for each week. htmltaskreport "Tasks-Overview.html" { # This report should contain the navigation bar we have declared # above. #${navbar} # The report should be a table that contains several columns. The # task and their information form the rows of the table. Since we # don't like the title of the effort column, we change it to "Work". hidetask administration columns hierarchindex, name, duration, effort { title "Work"}, start, end, daily start 2006-01-01 end 2006-04-01 # For this report we like to have the abbreviated weekday in front # of the date. %a is the tag for this. timeformat "%a %Y-%m-%d" # Don't show load values. barlabels empty # Set a title for the report headline "Abstrudo Project" # And a short description what this report is about. caption "This table presents a management-level overview of the project. The values are days or man-days." }