summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElan Ruusamäe2014-07-21 13:04:49 (GMT)
committerElan Ruusamäe2014-07-21 13:04:49 (GMT)
commit81fd4c9011563900fe64111253457240e661500b (patch)
tree503c6633d8e479f011e485f2a2330317ed8692e5
parent38f51586d969e97b53327e266d8ba52e4b2cafdf (diff)
downloadpld-ftp-admin-81fd4c9011563900fe64111253457240e661500b.zip
pld-ftp-admin-81fd4c9011563900fe64111253457240e661500b.tar.gz
qa: add link to raw, add ac-th-diff
-rw-r--r--html/qa.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/html/qa.php b/html/qa.php
index 89513cd..41c02db 100644
--- a/html/qa.php
+++ b/html/qa.php
@@ -32,6 +32,7 @@ $reports = array(
"main-ready-i486" => "Main ready deps i486",
"main-ready-test-i486" => "Main+ready+test deps i486",
+ "ac-th-diff" => "Differences between AC and TH",
"freshness" => "GIT vs FTP freshness",
"lint-PLD" => "rpmlint: main",
@@ -44,9 +45,10 @@ echo "<select id=q name=q>\n";
foreach ($reports as $q => $title) {
printf("<option value=%s %s>%s</option>\n", $q, $q == $report ? 'selected' :'', $title);
}
-echo "</select><br/>\n";
+echo "</select>\n";
if (isset($reports[$report])) {
+ echo "<a href=$report.txt>raw</a><br/>\n";
$file = "$report.txt";
$giturl = 'http://git.pld-linux.org/gitweb.cgi?p=packages/%1$s.git;f=%1$s.spec;h=HEAD;a=shortlog';
foreach (file($file) as $line) {