mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
Patch by Vitaly vit9696. git-svn-id: http://svn.redmine.org/redmine/trunk@21415 e93f8b46-1217-0410-a6f0-8f06a7374b81
21 lines
543 B
Plaintext
21 lines
543 B
Plaintext
<div class="autoscroll">
|
|
<table class="filecontent syntaxhl">
|
|
<tbody>
|
|
<% line_num = 1 %>
|
|
<% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
|
|
<tr id="L<%= line_num %>">
|
|
<th class="line-num"><a href="#L<%= line_num %>" data-txt="<%= line_num %>"></a></th>
|
|
<td class="line-code">
|
|
<% if line == "\n" or line == "\r\n" %>
|
|
<br>
|
|
<% else %>
|
|
<div><%= line.html_safe %></div>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% line_num += 1 %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|