From 6eb3f50b80d25a4f4f26f0d9a8be78bd109eb376 Mon Sep 17 00:00:00 2001 From: simonbrandhof Date: Thu, 30 Dec 2010 19:23:11 +0000 Subject: [PATCH] display variation values of master project --- .../WEB-INF/app/views/filters/_list.html.erb | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 %> -- 2.39.5