%= form_tag( {:controller => 'repositories', :action => 'diff', :id => project, :repository_id => @repository.identifier_param, :path => to_path_param(path)}, :method => :get ) do %> <% show_diff = revisions.size > 1 && User.current.allowed_to?(:browse_repository, @repository.project) %> <% if show_diff %>
<%= submit_tag(l(:label_view_diff), :name => nil) %>
<% end %># | <%= l(:label_date) %> | <%= l(:field_author) %> | <%= l(:field_comments) %> | ||
---|---|---|---|---|---|
<%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('#cbto-#{line_num+1}').prop('checked',true);") if show_diff && (line_num < revisions.size) %> | <%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('#cb-#{line_num}').prop('checked')) {$('#cb-#{line_num-1}').prop('checked',true);}") if show_diff && (line_num > 1) %> | <%= format_time(changeset.committed_on) %> | <%= changeset.user.blank? ? changeset.author.to_s.truncate(30) : link_to_user(changeset.user) %> | <%= textilizable(truncate_at_line_break(changeset.comments), :formatting => Setting.commit_logs_formatting?) %> |
<%= submit_tag(l(:label_view_diff), :name => nil) %>
<% end %> <% end %>