Skip to content

Commit

Permalink
[JENKINS-23891] Redesign of configuration page
Browse files Browse the repository at this point in the history
- Word "error" replaced by "issue", it is confusing for users.
  • Loading branch information
mixalturek committed Jul 23, 2014
1 parent eadb55c commit 90e1a1f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
@@ -1,6 +1,6 @@
<p style="margin-top: 0px;">Cppcheck must be executed to generate XML reports for this plugin to function.
<a href="http://ant.apache.org/manual/Types/fileset.html">Fileset
'includes'</a> setting specifies the generated cppcheck XML report files,
'includes'</a> setting specifies the generated Cppcheck XML report files,
such as '**/cppcheck-result-*.xml'. Base directory of the fileset is relative
to the workspace root directory.</p>

Expand Down
@@ -1,2 +1,2 @@
Determines which severity of errors should be considered when evaluating the
Determines which severity of issues should be considered when evaluating the
build status and health.
@@ -1,4 +1,4 @@
Configure the build status and health. A build is considered as unstable or
failure if the new or total number of errors exceeds the specified thresholds.
failure if the new or total number of issues exceeds the specified thresholds.
The build health is also determined by thresholds. If the actual number of
errors is between the provided thresholds, then the build health is interpolated.
issues is between the provided thresholds, then the build health is interpolated.
2 changes: 1 addition & 1 deletion src/main/resources/util/thresholds.jelly
Expand Up @@ -157,7 +157,7 @@
checked="${config.configGraph.displayAllErrors}"
id="configGraph.displayAllErrors"/>
<st:nbsp/>
<label for="configGraph.displayAllErrors">${%Display all errors}</label>
<label for="configGraph.displayAllErrors">${%Display sum of all issues}</label>
<st:nbsp/>
</td>

Expand Down
28 changes: 14 additions & 14 deletions src/main/resources/util/thresholds.properties
@@ -1,17 +1,17 @@
description.threshold=If the total number of errors exceeds this threshold then a build is \
considered as unstable. Leave this field empty if the unstable state of the build \
should not depend on the total number of errors.
description.newThreshold=If the number of new errors exceeds this threshold then a build is \
considered as unstable. Leave this field empty if the unstable state of the build \
should not depend on the number of new errors.
description.failureThreshold=If the total number of errors exceeds this threshold then a build is \
considered as failed. Leave this field empty if the failed state of the build \
should not depend on the total number of errors.
description.newFailureThreshold=If the number of new errors exceeds this threshold then a build is \
considered as failed. Leave this field empty if the failed state of the build \
should not depend on the number of new errors.
description.healthy=Report health as 100% when the number of errors is less than this value.
description.unhealthy=Report health as 0% when the number of errors is greater than this value.
description.threshold=If the total number of issues exceeds this threshold then a build is \
considered as unstable. Leave this field empty if the unstable state of the build \
should not depend on the total number of issues.
description.newThreshold=If the number of new issues exceeds this threshold then a build is \
considered as unstable. Leave this field empty if the unstable state of the build \
should not depend on the number of new issues.
description.failureThreshold=If the total number of issues exceeds this threshold then a build is \
considered as failed. Leave this field empty if the failed state of the build \
should not depend on the total number of issues.
description.newFailureThreshold=If the number of new issues exceeds this threshold then a build is \
considered as failed. Leave this field empty if the failed state of the build \
should not depend on the number of new issues.
description.healthy=Report health as 100% when the number of issues is less than this value.
description.unhealthy=Report health as 0% when the number of issues is greater than this value.

severity.evaluation=Severity evaluation

Expand Down

0 comments on commit 90e1a1f

Please sign in to comment.