annotate app/views/common/_file.html.erb @ 929:5f33065ddc4b redmine-1.3

Update to Redmine SVN rev 9414 on 1.3-stable branch
author Chris Cannam
date Wed, 27 Jun 2012 14:54:18 +0100
parents cbb26bc654de
children 433d4f72a19b
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@909 5 <% syntax_highlight(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each_line do |line| %>
Chris@909 6 <tr>
Chris@909 7 <th class="line-num" id="L<%= 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@909 11 <pre><%= line %></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>