Sha256: 3db40a6da8406a10d7ea92feb6a160a831981a61c60afcb968c3237933095407

Contents?: true

Size: 812 Bytes

Versions: 6

Compression:

Stored size: 812 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 + ':@@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>

<center><span class="header">BUILD BOT LOGS</span></center>
<br/>
<br/>

<div id="buildbot" class="log">
</div>

</body>

</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pkg-wizard-0.1.26 resources/wslogview/index.html.tmpl
pkg-wizard-0.1.25 resources/wslogview/index.html.tmpl
pkg-wizard-0.1.24 resources/wslogview/index.html.tmpl
pkg-wizard-0.1.23 resources/wslogview/index.html.tmpl
pkg-wizard-0.1.22 resources/wslogview/index.html.tmpl
pkg-wizard-0.1.21 resources/wslogview/index.html.tmpl