Feature 429 - The default 'all' report should exclude tasks with status:deleted

- Added feature #429, which improves the 'all' report to exclude deleted
  tasks, provide a new sort order and include the 'end' column.
This commit is contained in:
Paul Beckingham 2010-07-16 22:39:07 -04:00
parent 9385492114
commit 63e42c6607
2 changed files with 6 additions and 3 deletions

View file

@ -340,9 +340,10 @@ std::string Config::defaults =
"\n"
"# task all\n"
"report.all.description=Lists all tasks matching the specified criteria\n"
"report.all.columns=id,project,priority,due,active,age,description\n"
"report.all.labels=ID,Project,Pri,Due,Active,Age,Description\n"
"report.all.sort=due+,priority-,active-,project+\n"
"report.all.columns=id,project,priority,due,end,active,age,description\n"
"report.all.labels=ID,Project,Pri,Due,Completed,Active,Age,Description\n"
"report.all.sort=project+,due+,end+,priority-,active-,description+\n"
"report.all.filter=status.not:deleted\n"
"#report.all.dateformat=m/d/Y\n"
"#report.all.annotations=full\n"
"\n"