_revisions.html.erb
55 lines
| 2.4 KiB
| text/plain
|
TextLexer
|
r1609 | <% form_tag({:controller => 'repositories', :action => 'diff', :id => @project, :path => to_path_param(path)}, :method => :get) do %> | ||
|
r1019 | <table class="list changesets"> | ||
|
r374 | <thead><tr> | ||
|
r7605 | <% if @repository.supports_revision_graph? %> | ||
<th></th> | ||||
<% end %> | ||||
|
r374 | <th>#</th> | ||
|
r522 | <th></th> | ||
<th></th> | ||||
|
r374 | <th><%= l(:label_date) %></th> | ||
|
r405 | <th><%= l(:field_author) %></th> | ||
|
r476 | <th><%= l(:field_comments) %></th> | ||
|
r374 | </tr></thead> | ||
<tbody> | ||||
|
r2744 | <% show_diff = revisions.size > 1 %> | ||
|
r522 | <% line_num = 1 %> | ||
|
r830 | <% revisions.each do |changeset| %> | ||
|
r1019 | <tr class="changeset <%= cycle 'odd', 'even' %>"> | ||
|
r7605 | <% if @repository.supports_revision_graph? %> | ||
<% if line_num == 1 %> | ||||
<td class="revision_graph" rowspan="<%= revisions.size %>"> | ||||
<% href_base = Proc.new {|x| url_for(:controller => 'repositories', | ||||
:action => 'revision', | ||||
:id => project, | ||||
:rev => x) } %> | ||||
<%= render :partial => 'revision_graph', | ||||
:locals => { | ||||
:commits => index_commits( | ||||
revisions, | ||||
@repository.branches, | ||||
href_base | ||||
) | ||||
} %> | ||||
</td> | ||||
<% end %> | ||||
<% end %> | ||||
|
r4493 | <td class="id"><%= link_to_revision(changeset, project) %></td> | ||
<td class="checkbox"><%= radio_button_tag('rev', changeset.identifier, (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.identifier, (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> | ||||
|
r1019 | <td class="committed_on"><%= format_time(changeset.committed_on) %></td> | ||
|
r7519 | <td class="author"><%= h truncate(changeset.author.to_s, :length => 30) %></td> | ||
|
r7605 | <% if @repository.supports_revision_graph? %> | ||
<td class="comments_nowrap"> | ||||
<%= textilizable(truncate(truncate_at_line_break(changeset.comments, 0), :length => 90)) %> | ||||
</td> | ||||
<% else %> | ||||
<td class="comments"><%= textilizable(truncate_at_line_break(changeset.comments)) %></td> | ||||
<% end %> | ||||
|
r374 | </tr> | ||
|
r522 | <% line_num += 1 %> | ||
|
r374 | <% end %> | ||
</tbody> | ||||
|
r522 | </table> | ||
|
r1019 | <%= submit_tag(l(:label_view_diff), :name => nil) if show_diff %> | ||
|
r522 | <% end %> | ||