Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
28 additions
and 4 deletions.
- +1 −1 src/main/java/org/jvnet/hudson/plugins/triggers/startup/HudsonComputerListener.java
- +14 −1 src/main/java/org/jvnet/hudson/plugins/triggers/startup/HudsonStartupTrigger.java
- +5 −1 src/main/resources/org/jvnet/hudson/plugins/triggers/startup/HudsonStartupTrigger/config.jelly
- +1 −1 src/main/resources/org/jvnet/hudson/plugins/triggers/startup/HudsonStartupTrigger/help-label.html
- +7 −0 ...in/resources/org/jvnet/hudson/plugins/triggers/startup/HudsonStartupTrigger/help-quietPeriod.html
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,7 +1,11 @@ | ||
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form"> | ||
|
||
<f:entry field="label" title="${%Restricted node Label}"> | ||
<f:textbox name="label" value="${instance.label}"/> | ||
</f:entry> | ||
|
||
<f:entry field="quietPeriod" title="${%Quiet period}"> | ||
<f:textbox name="quietPeriod" value="${instance.quietPeriod}"/> | ||
</f:entry> | ||
|
||
</j:jelly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,7 @@ | ||
<div> | ||
<p> | ||
Give the quiet period before scheduling the job.<br/> | ||
The time unit is in seconds.<br/> | ||
'0' is the default value, the job is scheduling without any delay at startup. | ||
</p> | ||
</div> |