mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Burndown Chart
- Implemented burndown.daily, which is functional, but has outstanding problems that need to be addressed: - Slow - Does not optimize output (i.e. contains /\S\s+$/) - Needs generalized helper functions to reduce the size of the handler
This commit is contained in:
parent
94480c23d2
commit
652b7d9c8d
16 changed files with 1594 additions and 782 deletions
|
@ -218,6 +218,9 @@ int Context::dispatch (std::string &out)
|
|||
else if (cmd.command == "history.annual") { rc = handleReportHistoryAnnual (out); }
|
||||
else if (cmd.command == "ghistory.monthly") { rc = handleReportGHistoryMonthly (out); }
|
||||
else if (cmd.command == "ghistory.annual") { rc = handleReportGHistoryAnnual (out); }
|
||||
else if (cmd.command == "burndown.daily") { rc = handleReportBurndownDaily (out); }
|
||||
else if (cmd.command == "burndown.weekly") { rc = handleReportBurndownWeekly (out); }
|
||||
else if (cmd.command == "burndown.monthly") { rc = handleReportBurndownMonthly (out); }
|
||||
else if (cmd.command == "summary") { rc = handleReportSummary (out); }
|
||||
else if (cmd.command == "calendar") { rc = handleReportCalendar (out); }
|
||||
else if (cmd.command == "timesheet") { rc = handleReportTimesheet (out); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue