##// END OF EJS Templates
Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/unit/custom_field_test.rb...
Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/unit/custom_field_test.rb On Rails2, Errors#[] returns single error if one error raises. But, on Rails3, Errors#[] always returns the array. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8139 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7222:78bc036ee374
r8019:2afe5bdf5730
Show More
page.html.erb
36 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
<%= link_to l(:label_personalize_page), :action => 'page_layout' %>
</div>
<h2><%=l(:label_my_page)%></h2>
<div id="list-top">
Toshi MARUYAMA
replace tabs to spaces at app/views/my/page.html.erb...
r7222 <% @blocks['top'].each do |b|
next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div>
<% end if @blocks['top'] %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div id="list-left" class="splitcontentleft">
Toshi MARUYAMA
replace tabs to spaces at app/views/my/page.html.erb...
r7222 <% @blocks['left'].each do |b|
next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div>
<% end if @blocks['left'] %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<div id="list-right" class="splitcontentright">
Toshi MARUYAMA
replace tabs to spaces at app/views/my/page.html.erb...
r7222 <% @blocks['right'].each do |b|
next unless MyController::BLOCKS.keys.include? b %>
<div class="mypage-box">
<%= render :partial => "my/blocks/#{b}", :locals => { :user => @user } %>
</div>
<% end if @blocks['right'] %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Adds an helper for creating the context menu....
r3428 <%= context_menu :controller => 'issues', :action => 'context_menu' %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_my_page)) -%>