]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3942 Display keys of the installed plugins
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 7 Nov 2012 10:02:55 +0000 (11:02 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 7 Nov 2012 10:03:12 +0000 (11:03 +0100)
sonar-server/src/main/webapp/WEB-INF/app/views/updatecenter/index.html.erb

index 7f3e3191e019a78dbcaee1da2abaea673bb460d3..f483d55f8e35ee90ebe946553012af249f995a7b 100644 (file)
@@ -22,7 +22,7 @@
        @user_plugins.each do |plugin|
      %>
        <tr class="select <%= cycle('even', 'odd', :name => 'user') -%>" id="select_<%= plugin.getKey() -%>">
-         <td width="1%" nowrap><b><a href="#plugin" onclick="showPlugin('<%= plugin.getKey() -%>')"><%= h(plugin.getName()) -%></a></b></td>
+         <td width="1%" nowrap><b><a href="#plugin" onclick="showPlugin('<%= plugin.getKey() -%>')"><%= h(plugin.getName()) -%></a></b> <span class="note">[<%= h plugin.getKey() -%>]</span></td>
          <td><%= plugin.getVersion() || '-' -%></td>
          <td>
          <%= plugin.getDescription() -%>
@@ -70,7 +70,7 @@
      @core_plugins.each do |plugin|
    %>
   <tr class="<%= cycle('even','odd', :name => 'core') -%>" id="<%= u plugin.getKey() -%>">
-    <td width="1%" nowrap><b><%= plugin.getName() -%></b></td>
+    <td width="1%" nowrap><b><%= plugin.getName() -%></b> <span class="note">[<%= h plugin.getKey() -%>]</span></td>
        <td><%= plugin.getDescription() -%></td>
      </tr>
    <% end %>