File tree Expand file tree Collapse file tree
org/jenkinsci/plugins/github/config/GitHubPluginConfig Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?jelly escape-by-default =' true' ?>
2+ <j : jelly xmlns : j =" jelly:core" xmlns : d =" jelly:define" >
3+ <!-- TODO remove and switch to div after baseline is 2.264 or newer -->
4+ <j : choose >
5+ <j : when test =" ${divBasedFormLayout}" >
6+ <div >
7+ <d : invokeBody />
8+ </div >
9+ </j : when >
10+ <j : otherwise >
11+ <table style =" width:100%" >
12+ <d : invokeBody />
13+ </table >
14+ </j : otherwise >
15+ </j : choose >
16+ </j : jelly >
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import com.cloudbees.jenkins.GitHubPushTrigger
44import lib.FormTagLib
55
66def f = namespace(FormTagLib );
7+ def g = namespace(" /lib/github" )
78
89f. section(title : descriptor. displayName) {
910 f. entry(title : _(" GitHub Servers" ),
@@ -24,7 +25,7 @@ f.section(title: descriptor.displayName) {
2425
2526 if (GitHubPushTrigger . ALLOW_HOOKURL_OVERRIDE ) {
2627 f. entry(title : _(" Override Hook URL" )) {
27- table( width : " 100% " , style : " margin-left: 7px; " ) {
28+ g . blockWrapper {
2829 f. optionalBlock(title : _(" Specify another hook URL for GitHub configuration" ),
2930 inline : true ,
3031 checked : instance. isOverrideHookUrl()) {
You can’t perform that action at this time.
0 commit comments