Jenkins JavaScript enhancements package.
The theme folder contains simple _packaging script that builds theme.js for simple inclusion in Jenkins with Simple Theme Plugin.
Below is a description of most important enhancement scripts.
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).
Request 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).
