Jenkins JavaScript enhancements package.
The theme
folder contains simple _packaging
script that builds theme.js
for simple inclusion in Jenkins with Simple Theme Plugin.
- Download
theme.js
andtheme.css
from theme/_build. - Install Simple Theme Plugin in your Jenkins.
- Configure Simple Theme Plugin to point to your downloaded
theme.js
andtheme.css
.
At this point most enhancements described below should work in your Jenkins installation. You might need to download other files from the _build
folder for all enhancements to work properly.
Adds a simple filter input for views. Allows quick job filtering searching by words in any order. Technically it simply hides unmatched rows.
Integrates EditArea syntax highlighting engine to enhance Linux shell (bash) scripts editing. This includes commands executed through SSH.
This is a bit hacky enhancement to allow collapsing blocks of parameters with a checkbox. For example you have a checkbox to enable some tests and when it's checked it shows additional testing parameters (hidden by default). Or - my personal favorite - there are some dangerous options that you need to make sure users understands.
Please vote for a less hacky solution is in the issue JENKINS-19002.
How to make collapsible groups now?
To start a group add a "Choice" parameter named group-start
with following options (you can just add one of the options):
collapsible
- if option is given then it will be possible to close the group with a button.collapsed
- if option is given the group will be closed by default.checkboxTrigger-SomeCheckboxParameterName
- if option is given group will be closed when checkbox is unchecked (and shown otherwise).
This parameter will be invisible to the user and will also not be submitted with the job.
If you use checkboxTrigger-SomeCheckboxParameterName
then you should add a checkbox ("Boolean Value") parameter below group-start
. The parameter should be named "SomeCheckboxParameterName".
Group continues until the end of params or next group start box.
To end a group before the end of params add a "Choice" parameter named group-start
with option "-".
nux-js/minor-fixes.js
- contains various minor fixes (mainly usability enhancements).nux-js/checkboxes-helper.js
- for each large checkboxes group add a "clear all" / "choose all" button.