]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2676 Remove the parameter list from rule description page
authorFabrice Bellingard <bellingard@gmail.com>
Thu, 1 Sep 2011 09:17:42 +0000 (11:17 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Thu, 1 Sep 2011 09:17:42 +0000 (11:17 +0200)
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).

sonar-server/src/main/webapp/WEB-INF/app/views/rules/show.html.erb

index c4b783205b816621c63962c200e89978e5c7fd4e..c7850424fdfe92a52a261fcf157ecebe332129dd 100644 (file)
@@ -4,21 +4,4 @@ Plugin: <%= @rule.plugin_name -%>&nbsp;&nbsp;&nbsp;
 Key: <%= @rule.plugin_rule_key %></div>
 <div class="doc">
   <p><%= @rule.description %></p>
-</div>
-
-<% unless @rule.parameters.empty? %>
-<table>
-       <thead>
-               <tr><th colspan="3"><b>Parameters</b></th></tr>
-       </thead>
-       <tbody>
-       <% @rule.parameters.each do |parameter| %>
-       <tr>
-               <td><code><%= parameter.name -%>:</code></td>
-               <td class="sep"> </td>
-               <td><Value><%= parameter.description -%></td>
-       </tr>
-       <% end %>
-       </tbody>
-</table>       
-<% end %>
\ No newline at end of file
+</div>
\ No newline at end of file