annotate app/views/common/_file.html.erb @ 1516:b450a9d58aed redmine-2.4

Update to Redmine SVN revision 13356 on 2.4-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:28:31 +0100
parents 261b3d9a4903
children
rev   line source
Chris@0 1 <div class="autoscroll">
Chris@0 2 <table class="filecontent syntaxhl">
Chris@0 3 <tbody>
Chris@0 4 <% line_num = 1 %>
Chris@1115 5 <% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
Chris@1464 6 <tr id="L<%= line_num %>">
Chris@1464 7 <th class="line-num">
Chris@909 8 <a href="#L<%= line_num %>"><%= line_num %></a>
Chris@909 9 </th>
Chris@909 10 <td class="line-code">
Chris@1115 11 <pre><%= line.html_safe %></pre>
Chris@909 12 </td>
Chris@909 13 </tr>
Chris@909 14 <% line_num += 1 %>
Chris@0 15 <% end %>
Chris@0 16 </tbody>
Chris@0 17 </table>
Chris@0 18 </div>