forked from creade/Radiatr
-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
33 lines (25 loc) · 1.17 KB
/
README
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
Special thanks to Dave Yeung and Fabio Pereira.
Other contributions Chris Reade, Derek Hammer and Sudhindra Rao
This is a simple hudson build monitor using greasemonkey on Firefox.
To use :
Download these files and install the javascript file into greasemonkey plugin for firefox.
After installation just edit the test-page.html to point to your hudson build machine with builds you are interested in. Load this page into Firefox and voila you are ready to go.
Your html should be formatted as follows:
<html>
<link rel="stylesheet" rev="stylesheet" href="radiatr.css" media="screen">
<head><title>Hudson Radiatr</title></head>
<body>
<div id="statuses">
<div id="[build id]" class="status hudson">
<a class="subject" href="[build url]">[build name]</a>
<br/>
<span class="statusInWords"></span>
<span class="healthScore"></span><br/>
<span class="changeSetComment"></span><br />
<span class="claim"></span>
</div>
</div>
</body>
</html>
To contribute you may download this code and submit pull requests.
To facilitate testing a simple sinatra test server has been added (test_server.rb) which requires you to have rubygems sinatra and json installed.