diff.rhtml
27 lines
| 985 B
| text/html+ruby
|
RhtmlLexer
|
r1222 | <h2><%= l(:label_revision) %> <%= format_revision(@rev) %> <%= @path.gsub(/^.*\//, '') %></h2> | ||
|
r330 | |||
|
r387 | <!-- 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> | ||||
|
r880 | <%= select_tag 'type', options_for_select([[l(:label_diff_inline), "inline"], [l(:label_diff_side_by_side), "sbs"]], @diff_type), :onchange => "if (this.value != '') {this.form.submit()}" %></p> | ||
|
r387 | <% end %> | ||
|
r496 | |||
|
r1472 | <% cache(@cache_key) do -%> | ||
|
r1501 | <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type} %> | ||
|
r1472 | <% end -%> | ||
|
r330 | |||
|
r1500 | <p class="other-formats"> | ||
<%= l(:label_export_to) %> | ||||
<span><%= link_to 'Unified diff', params.merge(:format => 'diff') %></span> | ||||
</p> | ||||
|
r1019 | <% html_title(with_leading_slash(@path), 'Diff') -%> | ||
|
r330 | <% content_for :header_tags do %> | ||
<%= stylesheet_link_tag "scm" %> | ||||
<% end %> | ||||