-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
845e91b
commit 0e0b379
Showing
2 changed files
with
53 additions
and
28 deletions.
There are no files selected for viewing
42 changes: 27 additions & 15 deletions
42
...ources/hudson/plugins/timestamper/annotator/TimestampAnnotatorFactory3/settingsForm.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,29 @@ | ||
<?jelly escape-by-default='true'?> | ||
<j:jelly xmlns:j="jelly:core"> | ||
<form> | ||
<label> | ||
<input type="radio" name="timestamps" id="timestamper-systemTime">${%System clock time}</input> | ||
</label> | ||
<label> | ||
<input type="checkbox" id="timestamper-localTime" style="margin-left: 15px;">${%Use browser timezone}</input> | ||
</label> | ||
<label> | ||
<input type="radio" name="timestamps" id="timestamper-elapsedTime">${%Elapsed time}</input> | ||
</label> | ||
<label> | ||
<input type="radio" name="timestamps" id="timestamper-none">${%None}</input> | ||
</label> | ||
</form> | ||
</j:jelly> | ||
<form> | ||
<div class="jenkins-radio"> | ||
<input type="radio" name="timestamps" id="timestamper-systemTime" class="jenkins-radio__input" /> | ||
<label for="timestamper-systemTime" class="jenkins-radio__label"> | ||
${%System clock time} | ||
</label> | ||
</div> | ||
<div class="jenkins-checkbox jenkins-!-margin-left-2"> | ||
<input type="checkbox" id="timestamper-localTime" /> | ||
<label for="timestamper-localTime"> | ||
${%Use browser timezone} | ||
</label> | ||
</div> | ||
<div class="jenkins-radio"> | ||
<input type="radio" name="timestamps" id="timestamper-elapsedTime" class="jenkins-radio__input" /> | ||
<label for="timestamper-elapsedTime" class="jenkins-radio__label"> | ||
${%Elapsed time} | ||
</label> | ||
</div> | ||
<div class="jenkins-radio"> | ||
<input type="radio" name="timestamps" id="timestamper-none" class="jenkins-radio__input" /> | ||
<label for="timestamper-none" class="jenkins-radio__label"> | ||
${%None} | ||
</label> | ||
</div> | ||
</form> | ||
</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