-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from jdimatteo/master
Multi Level Drop Downs
- Loading branch information
Showing
12 changed files
with
476 additions
and
20 deletions.
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
3 changes: 3 additions & 0 deletions
3
...extended_choice_parameter/ExtendedChoiceParameterDefinition/help-defaultPropertyFile.html
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
Absolute path (specified without using environment variables). | ||
</div> |
4 changes: 4 additions & 0 deletions
4
...lugins/extended_choice_parameter/ExtendedChoiceParameterDefinition/help-defaultValue.html
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<div> | ||
Initial selection of the single-select or mult-select box. | ||
<br><br>In case of the multi-select box, default value can be a comma separated string. | ||
</div> |
13 changes: 13 additions & 0 deletions
13
...lugins/extended_choice_parameter/ExtendedChoiceParameterDefinition/help-propertyFile.html
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div> | ||
The <a href="http://download.oracle.com/javase/6/docs/api/java/util/Properties.html">properties file</a> | ||
is a collection of key,value pairs of the form key=value1,value2,... | ||
<br><br> | ||
Property files may reference other properties. For example: | ||
<blockquote> | ||
prop1=a,b,c,d,e<br> | ||
prop2=${prop1},f,g,h | ||
</blockquote> | ||
The properties file can be placed anywhere on the file-system that Jenkins can access. | ||
<br><br> | ||
This property file has different meaning for multi-level select -- see the parameter type help for more info. | ||
</div> |
10 changes: 10 additions & 0 deletions
10
...plugins/extended_choice_parameter/ExtendedChoiceParameterDefinition/help-propertyKey.html
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<div> | ||
The property of the property file to use. | ||
<br><br> | ||
For example, if the property file was the following: | ||
<blockquote> | ||
prop1=a,b,c,d,e<br> | ||
prop2=1,2,3,4 | ||
</blockquote> | ||
Then you could specify the property as either prop1 or prop2. | ||
</div> |
Oops, something went wrong.