-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathconfig.jelly
41 lines (32 loc) · 1.81 KB
/
config.jelly
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
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry title="Project Room">
<f:textbox name="hipChatProjectRoom" value="${instance.getRoom()}"/>
</f:entry>
<f:entry title="Notify Build Start">
<f:checkbox name="hipChatStartNotification" value="true" checked="${instance.getStartNotification()}"/>
</f:entry>
<f:entry title="Notify Aborted">
<f:checkbox name="hipChatNotifyAborted" value="true" checked="${instance.getNotifyAborted()}"/>
</f:entry>
<f:entry title="Notify Failure">
<f:checkbox name="hipChatNotifyFailure" value="true" checked="${instance.getNotifyFailure()}"/>
</f:entry>
<f:entry title="Notify Not Built">
<f:checkbox name="hipChatNotifyNotBuilt" value="true" checked="${instance.getNotifyNotBuilt()}"/>
</f:entry>
<f:entry title="Notify Success">
<f:checkbox name="hipChatNotifySuccess" value="true" checked="${instance.getNotifySuccess()}"/>
</f:entry>
<f:entry title="Notify Unstable">
<f:checkbox name="hipChatNotifyUnstable" value="true" checked="${instance.getNotifyUnstable()}"/>
</f:entry>
<f:entry title="Notify Back To Normal">
<f:checkbox name="hipChatNotifyBackToNormal" value="true" checked="${instance.getNotifyBackToNormal()}"/>
</f:entry>
<f:entry title="Conditional Notify" help="${rootURL}/plugin/hipchat/help-config-hipChatConditionalNotify.html">
<f:textbox name="hipChatConditionalNotify" value="${instance.getConditionalNotify()}"/>
</f:entry>
<f:entry title="Custom Message" help="${rootURL}/plugin/hipchat/help-config-hipChatCustomMessage.html">
<f:textbox name="hipChatCustomMessage" value="${instance.getCustomMessage()}"/>
</f:entry>
</j:jelly>