david_williams | 2e87efa | 2008-09-01 02:56:08 +0000 | [diff] [blame] | 1 | <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 | { |
| 17 | font-weight:bold; |
| 18 | } |
| 19 | .numeric, .numeric TD |
| 20 | { |
| 21 | text-align:right; |
| 22 | padding-right:2%; |
| 23 | } |
| 24 | .normaltable, .normaltable TD, .normaltable TH |
| 25 | { |
| 26 | font-family:Bitstream Vera Sans Mono, monospace; |
| 27 | font-size:0.9em; |
| 28 | color:Black; |
| 29 | background-color:White; |
| 30 | } |
| 31 | .errorltable, .errortable TD, .errortable TH |
| 32 | { |
| 33 | font-family:Bitstream Vera Sans Mono, monospace; |
| 34 | font-size:0.9em; |
| 35 | color:Black; |
| 36 | background-color:Red; |
| 37 | font-weight:bold; |
| 38 | } |
| 39 | .warningtable, .warningtable TD, .warningtable TH |
| 40 | { |
| 41 | font-family:Bitstream Vera Sans Mono, monospace; |
| 42 | font-size:0.9em; |
| 43 | color:Black; |
| 44 | background-color:khaki; |
| 45 | } |
| 46 | .extraWarningTable, .extraWarningTable TD, .extraWarningTable TH |
| 47 | { |
| 48 | font-family:Bitstream Vera Sans Mono, monospace; |
| 49 | font-size:0.9em; |
| 50 | color:Black; |
| 51 | background-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> |