aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2012-05-24 14:11:08 +0200
committerFabrice Bellingard <bellingard@gmail.com>2012-05-24 14:42:10 +0200
commit55e4ffa81f127224b65b63cf91d1c9ca75ed6714 (patch)
tree8966263fe4a24ff6dff6bf01ce64655fa1f95748 /plugins
parent637e292c2c6137f2cb25eeb84dbabe6f8fb6c86b (diff)
downloadsonarqube-55e4ffa81f127224b65b63cf91d1c9ca75ed6714.tar.gz
sonarqube-55e4ffa81f127224b65b63cf91d1c9ca75ed6714.zip
SONAR-3455 Improve the description of differential views parameters
- Typo on Differential Views => Period 1 => description - Adds which snapshot is taken into account when a date or a period is selected
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
index 559927d6b0d..21f7e163bc6 100644
--- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
+++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
@@ -203,8 +203,9 @@ import java.util.List;
name = "Period 1",
description = "Period used to compare measures and track new violations. Values are : <ul class='bullet'><li>Number of days before " +
"analysis, for example 5.</li><li>A custom date. Format is yyyy-MM-dd, for example 2010-12-25</li><li>'previous_analysis' to " +
- "compare to previous analysis</li></ul>" +
- "Changing this property only take effect after subsequent project inspections.",
+ "compare to previous analysis</li></ul>" + "<p>When specifying a number of days or a date, the snapshot selected for comparison is " +
+ " the first one available inside the corresponding time range. </p>" +
+ "<p>Changing this property only takes effect after subsequent project inspections.<p/>",
project = false,
global = true,
defaultValue = CoreProperties.TIMEMACHINE_DEFAULT_PERIOD_1,
@@ -231,7 +232,8 @@ import java.util.List;
description = "Period used to compare measures and track new violations. This property is specific to the project. Values are : " +
"<ul class='bullet'><li>Number of days before analysis, for example 5.</li><li>A custom date. Format is yyyy-MM-dd, " +
"for example 2010-12-25</li><li>'previous_analysis' to compare to previous analysis</li><li>A version, for example 1.2</li></ul>" +
- "Changing this property only take effect after subsequent project inspection.",
+ "<p>When specifying a number of days or a date, the snapshot selected for comparison is the first one available inside the corresponding time range. </p>" +
+ "<p>Changing this property only takes effect after subsequent project inspections.<p/>",
project = true,
global = false,
defaultValue = CoreProperties.TIMEMACHINE_DEFAULT_PERIOD_4,