##// END OF EJS Templates
Adds (a maximum of 3) links to project ancestors in the page title (#2788)....
Adds (a maximum of 3) links to project ancestors in the page title (#2788). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2485 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1505:aa0beecad0fa
r2423:33e7ae96adcb
Show More
_file.rhtml
11 lines | 336 B | text/html+ruby | RhtmlLexer
<div class="autoscroll">
<table class="filecontent CodeRay">
<tbody>
<% line_num = 1 %>
<% syntax_highlight(filename, to_utf8(content)).each_line do |line| %>
<tr><th class="line-num" id="L<%= line_num %>"><%= line_num %></th><td class="line-code"><pre><%= line %></pre></td></tr>
<% line_num += 1 %>
<% end %>
</tbody>
</table>
</div>