SVN: toys/stbr/index.php

shadzik shadzik at pld-linux.org
Fri Sep 26 17:27:09 CEST 2008


Author: shadzik
Date: Fri Sep 26 17:27:09 2008
New Revision: 9874

Modified:
   toys/stbr/index.php
Log:
- show pld-line
- RC2


Modified: toys/stbr/index.php
==============================================================================
--- toys/stbr/index.php	(original)
+++ toys/stbr/index.php	Fri Sep 26 17:27:09 2008
@@ -39,6 +39,10 @@
 	width: 80px;
 }
 
+.line {
+	width: 20px;
+}
+
 .date { 
 	width: 80px;
 	text-align: center;
@@ -241,10 +245,10 @@
 </head>
 <body>
 
-<h2>Send To Builder Requests Log (RC1)</h2>
+<h2>Send To Builder Requests Log (RC2)</h2>
 <div onclick="javascript:document.getElementById('usageinfo').style.display='block'; this.style.display='none';">[ Click to show usage info ]</div>
 
-<table style="width: 900px; margin-bottom: 3em; display: none" id="usageinfo">
+<table style="width: 950px; margin-bottom: 3em; display: none" id="usageinfo">
 <thead>
 <tr><td class="branch"><b style="color: black;">Usage Info:</b></td></tr>
 </thead>
@@ -270,12 +274,13 @@
 <tr>
 <td>Date</td>
 <td>Requester</td>
-<td colspan="4">Application info</td>
+<td colspan="5">Application info</td>
 </tr>
 </thead>
 <tbody>
 <tr class="appInfoHead">
 <td colspan="2"></td>
+<td class="line">line</td>
 <td class="spec">spec</td>
 <td class="recip">recipient</td>
 <td class="builder">builder</td>
@@ -298,13 +303,13 @@
 	$query = "SELECT * FROM stbr ORDER BY date DESC $query";
 }
 
-$query = sqlite_query($db, $query);
+$query = sqlite_query($db,$query);
 
 while($p = sqlite_fetch_array($query))
 {
 	
 $inner  = "SELECT application.recipient as arecipient, application.spec as aspec, application.branch AS abranch, ";
-$inner .= " builder, queue_requester, queue_date, queue_flags, queue_builder_info ";
+$inner .= " builder, line, queue_requester, queue_date, queue_flags, queue_builder_info ";
 $inner .= "FROM application ";
 $inner .= "LEFT JOIN status ";
 $inner .= "ON (application.spec=status.spec AND application.date=status.date AND application.branch=status.branch) ";
@@ -325,7 +330,7 @@
 <tr class="entry">
 <td class="date" rowspan="<?=$rows?>"><?=$p['date']?></td>
 <td class="sender" rowspan="<?=$rows?>"><?=$sender?></td>
-<td colspan="4"></td>
+<td colspan="5"></td>
 </tr>
 <!-- inner evil -->
 <?
@@ -380,6 +385,7 @@
 	}
 ?>
 <tr class="application" <?=$title?>>
+<td class="line"><?=$q['line']?></td>
 <td class="spec"><a href="http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/<?=$q['aspec']?>?f=u&amp;only_with_tag=<?=$q['abranch']?>&amp;logsort=date"><?=$q['aspec']?></a>:<?=$q['abranch']?></td>
 <td class="recip"><a class="mailto"><?=$q['arecipient']?></a></td>
 <td class="builder"><?=$q['builder']?></td>


More information about the pld-cvs-commit mailing list