From: simonbrandhof Date: Thu, 30 Dec 2010 19:23:11 +0000 (+0000) Subject: display variation values of master project X-Git-Tag: 2.6~211 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6eb3f50b80d25a4f4f26f0d9a8be78bd109eb376;p=sonarqube.git display variation values of master project --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb index df1adafec8d..ece04cd569b 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb @@ -64,7 +64,19 @@ <% if logged_in? %><%= link_to_favourite(@masterproject.project) -%><% end %> <% filter.columns.each do |column| %> - <% if column.on_metric? %><%= html_measure(@masterproject.measure(column.metric), nil, true, nil, nil, true, false) %> + <% if column.on_metric? + measure=@masterproject.measure(column.metric) + %> + <% if column.variation %> + <%= format_variation(measure, :index => @filter_context.period_index, :style => 'light') -%> + <% else %> + <%= format_measure(measure) -%> + <% if @filter_context.selected_period? %> + <%= format_variation(measure, :index => @filter_context.period_index) -%> + <% else %> + <%= trend_icon(measure, :empty => true) -%> + <% end %> + <% end %> <% elsif column.on_name? %><%= qualifier_icon(@masterproject) %> <%= link_to_resource(@masterproject.project, h(@masterproject.project.name(true)), {:dashboard => true, :title => @masterproject.project.key}) %> <% elsif column.on_date? %><%= human_short_date(@masterproject.created_at) %> <% end %>