Sha256: 761f9429db80a9c4ee7a42d1210e36a09dd3967051ceb614d1bc1d0f9bfc65df
Contents?: true
Size: 905 Bytes
Versions: 3
Compression:
Stored size: 905 Bytes
Contents
<html> <head> <title>Pkg Wizard's Build Bot</title> </head> <body> <link href='/screen.css' rel='stylesheet' type='text/css' /> <script src='/jquery.js'></script> <script> var conn; var connect = function() { if (window["WebSocket"]) { conn = new WebSocket('ws://' + location.hostname + ':@@NODEJSPORT@@'); conn.onmessage = function(evt) { data = $.parseJSON(evt.data); if(data.buildbot != null) { $('#buildbot').append("<div class=logline>" + unescape(data.buildbot) + "</div>"); } x = 0; //horizontal coord y = document.height; //vertical coord window.scroll(x,y); }; } }; window.onload = connect; </script> <div class='header'> <div> <img src="images/pkg-wizard-logo-small.png"/> </div> <div> build-bot logs </div> </div> <center style='padding-top: 20px;'> <div id="buildbot" class="log"> </div> </center> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pkg-wizard-0.1.29 | resources/public/index.html.tmpl |
pkg-wizard-0.1.28 | resources/public/index.html.tmpl |
pkg-wizard-0.1.27 | resources/public/index.html.tmpl |