-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathconfig.jelly
More file actions
72 lines (59 loc) · 2.37 KB
/
config.jelly
File metadata and controls
72 lines (59 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core"
xmlns:f="/lib/form">
<f:entry title="URL" field="url">
<f:textbox default="${descriptor.globalUrl}"/>
</f:entry>
<f:entry title="Name" field="name">
<f:textbox default="${descriptor.globalName}"/>
</f:entry>
<f:advanced>
<f:section title="Build status">
<f:description>
This section defines for which build statuses the notification is sent.
</f:description>
<f:entry title="Notify Build Start" field="startNotification" >
<f:checkbox/>
</f:entry>
<f:entry title="Notify Aborted" field="notifyAborted">
<f:checkbox/>
</f:entry>
<f:entry title="Notify Failure" field="notifyFailure">
<f:checkbox default="true"/>
</f:entry>
<f:entry title="Notify Not Built" field="notifyNotBuilt">
<f:checkbox/>
</f:entry>
<f:entry title="Notify Success" field="notifySuccess">
<f:checkbox default="true"/>
</f:entry>
<f:entry title="Notify Unstable" field="notifyUnstable">
<f:checkbox default="true"/>
</f:entry>
<f:entry title="Notify Back To Normal" field="notifyBackToNormal">
<f:checkbox default="true"/>
</f:entry>
<f:entry title="Notify Repeated Failure" field="notifyRepeatedFailure">
<f:checkbox/>
</f:entry>
</f:section>
<f:section title="Advanced configuration">
<f:entry title="Macros" field="macros">
<f:repeatableProperty minimum="0" field="macros" add="Add Macro">
</f:repeatableProperty>
</f:entry>
<f:entry title="Fact Definitions" field="factDefinitions">
<f:repeatableProperty minimum="0" field="factDefinitions" add="Add Fact">
</f:repeatableProperty>
</f:entry>
<f:entry title="Timeout" description="Timeout (in ms)" field="timeout">
<f:number default="${descriptor.defaultTimeout}"/>
</f:entry>
</f:section>
</f:advanced>
<f:entry>
<div align="right">
<f:repeatableDeleteButton/>
</div>
</f:entry>
</j:jelly>