1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
<html>
<head>
<title>Py.test</title>
<script type="text/javascript" src="/jssource"></script>
<style type="text/css">
body, td, div {
font-family: Andale mono;
background-color: #ffd;
color: #003;
}
#info {
visibility: hidden;
position: fixed;
left: 0px;
top: 0px;
text-align: center;
width: 100%;
z-index: 2;
}
div.main {
margin-right: 170px;
}
.error {
color: #F00;
font-weight: bold;
}
#navbar {
position: fixed;
right: 1em;
top: 1em;
background-color: #ffd;
border: 1px solid #003;
z-index: 1;
width: 160px;
}
#navbar tr, #navbar td {
border: 0px;
}
#navbar a {
color: #003;
text-decoration: none;
}
#navbar .title {
font-weight: bold;
}
#jobs {
position: absolute;
visibility: hidden;
right: 2px;
}
#jobs, #jobs td {
background-color: #ffd;
border: 1px solid #003;
}
#jobs tr, #jobs td {
border: 0px;
}
#hosts {
width: 100%;
}
</style>
</head>
<body onload="main()">
<a name="beginning">
<h3 id="Tests">Tests</h3>
</a>
<div id="info">
 
</div>
<table id="navbar">
<tbody>
<tr>
<td class="title">Hosts status</td>
</tr>
<tr>
<td>
<table id="hosts">
<tbody id="hostsbody">
</tbody>
</table>
<table id="jobs">
</table>
</td>
</tr>
<tr>
<td class="title">Navigation</td>
</tr>
<tr>
<td><a href="#beginning">Top</a></td>
</tr>
<tr>
<td><a href="#message">Traceback info</a></td>
</tr>
<tr>
<td><a href="#aftermessage">End of Traceback</a></td>
</tr>
<tr>
<td class="title">Options</td>
</tr>
<tr>
<td><input type="checkbox" id="opt_scroll" onchange="javascript:opt_scroll()"/><u>S</u>croll with tests arriving</td>
</tr>
</tbody>
</table>
<table id="main_table">
</table>
<fieldset id="messagebox_fieldset">
<legend><b>Data [<a href="javascript:hide_messagebox()">hide</a>]:</b></legend>
<a name="message">
<div id="messagebox"></div>
</a>
</fieldset>
<a name="aftermessage">
<div id="testmain"></div>
</a>
</body>
</html>
|