summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2022-11-11 14:37:48 +0000
committerPascal Terjan <pterjan@mageia.org>2022-11-11 14:37:48 +0000
commit6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6 (patch)
tree672e89c84cdf544bef23dce95767462ad227e23c
parentce7924949f63c09f3ba0626738eb3688f05995a9 (diff)
downloadpkgsubmit-6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6.tar
pkgsubmit-6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6.tar.gz
pkgsubmit-6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6.tar.bz2
pkgsubmit-6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6.tar.xz
pkgsubmit-6c2b1c11c7fe0f41a07dbfbffaba16adf70701e6.zip
Display maintainers in the table
-rw-r--r--autobuild/results.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/autobuild/results.php b/autobuild/results.php
index f0b0264..7daecd8 100644
--- a/autobuild/results.php
+++ b/autobuild/results.php
@@ -342,7 +342,7 @@ if ($all_attrs) {
}
echo "<h2>Failed builds ($nb_failed/$nb_tried)</h2>\n";
echo "<table class=\"failureTable\" >\n";
-echo "<tr><th></th><th>Status</th><th>Failure type</th><th>Build step</th><th></th><th>Languages</th><th>Detected errors</th></tr>\n";
+echo "<tr><th></th><th>Maintainer</th><th>Status</th><th>Failure type</th><th>Build step</th><th></th><th>Languages</th><th>Detected errors</th></tr>\n";
foreach ($failure as $rpm => $error) {
$parsed = parse_package($rpm);
$history_link = '<a href="history.php?package='.$parsed['package'].'">History</a>';
@@ -424,7 +424,7 @@ foreach ($failure as $rpm => $error) {
} else {
echo "<td>$rpm</td>";
}
- echo "<td>$status_html</td><td>$error_html</td><td>$stage</td><td>$history_link</td><td>$langs</td><td>$errors</td></tr>\n";
+ echo "<td>$maintainer</td><td>$status_html</td><td>$error_html</td><td>$stage</td><td>$history_link</td><td>$langs</td><td>$errors</td></tr>\n";
}
$db->close();
?>