summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-03-05 17:49:51 +0000
committerRomain d'Alverny <rda@mageia.org>2012-03-05 17:49:51 +0000
commitdbbb1feebd74e38c0075911795e285c7b0864bc0 (patch)
tree66f21b8526d27d544ad4542ee9be483ad071ba82 /index.php
parentf1b2fbc3eab56a244f27023916495909bfba675a (diff)
downloadpkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar
pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.gz
pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.bz2
pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.xz
pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.zip
drop unused "built" status; different color for "rejected"
Diffstat (limited to 'index.php')
-rw-r--r--index.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/index.php b/index.php
index 40010d0..ea9c3d8 100644
--- a/index.php
+++ b/index.php
@@ -212,8 +212,7 @@ $stats = array(
'failure' => 0,
'todo' => 0,
'building' => 0,
- 'partial' => 0,
- 'built' => 0,
+ 'partial' => 0
);
$total = count($pkgs);
@@ -286,19 +285,19 @@ header(sprintf('X-BS-Buildtime-Average: %5.2f', $buildtime_avg));
tr { background: transparent; }
tr.uploaded { background: #bbffbb; }
- tr.failure, tr.rejected { background: #ffbbbb; }
+ tr.failure { background: #cc8888; }
+ tr.rejected { background: #B68A8A; }
tr.todo { background: white; }
tr.building { background: #ffff99; }
tr.partial { background: #bbbbff; }
- tr.built { background: #cceeff; }
td.status-box { width: 1em; height: 1em; }
tr.uploaded td.status-box { background: green; }
- tr.failure td.status-box, tr.rejected td.status-box { background: red; }
+ tr.failure td.status-box { background: red; }
+ tr.rejected td.status-box { background: brown; }
tr.todo td.status-box { background: white; }
tr.building td.status-box { background: yellow; }
tr.partial td.status-box { background: blue; }
- tr.built td.status-box { background: #00ccff; }
#stats { float: right; }
#score { margin-bottom: 2em; font-family: Helvetica, Verdana, Arial, sans-serif; }