This repository was archived by the owner on Jun 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathoptions.html
More file actions
59 lines (59 loc) · 2.27 KB
/
options.html
File metadata and controls
59 lines (59 loc) · 2.27 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<title>Jenkins Notifier for Chrome™</title>
<meta HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="stylesheets/main.css" type="text/css" media="all">
<script type="text/javascript" src="javascripts/jquery.min.js"></script>
<script type="text/javascript" src="javascripts/options.js"></script>
</head>
<body>
<div class='main'>
<div class='header'>
<h1 style='font-size:1.5em;'>Jenkins Notifier for Chrome™</h1>
</div>
<div class='content'>
<form id="from">
<fieldset>
<div class="clearfix">
<div class="left">
<label>Jenkins URL </label>
</div>
<div class="right">
<input name="jenkins-url" id="jenkins-url" class="text" placeholder="http://localhost:8080/jenkins" autofocus="true" />
</div>
</div>
<div class="clearfix">
<div class="left">
<label>Job name</label>
</div>
<div class="right">
<input name="job-name" id="job-name" class="text" placeholder="jobname" />
</div>
</div>
<div class="clearfix">
<div class="left">
<label>Notify Only Fail</label>
</div>
<div class="right">
<input name="notify-only-fail" id="notify-only-fail" class="text" type="checkbox" />
</div>
</div>
<div class="clearfix">
<div class="left">
<label>Websocket</label>
</div>
<div class="right">
<input name="use-websocket" id="use-websocket" type="checkbox" /> Use<br />
<input name="websocket-url" id="websocket-url" class="text" placeholder="ws://localhost:8081/jenkins" /><br />
To use websocket, you need to install <a href="https://wiki.jenkins-ci.org/display/JENKINS/Websocket+Plugin">Jenkins Websocket Plugin</p>
</div>
</div>
</fieldset>
<div class="buttons">
<input value="Save" class="button save" type="submit" />
</div>
</form>
</div>
</div>
</body>
</html>