annotate app/views/common/_file.rhtml @ 414:576a1dca2ee2 bug_152

Check that user is permitted to see subproject, not only parent project. Fixes #152
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 10 May 2011 10:08:34 +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>