Skip to content

Commit

Permalink
[JENKINS-36894] Add help files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedam committed Aug 11, 2016
1 parent 8637c07 commit cff3c22
Show file tree
Hide file tree
Showing 16 changed files with 66 additions and 5 deletions.
Expand Up @@ -124,7 +124,7 @@ public static class DescriptorImpl extends MatrixCombinationsShortcutDescriptor
*/
@Override
public String getDisplayName() {
return "By combination filter";
return Messages.CombinationFilterShortcut_DisplayName();
}
}
}
Expand Up @@ -167,7 +167,7 @@ public static class DescriptorImpl extends MatrixCombinationsShortcutDescriptor
*/
@Override
public String getDisplayName() {
return "All";
return Messages.MatrixCombinationsShortcut_All_DisplayName();
}
}
}
Expand Down Expand Up @@ -223,7 +223,7 @@ public static class DescriptorImpl extends MatrixCombinationsShortcutDescriptor
*/
@Override
public String getDisplayName() {
return "None";
return Messages.MatrixCombinationsShortcut_None_DisplayName();
}
}
}
Expand Down
Expand Up @@ -99,7 +99,7 @@ public static class DescriptorImpl extends MatrixCombinationsShortcutDescriptor
*/
@Override
public String getDisplayName() {
return "Previous";
return Messages.PreviousShortcut_DisplayName();
}
}
}
Expand Up @@ -159,7 +159,7 @@ public Combination apply(MatrixRun r) {
public static class DescriptorImpl extends MatrixCombinationsShortcutDescriptor {
@Override
public String getDisplayName() {
return "By build result";
return Messages.ResultShortcut_DisplayName();
}
}
}
@@ -0,0 +1,5 @@
<div>
Links to check a set of combinations.
Combinations to check are calculated with the last build in the build page
or with the build to rebuild in the rebuild page (when <a href="https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin">Rebuild plugin</a> is installed).
</div>
@@ -0,0 +1,3 @@
<div>
A Groovy expression to decide combinations to check.
</div>
@@ -0,0 +1,3 @@
<div>
The name displayed as the shortcut link.
</div>
@@ -0,0 +1,3 @@
<div>
Decide combinations to check with a combinations filter.
</div>
@@ -0,0 +1,3 @@
<div>
Check all enable combinations.
</div>
@@ -0,0 +1,3 @@
<div>
Uncheck all combinations.
</div>
@@ -0,0 +1,26 @@
# The MIT License
#
# Copyright (c) 2016 IKEDA Yasuyuki
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
MatrixCombinationsShortcut.All.DisplayName=All
MatrixCombinationsShortcut.None.DisplayName=None
ResultShortcut.DisplayName=By build result
CombinationFilterShortcut.DisplayName=By combination filter
PreviousShortcut.DisplayName=Previous
@@ -0,0 +1,3 @@
<div>
Check combinations built in the previous build.
</div>
@@ -0,0 +1,3 @@
<div>
Only checks child builds running exactly in the previous build.
</div>
@@ -0,0 +1,3 @@
<div>
The name displayed as the shortcut link.
</div>
@@ -0,0 +1,3 @@
<div>
Results of child builds to check.
</div>
@@ -0,0 +1,3 @@
<div>
Check combinations with specific results in the previous build.
</div>

0 comments on commit cff3c22

Please sign in to comment.