Skip to content

Commit

Permalink
Use upper case labels (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesbusy authored Apr 24, 2024
1 parent 0556751 commit 0086709
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
<f:entry title="${%Blocking Jobs}" field="blockingJobs">
<f:textarea/>
</f:entry>
<f:section title="${%configure block level}">
<f:entry description="${%blocks this build if any of the defined jobs is running on any node}">
<f:radio title="${%block on global level}" name="blockLevel" value="global"
<f:section title="${%Configure block level}">
<f:entry description="${%Blocks this build if any of the defined jobs is running on any node}">
<f:radio title="${%Block on global level}" name="blockLevel" value="global"
checked="${empty instance.blockLevel or instance.blockLevel.global}"/>
</f:entry>
<f:entry
description="${%blocks this build if any of the defined jobs is running on the same node this build is running on}">
<f:radio title="${%block on node level}" name="blockLevel" value="node"
description="${%Blocks this build if any of the defined jobs is running on the same node this build is running on}">
<f:radio title="${%Block on node level}" name="blockLevel" value="node"
checked="${instance.blockLevel.node}"/>
</f:entry>
</f:section>
<f:section title="${%configure queue scanning}">
<f:entry description="${%consider ready to run builds of the defined jobs for the blocking decision}">
<f:radio title="${%check buildable queued builds}" name="scanQueueFor" value="buildable"
<f:radio title="${%Check buildable queued builds}" name="scanQueueFor" value="buildable"
checked="${instance.scanQueueFor.buildable}"/>
</f:entry>
<f:entry
description="${%consider all builds of the defined jobs for the blocking decision, including blocked, waiting, pending and buildable}">
<f:radio title="${%check all queued builds}" name="scanQueueFor" value="all"
description="${%Consider all builds of the defined jobs for the blocking decision, including blocked, waiting, pending and buildable}">
<f:radio title="${%Check all queued builds}" name="scanQueueFor" value="all"
checked="${instance.scanQueueFor.all}"/>
</f:entry>
<f:entry>
<f:radio title="${%disable queue checking}" name="scanQueueFor" value="disabled"
<f:radio title="${%Disable queue checking}" name="scanQueueFor" value="disabled"
checked="${empty instance.scanQueueFor or instance.scanQueueFor.disabled}"/>
</f:entry>
</f:section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@
<f:entry title="${%Blocking Jobs}" field="blockingJobs">
<f:textarea/>
</f:entry>
<f:section title="${%configure block level}">
<f:entry description="${%blocks this build if any of the defined jobs is running on any node}">
<f:radio title="${%block on global level}" name="blockLevel" value="global"
<f:section title="${%Configure block level}">
<f:entry description="${%Blocks this build if any of the defined jobs is running on any node}">
<f:radio title="${%Block on global level}" name="blockLevel" value="global"
checked="${empty instance.blockLevel or instance.blockLevel.global}"/>
</f:entry>
<f:entry
description="${%blocks this build if any of the defined jobs is running on the same node this build is running on}">
<f:radio title="${%block on node level}" name="blockLevel" value="node"
description="${%Blocks this build if any of the defined jobs is running on the same node this build is running on}">
<f:radio title="${%Block on node level}" name="blockLevel" value="node"
checked="${instance.blockLevel.node}"/>
</f:entry>
</f:section>
<f:section title="${%configure queue scanning}">
<f:entry description="${%consider ready to run builds of the defined jobs for the blocking decision}">
<f:radio title="${%check buildable queued builds}" name="scanQueueFor" value="buildable"
<f:section title="${%Configure queue scanning}">
<f:entry description="${%Consider ready to run builds of the defined jobs for the blocking decision}">
<f:radio title="${%Check buildable queued builds}" name="scanQueueFor" value="buildable"
checked="${instance.scanQueueFor.buildable}"/>
</f:entry>
<f:entry
description="${%consider all builds of the defined jobs for the blocking decision, including blocked, waiting, pending and buildable}">
<f:radio title="${%check all queued builds}" name="scanQueueFor" value="all"
description="${%Consider all builds of the defined jobs for the blocking decision, including blocked, waiting, pending and buildable}">
<f:radio title="${%Check all queued builds}" name="scanQueueFor" value="all"
checked="${instance.scanQueueFor.all}"/>
</f:entry>
<f:entry>
<f:radio title="${%disable queue checking}" name="scanQueueFor" value="disabled"
<f:radio title="${%Disable queue checking}" name="scanQueueFor" value="disabled"
checked="${empty instance.scanQueueFor or instance.scanQueueFor.disabled}"/>
</f:entry>
</f:section>
Expand Down

0 comments on commit 0086709

Please sign in to comment.