allow users to determine which states they do not want to see.

some documention was changed as it was incorrect.
This commit is contained in:
kestes%tradinglinx.com 2001-02-27 15:10:09 +00:00
parent 38f36909cf
commit 926f415293

View File

@ -69,7 +69,7 @@ use TreeData;
use VCDisplay;
$VERSION = ( qw $Revision: 1.5 $ )[1];
$VERSION = ( qw $Revision: 1.6 $ )[1];
@ISA = qw(TinderDB::BasicTxtDB);
@ -241,6 +241,13 @@ sub status_table_row {
$NEXT_DB++;
foreach $status (keys %{ $DATABASE{$tree}{$time} }) {
# do not display bugs whos status_progres is null, these have
# been deemed uninteresting.
($BTData::STATUS_PROGRESS{$status}) ||
next;
my ($query_links) = '';
foreach $bug_id (sort keys %{ $DATABASE{$tree}{$time}{$status} }) {
@ -253,11 +260,12 @@ sub status_table_row {
foreach $field (@BTData::DISPLAY_FIELDS) {
# we display all fields even the empty ones, so that users
# can see which fields are empty.
my ($value) = $rec->{$field};
# many fields tend to be empty because it diffs the bug
# reports and only reports the lines which change and a few
# lines of context.
($value) ||
next;