]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3644 Update documentation link on issues exclusion
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 20 Sep 2013 07:53:58 +0000 (09:53 +0200)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 20 Sep 2013 07:53:58 +0000 (09:53 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/issue/ignore/IgnoreIssuesConfiguration.java
plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties

index d51360f98d5e3ae722eb4091a2bb6f66a04b4f7d..62bba097ae3d9782e54574be6c2c67ab8c381d71 100644 (file)
@@ -31,9 +31,6 @@ import java.util.List;
 
 public final class IgnoreIssuesConfiguration {
 
-  public static final String CONFIG_DOCUMENTATION_LINK = "More information on the "
-    + "<a href=\"http://docs.codehaus.org/display/SONAR/Project+Administration#ProjectAdministration-IgnoringIssues\">Project Administration page</a>.<br/>";
-
   public static final String SUB_CATEGORY_IGNORE_ISSUES = "issues";
 
   public static final String CORE_KEY_PREFIX = "sonar.issue.ignore";
@@ -66,8 +63,7 @@ public final class IgnoreIssuesConfiguration {
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
         .name("Multi-criteria Exclusion Patterns")
-        .description("Patterns used to identify which issues are ignored.<br/>" +
-          CONFIG_DOCUMENTATION_LINK)
+        .description("Patterns used to identify which issues are ignored.")
         .onQualifiers(Qualifiers.PROJECT)
         .index(3)
         .fields(
@@ -94,8 +90,7 @@ public final class IgnoreIssuesConfiguration {
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
         .name("Block Exclusion Patterns")
-        .description("Patterns used to identify blocks in which issues are ignored.<br/>" +
-          CONFIG_DOCUMENTATION_LINK)
+        .description("Patterns used to identify blocks in which issues are ignored.")
         .onQualifiers(Qualifiers.PROJECT)
         .index(2)
         .fields(
@@ -116,8 +111,7 @@ public final class IgnoreIssuesConfiguration {
         .category(CoreProperties.CATEGORY_EXCLUSIONS)
         .subCategory(SUB_CATEGORY_IGNORE_ISSUES)
         .name("File Exclusion Patterns")
-        .description("Patterns used to identify files in which issues are ignored.<br/>" +
-          CONFIG_DOCUMENTATION_LINK)
+        .description("Patterns used to identify files in which issues are ignored.")
         .onQualifiers(Qualifiers.PROJECT)
         .index(1)
         .fields(
index ec13d7299a80bcadd0bc0c230e50b2543cb4ee54..93d6f088d4a93d4150d2c54ab9aff91f1757907e 100644 (file)
@@ -825,7 +825,7 @@ property.sonar.includedModules.name=Module Inclusions
 property.sonar.includedModules.description=Comma-separated list of the modules to analyse, all other modules are automatically ignored. Be careful: the root project must be added to the list.<br>\
  If a module's artifactId differs from its module name (the directory name): it is the artifactId that should be use instead of the module name.
 property.category.exclusions.issues=Issues
-property.category.exclusions.issues.description=Configure which issues should not be reported.
+property.category.exclusions.issues.description=Configure which issues should not be reported. More information on the <a href="http://docs.codehaus.org/x/KYHZDQ#Exclusions-issues">Exclusions</a> page
 property.category.exclusions.duplications=Duplications
 property.category.exclusions.duplications.description=Configure files which should not be checked for duplicated code.
 property.category.exclusions.coverage=Code Coverage