- Fixed bug #636, which causes the burndown reports to not honor the
  _forcecolor=off setting (thanks to Steve Rader, Uli Martens).

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Uli Martens 2012-02-13 06:15:27 -05:00 committed by Paul Beckingham
parent 28a4947234
commit 7fe5fc80e9
2 changed files with 35 additions and 17 deletions

View file

@ -131,6 +131,8 @@
handling and a formatting bug (thanks to Steve Rader).
+ Fixed bug #605, which gave misleading project completion percentages under
certain circumstances (thanks to Steve Rader).
+ Fixed bug #636, which causes the burndown reports to not honor the
_forcecolor=off setting (thanks to Steve Rader, Uli Martens).
+ Fixed bug #645 & #660, which prevented logically combining report filters
(thanks to Bryce Harrington).
+ Fixed bug #683, in which the 'config' command sometimes edited comments

View file

@ -560,6 +560,8 @@ std::string Chart::render ()
optimizeGrid ();
if (context.color ())
{
// Colorize the grid.
Color color_pending (context.config.get ("color.burndown.pending"));
Color color_done (context.config.get ("color.burndown.done"));
@ -575,6 +577,20 @@ std::string Chart::render ()
while ((i = grid.find ("DD")) != std::string::npos)
grid.replace (i, 2, color_done.colorize (" "));
}
else
{
// Replace DD, SS, PP with ./+/X strings.
std::string::size_type i;
while ((i = grid.find ("PP")) != std::string::npos)
grid.replace (i, 2, " X");
while ((i = grid.find ("SS")) != std::string::npos)
grid.replace (i, 2, " +");
while ((i = grid.find ("DD")) != std::string::npos)
grid.replace (i, 2, " .");
}
return grid;
}