##// END OF EJS Templates
Fixed: New multi-line macros regexp is too eager (#11736)....
Fixed: New multi-line macros regexp is too eager (#11736). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10276 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8042:7ba57e517ba0
r10093:8b72710d7ee3
Show More
page.html.erb
36 lines | 1.0 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>
Etienne Massip
Explicitly declare all routes and deactivate default route....
r8042 <%= context_menu issues_context_menu_path %>
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)) -%>