property.sonar.global.exclusions.description=Exclude sources from code analysis. Applies to every project. Cannot be overriden at project level. Changes will be applied during next code analysis.
property.sonar.global.test.exclusions.name=Global test exclusions
property.sonar.global.test.exclusions.description=Exclude tests from code analysis. Applies to every project. Cannot be overriden at project level. Changes will be applied during next code analysis.
-property.sonar.global.test.exclusions.help=<h2>Wildcards</h2>\
+category.exclusions.help=<h2>Wildcards</h2>\
<p>Following rules are applied:</p>\
<table class="data">\
<thead><tr><th colspan="2"></th></tr></thead>\
end
end
- def property_help(property)
- message("property.#{property.key}.help", :default => '')
+ def category_help(category)
+ message("category.#{category}.help", :default => '')
end
def property_value(property)
<% unless default_prop_value.blank? -%>
<div class="note">Default: <%= property.type.to_s=='PASSWORD' ? '********' : h(default_prop_value) -%></div>
<% end -%>
-
- <% details = property_help(property) -%>
- <% unless details.blank? -%>
- <br/>
-
- <div class="help"><%= details -%></div>
- <% end -%>
</td>
</tr>
<% end -%>
+
+ <% unless category_help(@category).blank? -%>
+ <tr class="property <%= cycle('even', 'odd', :name => 'properties') -%>">
+ <td class="help"><%= category_help(@category) -%> </td>
+ </tr>
+ <% end -%>
</tbody>
</table>
<div style="padding-left: 16px;">