annotate app/views/common/_file.rhtml @ 582:7cca1ac03f0c
feature_36
For "I am this author", always pull details from user not from a prior authorship
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Wed, 10 Aug 2011 17:19:36 +0100 |
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>
|