remove trailing white-spaces from app/views/my/page.html.erb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7282 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-17 04:03:19 +00:00
parent 7fa0957b0a
commit 06fb6bd807

View File

@ -5,27 +5,27 @@
<h2><%=l(:label_my_page)%></h2> <h2><%=l(:label_my_page)%></h2>
<div id="list-top"> <div id="list-top">
<% @blocks['top'].each do |b| <% @blocks['top'].each do |b|
next unless MyController::BLOCKS.keys.include? b %> next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box"> <div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div> </div>
<% end if @blocks['top'] %> <% end if @blocks['top'] %>
</div> </div>
<div id="list-left" class="splitcontentleft"> <div id="list-left" class="splitcontentleft">
<% @blocks['left'].each do |b| <% @blocks['left'].each do |b|
next unless MyController::BLOCKS.keys.include? b %> next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box"> <div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div> </div>
<% end if @blocks['left'] %> <% end if @blocks['left'] %>
</div> </div>
<div id="list-right" class="splitcontentright"> <div id="list-right" class="splitcontentright">
<% @blocks['right'].each do |b| <% @blocks['right'].each do |b|
next unless MyController::BLOCKS.keys.include? b %> next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box"> <div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %> <%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div> </div>
<% end if @blocks['right'] %> <% end if @blocks['right'] %>