Sha256: dbda3d5143fad630684ac662d6477126409e5d210cde2af34420e574736822b3
Contents?: true
Size: 989 Bytes
Versions: 24
Compression:
Stored size: 989 Bytes
Contents
<html> <head> <title>DeepTest Test Server Status</title> <style> .ok { background-color: #AAFFAA; } .error { background-color: #FFAAAA; } </style> </head> <body> <h1>DeepTest Test Server Status</h1> <table> <tr> <th>Mirror Server</th> <th>Bound To</th> <th>Workers / Client</th> <th>Clients</th> </tr> <% test_server_statuses.each do |uri, status| if Exception === status %> <tr class="error"> <td><%=h uri %></td> <td colspan="3"><%=h status.message %></td> </tr> <% else %> <tr class="ok"> <td><%=h uri %></td> <td><%=h status.binding_uri %></td> <td><%=h status.number_of_workers %></td> <td><%=h status.remote_worker_server_count %></td> </tr> <% end end %> </table> </body> </html>
Version data entries
24 entries across 24 versions & 4 rubygems