mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-04 12:28:35 +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
15
src/main.h
15
src/main.h
|
@ -103,10 +103,6 @@ int shortUsage (std::string&);
|
|||
int longUsage (std::string&);
|
||||
int handleInfo (std::string&);
|
||||
int handleReportSummary (std::string&);
|
||||
int handleReportHistoryMonthly (std::string&);
|
||||
int handleReportHistoryAnnual (std::string&);
|
||||
int handleReportGHistoryMonthly (std::string&);
|
||||
int handleReportGHistoryAnnual (std::string&);
|
||||
int handleReportCalendar (std::string&);
|
||||
int handleReportStats (std::string&);
|
||||
int handleReportTimesheet (std::string&);
|
||||
|
@ -116,6 +112,17 @@ std::string getDueDate (Task&, const std::string&);
|
|||
std::string onProjectChange (Task&, bool scope = true);
|
||||
std::string onProjectChange (Task&, Task&);
|
||||
|
||||
// burndown.cpp
|
||||
int handleReportBurndownDaily (std::string&);
|
||||
int handleReportBurndownWeekly (std::string&);
|
||||
int handleReportBurndownMonthly (std::string&);
|
||||
|
||||
// history.cpp
|
||||
int handleReportHistoryMonthly (std::string&);
|
||||
int handleReportHistoryAnnual (std::string&);
|
||||
int handleReportGHistoryMonthly (std::string&);
|
||||
int handleReportGHistoryAnnual (std::string&);
|
||||
|
||||
// custom.cpp
|
||||
int handleCustomReport (const std::string&, std::string&);
|
||||
void validReportColumns (const std::vector <std::string>&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue