2008-06-09 17:02:55 +00:00
|
|
|
<div class="autoscroll">
|
2010-03-14 13:22:50 +00:00
|
|
|
<table class="filecontent syntaxhl">
|
2008-06-09 17:02:55 +00:00
|
|
|
<tbody>
|
|
|
|
|
<% line_num = 1 %>
|
2012-02-25 06:01:48 +00:00
|
|
|
<% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
|
2013-05-18 07:09:02 +00:00
|
|
|
<tr id="L<%= line_num %>">
|
2022-02-19 07:36:40 +00:00
|
|
|
<th class="line-num"><a href="#L<%= line_num %>" data-txt="<%= line_num %>"></a></th>
|
2011-11-20 04:17:19 +00:00
|
|
|
<td class="line-code">
|
2022-02-19 07:36:40 +00:00
|
|
|
<% if line == "\n" or line == "\r\n" %>
|
|
|
|
|
<br>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div><%= line.html_safe %></div>
|
|
|
|
|
<% end %>
|
2011-11-20 04:17:19 +00:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% line_num += 1 %>
|
2008-06-09 17:02:55 +00:00
|
|
|
<% end %>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|