]> git.pld-linux.org Git - projects/buildlogs.git/commitdiff
Show rpmqa db creation time.
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 14 Oct 2014 11:03:42 +0000 (11:03 +0000)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 14 Oct 2014 11:03:42 +0000 (11:03 +0000)
index.php

index 6c04500a79d544ba6ff021e3e56be48b46aa85ce..aec2cbeebd08484473af35a64230f8b8520cfae5 100644 (file)
--- a/index.php
+++ b/index.php
@@ -534,7 +534,7 @@ function list_archs()
                "alt=\""._("Powered by PLD Linux")."\" border=\"0\" /></a><br />\n" .
             "<small>(c) ". date("Y") . " ".
             "<a href=\"mailto:feedback@pld-linux.org\">PLD&nbsp;Team</a><br />\n".
-            '$Revision: 1.28 $'.
+            '$Revision: 1.29 $'.
             "</small></div>\n";
 
        # smile ;)
@@ -606,10 +606,15 @@ function search_qa()
                echo _("Sorry, cannot open.");
        } else {
                while (($s = fgets($f, 1000)) != false) {
+                       if (stristr($s, "Query done at:")) {
+                               echo "rpmqa database from " . strstr($s, ":") . "\n";
+                                               continue;
+                       }
+
                        if (stristr($s, $str))
                                echo $s;
                }
-               echo "/* EOF */";
+               echo "\n/* EOF */";
        }
        end_pre();
 }
@@ -903,7 +908,7 @@ function welcome()
 <!-- ech... niech strace... -->
 <a href="mailto:feedback@pld-linux.org"><?=_("to us")?></a>. <?=_("Positive opinions are also")?>
 <a href="mailto:feedback@pld-linux.org"><?=_("welcome")?></a> ;)</p>
-<p>Version: $Id: index.php,v 1.28 2014/10/12 22:38:52 arekm Exp $</p>
+<p>Version: $Id: index.php,v 1.29 2014/10/14 10:56:24 arekm Exp $</p>
 </td><td width="20%">&nbsp;</td></tr>
 </table>
 <?php
This page took 0.039337 seconds and 4 git commands to generate.