Enhancement - next

- The next report is now a custom report.  There is also a nasty
  piece of logic that lets the next report exist as a custom report,
  and also with it's own handleReportNext function to prep and filter
  the tasks, then hand off to runCustomReport.
This commit is contained in:
Paul Beckingham
2009-06-25 00:47:07 -04:00
parent f31f068322
commit a32263e7ea
7 changed files with 134 additions and 199 deletions

View File

@@ -147,12 +147,19 @@ void Cmd::load ()
if (i->substr (0, 7) == "report.")
{
std::string report = i->substr (7, std::string::npos);
// Oh, what a massive hack. Shame. Shame.
// The "next" report is in limbo between being a built-in report and
// a custom report. The projection is defined as a custom report, but
// the restriction is different.
if (report.substr (0, 4) == "next")
continue;
std::string::size_type columns = report.find (".columns");
if (columns != std::string::npos)
{
report = report.substr (0, columns);
// Make sure a custom report does not clash with a built-in
// command.
if (std::find (commands.begin (), commands.end (), report) != commands.end ())