blob: f7857717a9a26e784a2aaa3068f9cf586788c5ec [file] [log] [blame]
david_williams2e87efa2008-09-01 02:56:08 +00001<html>
2<head>
3
4<?php
5 $parts = explode("/", getcwd());
6 $parts2 = explode("-", $parts[count($parts) - 1]);
7 $buildName = $parts2[1];
8
9 echo "<title>Compile Logs: Code Bundles for $buildName</title>";
10?>
11
12<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
13
14<style>
15.bold, .bold TD, .bold TH, .bold TR
16{
17font-weight:bold;
18}
19.numeric, .numeric TD
20{
21text-align:right;
22padding-right:2%;
23}
24.normaltable, .normaltable TD, .normaltable TH
25{
26font-family:Bitstream Vera Sans Mono, monospace;
27font-size:0.9em;
28color:Black;
29background-color:White;
30}
31.errorltable, .errortable TD, .errortable TH
32{
33font-family:Bitstream Vera Sans Mono, monospace;
34font-size:0.9em;
35color:Black;
36background-color:Red;
37font-weight:bold;
38}
39.warningtable, .warningtable TD, .warningtable TH
40{
41font-family:Bitstream Vera Sans Mono, monospace;
42font-size:0.9em;
43color:Black;
44background-color:khaki;
45}
46.extraWarningTable, .extraWarningTable TD, .extraWarningTable TH
47{
48font-family:Bitstream Vera Sans Mono, monospace;
49font-size:0.9em;
50color:Black;
51background-color:Yellow;
52}
53</style>
54</head>
55<body>
56
57<?php
58 echo "<h1>Compile Logs: Code Bundles for $buildName</h1>";
59?>
60
61
62<table id=tabledata align = "center" width="75%" border="1">
63 <tr>
64 <td class="bold" align="center">Compile Logs</td>
65 <td class="bold" align="center">Compile Errors</td>
66 <td class="bold" align="center">Compiler Warnings</td>
67 <td class="bold" align="center">Access Violations</td>
68 <td class="bold" align="center">Access Warnings</td>
69 </tr>
70
71 %compilelogs%
72
73</table>
74
75</body>
76</html>