Minor tweaks to index.php look
This commit is contained in:
parent
d633bcc8a2
commit
2beb53d1c4
3 changed files with 11 additions and 6 deletions
|
@ -18,6 +18,10 @@ table.build {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
td.time {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.build .passed {
|
||||
color: #00FF00;
|
||||
}
|
||||
|
|
|
@ -202,7 +202,8 @@ class Build {
|
|||
$build_result = '';
|
||||
if ($this->status == self::S_GOOD)
|
||||
{
|
||||
$build_result = "Build successed.";
|
||||
$build_result = "Build successed." //. " Kaak Test Test"
|
||||
;
|
||||
} else {
|
||||
$build_result = "Build failed:\n" . $this->error_msg;
|
||||
}
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
</tr><tr>
|
||||
<td class="time">{$build.time|date_format:"%H:%M %b %e, %Y"}</td>
|
||||
<td class="revision {$build.style}">r{$build.svn_rev}</td>
|
||||
<td class="message">{$build.result|autohide:20:true}</td>
|
||||
<td class="message {$build.style}">{$build.result|autohide:20:true}</td>
|
||||
<td class="testresult {$build.result_style}">{$build.result_passed}/{$build.result_passed+$build.result_failed}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br/>
|
||||
<h3>Errors in unit test in the latest build</h3>
|
||||
<h3>Errors in unit tests in the latest build</h3>
|
||||
<table class="test_error" border="1">
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
|
@ -28,9 +28,9 @@
|
|||
<td class="{$err.error_type}">{$err.error_type}</td>
|
||||
<td class="{$err.error_type}">r{$err.start_version}</td>
|
||||
<td class="{$err.error_type}">r{$err.end_version}</td>
|
||||
<td>{$err.file|autohide:30:false:true}</td>
|
||||
<td>{$err.line}</td>
|
||||
<td>{$err.error_msg|autohide:40:true}</td>
|
||||
<td class="{$err.error_type}">{$err.file|autohide:25:false:true}</td>
|
||||
<td class="{$err.error_type}">{$err.line}</td>
|
||||
<td class="{$err.error_type}">{$err.error_msg|autohide:40:true}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
|
|
Loading…
Add table
Reference in a new issue