##// END OF EJS Templates
Fixed that ordered/unordered lists inside table cell are mangled (#14038)....
Fixed that ordered/unordered lists inside table cell are mangled (#14038). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11845 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10281:c3e055bd700b
r11615:b3d80d50a3a1
Show More
diff.html.erb
27 lines | 1.1 KiB | text/plain | TextLexer
Toshi MARUYAMA
scm: changing two revision diff text at SCM adapter level (#3724)....
r4578 <h2><%= l(:label_revision) %> <%= @diff_format_revisions %> <%=h @path %></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 -->
Toshi MARUYAMA
explicitly define route at scm diff view (#11966)...
r10281 <%= form_tag({:action => 'diff', :id => @project,
:repository_id => @repository.identifier_param,
:path => to_path_param(@path), :rev=> @rev}, :method => 'get') do %>
Jean-Philippe Lang
Fixed: path parameter is not an array when changing diff style (#2695), broken by r2317....
r2360 <%= hidden_field_tag('rev_to', params[:rev_to]) if params[:rev_to] %>
Toshi MARUYAMA
code layout clean up app/views/repositories/diff.html.erb...
r7739 <p>
Jean-Philippe Lang
Use radio buttons instead of a select....
r10243 <%= l(:label_view_diff) %>:
<label><%= radio_button_tag 'type', 'inline', @diff_type != 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_inline) %></label>
<label><%= radio_button_tag 'type', 'sbs', @diff_type == 'sbs', :onchange => "this.form.submit()" %> <%= l(:label_diff_side_by_side) %></label>
Toshi MARUYAMA
code layout clean up app/views/repositories/diff.html.erb...
r7739 </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
Fixed that git diff displays deleted files as /dev/null (#11868)....
r10241 <%= render :partial => 'common/diff', :locals => {:diff => @diff, :diff_type => @diff_type, :diff_style => @repository.class.scm_name} %>
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| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/repositories/diff.html.erb...
r7186 <%= f.link_to 'Diff', :url => params, :caption => 'Unified diff' %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
SCM browser: ability to download raw unified diffs....
r1500
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title(with_leading_slash(@path), 'Diff') -%>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% content_for :header_tags do %>
<%= stylesheet_link_tag "scm" %>
<% end %>