##// END OF EJS Templates
Makes Private column available on the issue list (#8577)....
Makes Private column available on the issue list (#8577). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9919 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8868:b4630c03f732
r9736:1d7c0eb7c02d
Show More
_file.html.erb
18 lines | 453 B | text/plain | TextLexer
Jean-Philippe Lang
Move the file viewer to a partial....
r1505 <div class="autoscroll">
Jean-Philippe Lang
Replace the hardcoded "CodeRay" css class name for highlighted elements....
r3471 <table class="filecontent syntaxhl">
Jean-Philippe Lang
Move the file viewer to a partial....
r1505 <tbody>
<% line_num = 1 %>
Toshi MARUYAMA
Rails3: prevent double rendering file view and annotate on Rails 3.0.11 and Rails 3.1.3...
r8868 <% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
Toshi MARUYAMA
code layout clean up app/views/common/_file.html.erb...
r7738 <tr>
<th class="line-num" id="L<%= line_num %>">
<a href="#L<%= line_num %>"><%= line_num %></a>
</th>
<td class="line-code">
Toshi MARUYAMA
Rails3: prevent double rendering file view and annotate on Rails 3.0.11 and Rails 3.1.3...
r8868 <pre><%= line.html_safe %></pre>
Toshi MARUYAMA
code layout clean up app/views/common/_file.html.erb...
r7738 </td>
</tr>
<% line_num += 1 %>
Jean-Philippe Lang
Move the file viewer to a partial....
r1505 <% end %>
</tbody>
</table>
</div>