kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.8 KiB
89 lines
2.8 KiB
<h2><%= l(:label_revision) %> <%= @rev %>: <%= @path.gsub(/^.*\//, '') %></h2>
|
|
|
|
<!-- Choose view type -->
|
|
<% form_tag({ :controller => 'repositories', :action => 'diff'}, :method => 'get') do %>
|
|
<% params.each do |k, p| %>
|
|
<% if k != "type" %>
|
|
<%= hidden_field_tag(k,p) %>
|
|
<% end %>
|
|
<% end %>
|
|
<p><label><%= l(:label_view_diff) %></label>
|
|
<%= select_tag 'type', options_for_select([[l(:label_diff_inline), "inline"], [l(:label_diff_side_by_side), "sbs"]], params[:type]), :onchange => "if (this.value != '') {this.form.submit()}" %>
|
|
<%= submit_tag l(:button_apply) %></p>
|
|
<% end %>
|
|
<% @diff.each do |table_file| %>
|
|
<% if params[:type] == 'sbs' %>
|
|
<table class="list">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="4" class="list-filename">
|
|
<%= l(:label_attachment) %>: <%= table_file.file_name %>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th colspan="2"><%= l(:label_revision) %> <%= @rev %></th>
|
|
<th colspan="2"><%= l(:label_revision) %> <%= @rev_to %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% table_file.keys.sort.each do |key| %>
|
|
<tr>
|
|
<th class="line-num">
|
|
<%= table_file[key].nb_line_left %>
|
|
</th>
|
|
<td class="line-code <%= table_file[key].type_diff_left %>">
|
|
<%= table_file[key].line_left %>
|
|
</td>
|
|
<th class="line-num">
|
|
<%= table_file[key].nb_line_right %>
|
|
</th>
|
|
<td class="line-code <%= table_file[key].type_diff_right %>">
|
|
<%= table_file[key].line_right %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<% else %>
|
|
<table class="list">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3" class="list-filename">
|
|
<%= l(:label_attachment) %>: <%= table_file.file_name %>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>@<%= @rev %></th>
|
|
<th>@<%= @rev_to %></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% table_file.keys.sort.each do |key, line| %>
|
|
<tr>
|
|
<th class="line-num">
|
|
<%= table_file[key].nb_line_left %>
|
|
</th>
|
|
<th class="line-num">
|
|
<%= table_file[key].nb_line_right %>
|
|
</th>
|
|
<% if table_file[key].line_left.empty? %>
|
|
<td class="line-code <%= table_file[key].type_diff_right %>">
|
|
<%= table_file[key].line_right %>
|
|
</td>
|
|
<% else %>
|
|
<td class="line-code <%= table_file[key].type_diff_left %>">
|
|
<%= table_file[key].line_left %>
|
|
</td>
|
|
<% end %>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% content_for :header_tags do %>
|
|
<%= stylesheet_link_tag "scm" %>
|
|
<% end %>
|
|
|