42 lines
1.9 KiB
Plaintext
42 lines
1.9 KiB
Plaintext
<% if !@changes.blank? && @type == "3" %>
|
|
<% @changes.each do |cd| %>
|
|
<div class="showing-changes-row fontGrey2" style="width:710px;">
|
|
<a class="linkGrey3" id="changed-files">
|
|
<img src="/images/vlicon/file.png" width="18" height="20" style="vertical-align:middle;" class="mr5" /><%= cd['new_path'] %>
|
|
</a>
|
|
</div>
|
|
<div class="autoscroll">
|
|
<table class="filecontent syntaxhl" style="width:100%;" >
|
|
<tbody>
|
|
<% line_num = diff_line_num(cd['diff']) %>
|
|
<% diff_content = diff_content(cd['diff']) %>
|
|
<% syntax_highlight_lines('new_path', Redmine::CodesetUtil.to_utf8_by_setting(diff_content)).each do |line| %>
|
|
<tr>
|
|
<th class="line-num" id="L<%= line_num %>" style="vertical-align: top;">
|
|
<a href="#L<%= line_num %>" style="padding-top: 0px;"><%= line_num %></a>
|
|
</th>
|
|
<% if line[0,1] == "-" %>
|
|
<td class="line-code diff_out"><pre style="white-space:pre;"><%= line.html_safe %></pre></td>
|
|
<% elsif line[0,1] == "+" %>
|
|
<td class="line-code diff_in"><pre style="white-space:pre;"><%= line.html_safe %></pre></td>
|
|
<% else%>
|
|
<td class="line-code"><pre style="white-space:pre;"><%= line.html_safe %></pre></td>
|
|
<% end %>
|
|
</tr>
|
|
<% line_num += 1 %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<% end %>
|
|
<div style="text-align:center;">
|
|
<div class="pages" style="width:auto; display:inline-block;">
|
|
<ul id="homework_pository_ref_pages">
|
|
<%= pagination_links_full @pages, @count, :per_page_links => false, :remote => @is_remote, :flag => true, :is_new => true%>
|
|
</ul>
|
|
<div class="cl"></div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|