From: Toshi MARUYAMA Date: Thu, 18 Apr 2013 02:07:44 +0000 (+0000) Subject: make height of "Commits per author" graph flexible (#1983, #13486) X-Git-Tag: 2.4.0~463 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ba11020fdf59888d0bdb6c7208daa1a2b0a3bb50;p=redmine.git make height of "Commits per author" graph flexible (#1983, #13486) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11723 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb index a757df154..2912b72bf 100644 --- a/app/controllers/repositories_controller.rb +++ b/app/controllers/repositories_controller.rb @@ -411,7 +411,7 @@ class RepositoriesController < ApplicationController fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') } graph = SVG::Graph::BarHorizontal.new( - :height => 400, + :height => 15 * commits_data.length, :width => 800, :fields => fields, :stack => :side, diff --git a/app/views/repositories/stats.html.erb b/app/views/repositories/stats.html.erb index b9a5d7d6a..5c20f0585 100644 --- a/app/views/repositories/stats.html.erb +++ b/app/views/repositories/stats.html.erb @@ -1,10 +1,18 @@

<%= l(:label_statistics) %>

-<%= tag("embed", :width => 800, :height => 300, :type => "image/svg+xml", :src => url_for(:controller => 'repositories', :action => 'graph', :id => @project, :repository_id => @repository.identifier_param, :graph => "commits_per_month")) %> +<%= tag("embed", :width => 800, :height => params[:height_commits_per_month], + :type => "image/svg+xml", :src => url_for(:controller => 'repositories', + :action => 'graph', :id => @project, + :repository_id => @repository.identifier_param, + :graph => "commits_per_month")) %>

-<%= tag("embed", :width => 800, :height => 400, :type => "image/svg+xml", :src => url_for(:controller => 'repositories', :action => 'graph', :id => @project, :repository_id => @repository.identifier_param, :graph => "commits_per_author")) %> +<%= tag("embed", :width => 800, :height => params[:height_commits_per_author], + :type => "image/svg+xml", :src => url_for(:controller => 'repositories', + :action => 'graph', :id => @project, + :repository_id => @repository.identifier_param, + :graph => "commits_per_author")) %>

<%= link_to l(:button_back), :action => 'show', :id => @project %>