##// END OF EJS Templates
replace shoulder "with a due_date attribute" context of unit IssuesHelperTest and use with_settings...
replace shoulder "with a due_date attribute" context of unit IssuesHelperTest and use with_settings git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10263 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8868:b4630c03f732
r10080:8eb39d682d1c
Show More
_file.html.erb
18 lines | 453 B | text/plain | TextLexer
<div class="autoscroll">
<table class="filecontent syntaxhl">
<tbody>
<% line_num = 1 %>
<% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each 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.html_safe %></pre>
</td>
</tr>
<% line_num += 1 %>
<% end %>
</tbody>
</table>
</div>