annotate app/views/common/_file.rhtml @ 242:bde4f47b6427
feature_73
Do more-or-less the right thing to pull in and update external repos
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 24 Feb 2011 15:04:51 +0000 |
parents |
513646585e45 |
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@0
|
5 <% syntax_highlight(filename, to_utf8(content)).each_line do |line| %>
|
Chris@0
|
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>
|
Chris@0
|
7 <% line_num += 1 %>
|
Chris@0
|
8 <% end %>
|
Chris@0
|
9 </tbody>
|
Chris@0
|
10 </table>
|
Chris@0
|
11 </div>
|