Mercurial > hg > soundsoftware-site
view 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 |
line wrap: on
line source
<div class="autoscroll"> <table class="filecontent syntaxhl"> <tbody> <% line_num = 1 %> <% syntax_highlight(filename, to_utf8(content)).each_line do |line| %> <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> <% line_num += 1 %> <% end %> </tbody> </table> </div>