aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-09-21 09:01:40 +0200
committerDavid Gageot <david@gageot.net>2012-09-21 09:01:40 +0200
commit6fb1c52f8f5655bc5f9af49d5cabf47a47273aa4 (patch)
tree76177470d2eb430526f94abedd3ed1e1f843ac53 /sonar-server
parentf078c0d1cf4fdafe5fd8202d3a94712be9a0706c (diff)
downloadsonarqube-6fb1c52f8f5655bc5f9af49d5cabf47a47273aa4.tar.gz
sonarqube-6fb1c52f8f5655bc5f9af49d5cabf47a47273aa4.zip
Fix ITs by adding a "plugins" div
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb54
1 files changed, 28 insertions, 26 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb
index c1cb9efeb22..b4a829782ef 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_settings.html.erb
@@ -1,29 +1,31 @@
-<h1 class="marginbottom10"><%= message('settings.page') -%></h1>
+<div id="plugins">
+ <h1 class="marginbottom10"><%= message('settings.page') -%></h1>
-<table width="100%">
- <tr>
- <td width="1%" nowrap class="column first">
- <table class="data">
- <thead>
- <tr>
- <th><%= message('category') -%></th>
- </tr>
- </thead>
- <tbody>
- <% by_name(@categories).each do |category| -%>
- <tr id="select_<%= category -%>" class="select <%= cycle('even', 'odd', :name => 'category') -%> <%= 'selected' if @category==category -%>">
- <td><%= link_to category_name(category), :category => category -%></td>
+ <table width="100%">
+ <tr>
+ <td width="1%" nowrap class="column first">
+ <table class="data">
+ <thead>
+ <tr>
+ <th><%= message('category') -%></th>
</tr>
- <% end -%>
- </tbody>
- </table>
- <br/>
- </td>
+ </thead>
+ <tbody>
+ <% by_name(@categories).each do |category| -%>
+ <tr id="select_<%= category -%>" class="select <%= cycle('even', 'odd', :name => 'category') -%> <%= 'selected' if @category==category -%>">
+ <td><%= link_to category_name(category), :category => category -%></td>
+ </tr>
+ <% end -%>
+ </tbody>
+ </table>
+ <br/>
+ </td>
- <td class="column">
- <div id="properties">
- <%= render 'settings/properties' -%>
- </div>
- </td>
- </tr>
-</table> \ No newline at end of file
+ <td class="column">
+ <div id="properties">
+ <%= render 'settings/properties' -%>
+ </div>
+ </td>
+ </tr>
+ </table>
+</div> \ No newline at end of file