##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15249:b2044e6dfc26
r15869:b40d66f39fa8
Show More
diff.html.erb
31 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
Tests broken (#4266)....
r14762 <% if @changeset && @changeset_to.nil? %>
Jean-Philippe Lang
Locals are not used in the partial (#4266)....
r14758 <%= render :partial => 'changeset' %>
Jean-Philippe Lang
Tests broken (#4266)....
r14762 <% else %>
<h2><%= l(:label_revision) %> <%= @diff_format_revisions %> <%= @path %></h2>
Jean-Philippe Lang
Display the changeset details when the diff is for a single changeset only (#4266)....
r14759 <% end %>
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| %>
Jean-Philippe Lang
Don't generate urls with params....
r15249 <%= f.link_to_with_query_parameters 'Diff', {}, :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 %>