##// END OF EJS Templates
Adds checkboxes toggle links on permissions report....
Adds checkboxes toggle links on permissions report. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1770 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1501:e833cab30e19
r1769:6ad989f82887
Show More
diff.rhtml
27 lines | 985 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 -->
<% 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>
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
SCM browser: ability to download raw unified diffs....
r1500 <p class="other-formats">
<%= l(:label_export_to) %>
<span><%= link_to 'Unified diff', params.merge(:format => 'diff') %></span>
</p>
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 %>