From 906a411f4daf12791ab7dc61f4a47d509316edfa Mon Sep 17 00:00:00 2001 From: Fabrice Bellingard Date: Thu, 1 Sep 2011 11:17:42 +0200 Subject: [PATCH] SONAR-2676 Remove the parameter list from rule description page Showing the parameters with their description could lead to ambiguity => some parameter descriptions specify the default value given by the original tool, thus making confusion with the default value given by the quality profile activated on a project (-> the rule description page is independent of the user context). --- .../WEB-INF/app/views/rules/show.html.erb | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules/show.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules/show.html.erb index c4b783205b8..c7850424fdf 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules/show.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules/show.html.erb @@ -4,21 +4,4 @@ Plugin: <%= @rule.plugin_name -%>    Key: <%= @rule.plugin_rule_key %>

<%= @rule.description %>

-
- -<% unless @rule.parameters.empty? %> - - - - - - <% @rule.parameters.each do |parameter| %> - - - - - - <% end %> - -
Parameters
<%= parameter.name -%>: <%= parameter.description -%>
-<% end %> \ No newline at end of file + \ No newline at end of file -- 2.39.5