[or-cvs] r20991: {} exposing our operational underbelly a little bit at a time. (projects/todo)

phobos at seul.org phobos at seul.org
Fri Nov 20 01:23:58 UTC 2009


Author: phobos
Date: 2009-11-19 20:23:58 -0500 (Thu, 19 Nov 2009)
New Revision: 20991

Added:
   projects/todo/tpo-highlevel-tasklist.tjp
Log:
exposing our operational underbelly a little bit at a time.


Added: projects/todo/tpo-highlevel-tasklist.tjp
===================================================================
--- projects/todo/tpo-highlevel-tasklist.tjp	                        (rev 0)
+++ projects/todo/tpo-highlevel-tasklist.tjp	2009-11-20 01:23:58 UTC (rev 20991)
@@ -0,0 +1,227 @@
+project TorProject "High-Level Task Tracking" "1.0" 2009-11-19 - 2010-12-31 {
+  # Hide the clock time. Only show the date.
+  timeformat "%Y-%m-%d"
+  now 2009-11-19
+
+  # We want to compare the baseline scenario, to one with a slightly
+  # delayed start.
+  scenario plan "Plan" {
+    minslackrate 15.0
+  }
+}
+
+flags team
+
+resource torpeople "Active Tor Team" {
+resource carolyn "Carolyn" {limits{dailymax 4h}}
+resource sebastian "Sebastian" {limits{dailymax 4h}}
+resource nick "Nick" {limits{dailymax 8h}}
+resource jacob "Jacob" {limits{dailymax 8h}}
+resource mike "Mike" {limits{dailymax 8h}}
+resource roger "Roger" {limits{dailymax 8h}}
+resource andrew "Andrew" {limits{dailymax 8h}}
+resource steven "Steven" {limits{dailymax 4h}}
+resource karen "Karen" {limits{dailymax 4h}}
+resource volunteer "Volunteer Pool" {limits{dailymax 4h}}
+resource christian "Christian" {limits{dailymax 4h}}
+resource karsten "Karsten" {limits{dailymax 8h}}
+resource peter "Peter" {limits{dailymax 4h}}
+resource martin "Martin" {limits{dailymax 4h}}
+resource runa "Runa" {limits{dailymax 2h}}
+resource vendor "Paid Vendor" {limits{dailymax 16h}}
+resource melissa "Melissa" {limits{dailymax 4h}}
+resource auditor "Auditors" {limits{dailymax 16h}}
+}
+
+task op_main "Business Operations" {
+  task op_one "Community Forums" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate andrew, volunteer, vendor
+    complete 25
+  }
+  task op_two "Website Documentation Update" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate andrew, volunteer
+    complete 25
+  }
+  task op_three "Package Naming Conversion" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate andrew
+    complete 10
+  }
+  task op_four "Main Website Overhaul" {
+    start 2009-12-01
+    end 2010-02-28
+    allocate andrew, vendor
+    complete 5
+  }
+  task op_five "Legal Directory" {
+    start 2009-11-19
+    end 2010-01-31
+    allocate andrew, volunteer
+    complete 1
+  }
+  task op_six "Audit Prep" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate andrew, melissa, auditor
+    complete 30
+  }
+  task op_seven "T-shirt Store" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate andrew, vendor
+    complete 10
+  }
+  task op_eight "2010 Budget" {
+    start 2009-11-19
+    end 2009-12-05
+    allocate andrew, melissa
+    complete 50
+  }
+}
+
+task tr_main "Translations" {
+  task tr_one "Website and Pootle Integration" {
+    start 2009-11-19
+    end 2009-11-30
+    allocate runa, carolyn
+    complete 50
+  }
+  task tr_two "Burmese Translator" {
+    start 2009-11-19
+    end 2009-11-30
+    allocate carolyn, volunteer
+    complete 25
+  }
+  task tr_three "Arabic Translator" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate carolyn, volunteer
+    complete 0
+  }
+  task tr_four "Russian Translator" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate carolyn, volunteer
+    complete 25
+  }
+  task tr_five "Chinese Translator" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate carolyn, volunteer
+    complete 0
+  }
+  task tr_six "Spanish Translator" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate carolyn, volunteer
+    complete 0
+  }
+  task tr_seven "Automated Translator" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate carolyn, volunteer
+    complete 0
+  }
+}
+
+task finance "Financial Operations" {
+  task fin_one "2008 Reconciliation" {
+    start 2009-11-19
+    end 2009-11-30
+    allocate melissa, vendor
+    complete 80
+  }
+  task fin_two "2009 Accrual Conversion" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate melissa, vendor
+    complete 50
+  }
+  task fin_three "Audit Documentation Prep" {
+    start 2009-11-19
+    end 2009-12-15
+    allocate melissa, andrew
+    complete 25
+  }
+  task fin_four "Monthly Report Generation" {
+    start 2009-11-19
+    end 2009-12-31
+    allocate melissa
+    complete 25
+  }
+}
+
+
+# A traditional Gantt Chart for the TaskJugglerUI
+taskreport "Gantt Chart" {
+  headline "Project Gantt Chart"
+  columns hierarchindex, name, start, end, effort, duration, chart
+  # 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"
+  loadunit days
+  hideresource 1
+}
+
+# A list of tasks showing the resources assigned to each task.
+taskreport "Task Usage" {
+  headline "Task Usage Report"
+  columns hierarchindex, name, start, end, effort { title "Work" }, duration,
+          cost, revenue
+  timeformat "%Y-%m-%d"
+  loadunit days
+  hideresource 0
+}
+
+# A list of all tasks with the percentage complete for each task
+taskreport "Tracking Gantt" {
+  headline "Tracking Gantt Chart"
+  columns hierarchindex, name, start, end, effort { title "Work" }, duration,
+          completed, chart
+  timeformat "%a %Y-%m-%d"
+  loadunit days
+  hideresource 1
+}
+
+# A graph showing resource allocation. It identifies whether each
+# resource is under- or over-allocated for.
+resourcereport "Resource Graph" {
+  headline "Resource Allocation Graph"
+  columns no, name, rate, utilization, freeload, chart
+  loadunit days
+  hidetask 1
+}
+
+# A list of all project resources, both human and material resources,
+# together with the costs for each.
+resourcereport "Resource Sheet" {
+  headline "Resource Sheet"
+  columns no, name, efficiency, id, maxeffort, rate
+  loadunit days
+  hidetask 1
+}
+
+# A list of resources and each task associated with each resource.
+resourcereport "Resource Usage" {
+  headline "Resource Usage Report"
+  columns no, name, utilization, freeload, cost
+  loadunit days
+  hidetask 0
+}
+
+# This report looks like a regular calendar that shows the tasks by
+# their dates.
+htmlweeklycalendar "Calendar.html" {
+}
+
+# This report is a status report for the current week. It also
+# provides an outlook for the next week.
+htmlstatusreport "Status-Report.html" {
+}
+
+



More information about the tor-commits mailing list