From a75c018106af2b878230bc8d836de47c0b214790 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 9 Oct 2010 12:00:24 -0400 Subject: [PATCH] Report - New report, unblocked, which is the opposite of the blocked report. --- src/Config.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Config.cpp b/src/Config.cpp index 35a0503c3..c8a08a233 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -399,6 +399,14 @@ std::string Config::defaults = "report.blocked.sort=due+,priority-,active-,project+\n" "report.blocked.filter=status:pending depends.any:\n" "#report.blocked.dateformat=m/d/Y\n" + "\n" + "# task unblocked\n" + "report.unblocked.description=Lists all tasks matching the specified criteria\n" + "report.unblocked.columns=id,depends,project,priority,due,active,age,description\n" + "report.unblocked.labels=ID,Deps,Project,Pri,Due,Active,Age,Description\n" + "report.unblocked.sort=due+,priority-,active-,project+\n" + "report.unblocked.filter=status:pending depends.none:\n" + "#report.unblocked.dateformat=m/d/Y\n" "\n"; ////////////////////////////////////////////////////////////////////////////////