Sha256: 053ebc3631f7b9f83814b4d3cecbcb7f46ad8a2fd01e0041225698a923a86759
Contents?: true
Size: 837 Bytes
Versions: 3
Compression:
Stored size: 837 Bytes
Contents
<html> <head> <title>PKG Wizard 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 + ':60001'); 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> logs </div> </div> <div id="buildbot" class="log"> </div> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pkg-wizard-0.1.29 | resources/public/index.html |
pkg-wizard-0.1.28 | resources/public/index.html |
pkg-wizard-0.1.27 | resources/public/index.html |