]> source.dussan.org Git - redmine.git/commitdiff
gantt: code layout cleanup ruby code at head of show.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 8 Sep 2012 02:00:17 +0000 (02:00 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 8 Sep 2012 02:00:17 +0000 (02:00 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10322 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/gantts/show.html.erb

index 603fe62147943b1dbb8f6238b48af268976dcde6..2e5c1aa874e476668e7edc9374693e0a6a13de04 100644 (file)
 <%= error_messages_for 'query' %>
 <% if @query.valid? %>
 <%
-zoom = 1
-@gantt.zoom.times { zoom = zoom * 2 }
+  zoom = 1
+  @gantt.zoom.times { zoom = zoom * 2 }
 
-subject_width = 330
-header_heigth = 18
+  subject_width = 330
+  header_heigth = 18
 
-headers_height = header_heigth
-show_weeks = false
-show_days = false
+  headers_height = header_heigth
+  show_weeks = false
+  show_days  = false
 
-if @gantt.zoom > 1
+  if @gantt.zoom > 1
     show_weeks = true
     headers_height = 2 * header_heigth
     if @gantt.zoom > 2
         show_days = true
         headers_height = 3 * header_heigth
     end
-end
+  end
 
-# Width of the entire chart
-g_width = ((@gantt.date_to - @gantt.date_from + 1) * zoom).to_i
-@gantt.render(:top => headers_height + 8,
-              :zoom => zoom,
-              :g_width => g_width,
-              :subject_width => subject_width)
-g_height = [(20 * (@gantt.number_of_rows + 6)) + 150, 206].max
-t_height = g_height + headers_height
+  # Width of the entire chart
+  g_width = ((@gantt.date_to - @gantt.date_from + 1) * zoom).to_i
+  @gantt.render(:top => headers_height + 8,
+                :zoom => zoom,
+                :g_width => g_width,
+                :subject_width => subject_width)
+  g_height = [(20 * (@gantt.number_of_rows + 6)) + 150, 206].max
+  t_height = g_height + headers_height
 %>
 
 <% if @gantt.truncated %>