##// END OF EJS Templates
Additional tests for SearchController and handle my_projects scope without memberships....
Additional tests for SearchController and handle my_projects scope without memberships. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8266 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7751:fb75372b86c5
r8146:bb0cd34f4e2e
Show More
_file.html.erb
18 lines | 442 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
scm: attachment: remove "to_utf8" methods from helpers (#2371)...
r7751 <% syntax_highlight(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each_line 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">
<pre><%= line %></pre>
</td>
</tr>
<% line_num += 1 %>
Jean-Philippe Lang
Move the file viewer to a partial....
r1505 <% end %>
</tbody>
</table>
</div>