OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-tools Date: 10-Oct-2005 23:06:08
Branch: HEAD Handle: 2005101022060800
Modified files:
openpkg-tools/cmd bf-ui.pl
Log:
compute useful rowtotal in matrix for EVAL and JUNK packages
Summary:
Revision Changes Path
1.21 +6 -0 openpkg-tools/cmd/bf-ui.pl
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-tools/cmd/bf-ui.pl
============================================================================
$ cvs diff -u -r1.20 -r1.21 bf-ui.pl
--- openpkg-tools/cmd/bf-ui.pl 27 Sep 2005 13:30:13 -0000 1.20
+++ openpkg-tools/cmd/bf-ui.pl 10 Oct 2005 21:06:08 -0000 1.21
@@ -1253,6 +1253,8 @@
$rowtotal = "green" if ($class eq "CORE" and
$support >= 2 and $support <= 4);
$rowtotal = "green" if ($class eq "BASE" and
$support == 3);
$rowtotal = "green" if ($class eq "PLUS" and
$support == 3);
+ $rowtotal = "green" if ($class eq "EVAL");
+ $rowtotal = "green" if ($class eq "JUNK");
}
}
elsif ($color eq "red") {
@@ -1260,6 +1262,8 @@
$rowtotal = "red" if ($class eq "CORE" and $support
>= 2 and $support <= 4);
$rowtotal = "red" if ($class eq "BASE" and $support
== 3);
$rowtotal = "red" if ($class eq "PLUS" and $support
== 3);
+ $rowtotal = "red" if ($class eq "EVAL");
+ $rowtotal = "red" if ($class eq "JUNK");
}
else {
$line .= "$l<img
src=\"$myurl?page=gif&name=icon-dot\" class=\"$color\" alt=\"$color\"
border=\"0\">$r";
@@ -1267,6 +1271,8 @@
$rowtotal = "blue" if ($class eq "CORE" and
$support >= 2 and $support <= 4);
$rowtotal = "blue" if ($class eq "BASE" and
$support == 3);
$rowtotal = "blue" if ($class eq "PLUS" and
$support == 3);
+ $rowtotal = "blue" if ($class eq "EVAL");
+ $rowtotal = "blue" if ($class eq "JUNK");
}
}
}
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]