##// END OF EJS Templates
Fixed a bug in open_id_authentication, where relative_url_root is defined...
Fixed a bug in open_id_authentication, where relative_url_root is defined on ActionController:AbstractRequest not Base #699 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2441 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2360:b998572def6d
r2380:a4e6e13b704e
Show More
diff.rhtml
23 lines | 931 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Merged Git support branch (r1200 to r1226)....
r1222 <h2><%= l(:label_revision) %> <%= format_revision(@rev) %> <%= @path.gsub(/^.*\//, '') %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
patch #9627 Add Side by Side in Diff view (Cyril Mougel)...
r387 <!-- Choose view type -->
Jean-Philippe Lang
Fixed: path parameter is not an array when changing diff style (#2695), broken by r2317....
r2360 <% form_tag({}, :method => 'get') do %>
<%= hidden_field_tag('rev', params[:rev]) if params[:rev] %>
<%= hidden_field_tag('rev_to', params[:rev_to]) if params[:rev_to] %>
Jean-Philippe Lang
patch #9627 Add Side by Side in Diff view (Cyril Mougel)...
r387 <p><label><%= l(:label_view_diff) %></label>
Jean-Philippe Lang
Diff style (inline or side by side) automatically saved as a user preference....
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>
Jean-Philippe Lang
patch #9627 Add Side by Side in Diff view (Cyril Mougel)...
r387 <% end %>
Jean-Philippe Lang
Added fragment caching for svn diffs....
r496
Jean-Philippe Lang
Diff: adds some space between 2 changes in the same file and reduces html size....
r1472 <% cache(@cache_key) do -%>
Jean-Philippe Lang
Move diff viewer to a partial....
r1501 <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type} %>
Jean-Philippe Lang
Diff: adds some space between 2 changes in the same file and reduces html size....
r1472 <% end -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
<%= f.link_to 'Diff', :url => params, :caption => 'Unified diff' %>
<% end %>
Jean-Philippe Lang
SCM browser: ability to download raw unified diffs....
r1500
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(with_leading_slash(@path), 'Diff') -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>