##// END OF EJS Templates
Display due date in red on overdue issues (#20812)....
Display due date in red on overdue issues (#20812). git-svn-id: http://svn.redmine.org/redmine/trunk@14732 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11627:6e35d2f0e9f5
r14350:aeab970972dc
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| %>
Jean-Philippe Lang
Highlighting of source link target line (#13746)....
r11627 <tr id="L<%= line_num %>">
<th class="line-num">
Toshi MARUYAMA
code layout clean up app/views/common/_file.html.erb...
r7738 <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>