]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3455 Improve the description of differential views parameters
authorFabrice Bellingard <bellingard@gmail.com>
Thu, 24 May 2012 12:11:08 +0000 (14:11 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Thu, 24 May 2012 12:42:10 +0000 (14:42 +0200)
- Typo on Differential Views => Period 1 => description
- Adds which snapshot is taken into account when a date or a period
  is selected

plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java

index 559927d6b0d39b6a5fdf1b5e0eaa17a697e52777..21f7e163bc67cd099f0f7f1624e283c8152b3eba 100644 (file)
@@ -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,