From 55e4ffa81f127224b65b63cf91d1c9ca75ed6714 Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Thu, 24 May 2012 14:11:08 +0200 Subject: [PATCH] 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 --- .../src/main/java/org/sonar/plugins/core/CorePlugin.java | 8 +++++--- 1 file 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 : " + - "Changing this property only take effect after subsequent project inspections.", + "compare to previous analysis" + "

When specifying a number of days or a date, the snapshot selected for comparison is " + + " the first one available inside the corresponding time range.

" + + "

Changing this property only takes effect after subsequent project inspections.

", 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 : " + "

" + - "Changing this property only take effect after subsequent project inspection.", + "

When specifying a number of days or a date, the snapshot selected for comparison is the first one available inside the corresponding time range.

" + + "

Changing this property only takes effect after subsequent project inspections.

", project = true, global = false, defaultValue = CoreProperties.TIMEMACHINE_DEFAULT_PERIOD_4, -- 2.39.5