-
-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathconfig.jelly
More file actions
66 lines (66 loc) · 2.58 KB
/
config.jelly
File metadata and controls
66 lines (66 loc) · 2.58 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
<?jelly escape-by-default='true'?>
<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" xmlns:c="/lib/credentials">
<f:entry title="URL" field="url">
<f:textbox />
</f:entry>
<f:entry title="Link URL" field="alternativeUrl" description="${%site.alternativeUrl}">
<f:textbox />
</f:entry>
<f:invisibleEntry>
<f:checkbox title="${%Use HTTP authentication instead of normal login}" field="useHTTPAuth" />
</f:invisibleEntry>
<f:entry description="${%site.useBearerAuth}">
<f:checkbox title="${%Use Bearer authentication instead of Basic authentication}" field="useBearerAuth" />
</f:entry>
<f:entry>
<f:checkbox title="${%Supports Wiki notation}" field="supportsWikiStyleComment" />
</f:entry>
<f:entry>
<f:checkbox title="${%Record Scm changes}" field="recordScmChanges" />
</f:entry>
<f:entry>
<f:checkbox title="${%Disable changelog annotations}" field="disableChangelogAnnotations" />
</f:entry>
<f:entry title="${%Issue Pattern}" field="userPattern">
<f:textbox />
</f:entry>
<f:entry>
<f:checkbox title="${%Update Relevant Jira Issues For All Build Results}" field="updateJiraIssueForAllStatus" />
</f:entry>
<f:entry title="${%Credentials}" field="credentialsId">
<c:select />
</f:entry>
<f:entry title="${%Connection timeout}" field="timeout">
<f:number default="10" />
</f:entry>
<f:entry title="${%Read timeout}" field="readTimeout">
<f:number default="30" />
</f:entry>
<f:entry title="${%Thread Executor Size}" field="threadExecutorNumber">
<f:number default="10" />
</f:entry>
<f:entry title="${%Visible for Group}" field="groupVisibility">
<f:textbox />
</f:entry>
<f:entry title="${%Visible for Project Role}" field="roleVisibility">
<f:textbox />
</f:entry>
<f:entry>
<f:checkbox title="${%Add timestamp to Jira comments}" field="appendChangeTimestamp" />
</f:entry>
<f:entry title="${%Jira comments timestamp format}" field="dateTimePattern">
<f:textbox />
</f:entry>
<f:entry title="${%Max Issues From Jql Search}" field="maxIssuesFromJqlSearch">
<f:number default="100" max="5000" clazz="non-negative-number-required" />
</f:entry>
<f:entry>
<f:validateButton title="${%Validate Settings}"
method="validate" with="url,credentialsId,groupVisibility,roleVisibility,useHTTPAuth,alternativeUrl,timeout,readTimeout,threadExecutorNumber,useBearerAuth" />
</f:entry>
<f:entry title="">
<div align="right">
<f:repeatableDeleteButton />
</div>
</f:entry>
</j:jelly>