2007-11-04 14:20:21 +03:00
|
|
|
<% form_tag({:controller => 'repositories', :action => 'diff', :id => @project, :path => path}, :method => :get) do %>
|
2008-01-03 01:41:53 +03:00
|
|
|
<table class="list changesets">
|
2007-03-25 16:12:15 +04:00
|
|
|
<thead><tr>
|
|
|
|
<th>#</th>
|
2007-05-10 21:28:18 +04:00
|
|
|
<th></th>
|
|
|
|
<th></th>
|
2007-03-25 16:12:15 +04:00
|
|
|
<th><%= l(:label_date) %></th>
|
2007-04-03 23:16:09 +04:00
|
|
|
<th><%= l(:field_author) %></th>
|
2007-04-25 19:06:20 +04:00
|
|
|
<th><%= l(:field_comments) %></th>
|
2007-03-25 16:12:15 +04:00
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2007-06-13 00:12:05 +04:00
|
|
|
<% show_diff = entry && entry.is_file? && revisions.size > 1 %>
|
2007-05-10 21:28:18 +04:00
|
|
|
<% line_num = 1 %>
|
2007-10-15 22:41:27 +04:00
|
|
|
<% revisions.each do |changeset| %>
|
2008-01-03 01:41:53 +03:00
|
|
|
<tr class="changeset <%= cycle 'odd', 'even' %>">
|
2007-11-05 20:33:28 +03:00
|
|
|
<td class="id"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></td>
|
2007-10-06 00:34:21 +04:00
|
|
|
<td class="checkbox"><%= radio_button_tag('rev', changeset.revision, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %></td>
|
|
|
|
<td class="checkbox"><%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
|
2008-01-03 01:41:53 +03:00
|
|
|
<td class="committed_on"><%= format_time(changeset.committed_on) %></td>
|
|
|
|
<td class="author"><%=h changeset.committer %></td>
|
|
|
|
<td class="comments"><%= textilizable(changeset.comments) %></td>
|
2007-03-25 16:12:15 +04:00
|
|
|
</tr>
|
2007-05-10 21:28:18 +04:00
|
|
|
<% line_num += 1 %>
|
2007-03-25 16:12:15 +04:00
|
|
|
<% end %>
|
|
|
|
</tbody>
|
2007-05-10 21:28:18 +04:00
|
|
|
</table>
|
2008-01-03 01:41:53 +03:00
|
|
|
<%= submit_tag(l(:label_view_diff), :name => nil) if show_diff %>
|
2007-05-10 21:28:18 +04:00
|
|
|
<% end %>
|