To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / common / .svn / text-base / _file.rhtml.svn-base @ 442:753f1380d6bc

History | View | Annotate | Download (369 Bytes)

1
<div class="autoscroll">
2
<table class="filecontent syntaxhl">
3
<tbody>
4
<% line_num = 1 %>
5
<% syntax_highlight(filename, to_utf8(content)).each_line do |line| %>
6
<tr><th class="line-num" id="L<%= line_num %>"><a href="#L<%= line_num %>"><%= line_num %></a></th><td class="line-code"><pre><%= line %></pre></td></tr>
7
<% line_num += 1 %>
8
<% end %>
9
</tbody>
10
</table>
11
</div>