##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10244:0af04b8ae031
r11490:9fea2ab6d224
Show More
diff.html.erb
22 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Unified diff viewer for attached files with .patch or .diff extension (#1403)....
r1502 <h2><%=h @attachment.filename %></h2>
<div class="attachments">
<p><%= h("#{@attachment.description} - ") unless @attachment.description.blank? %>
Toshi MARUYAMA
HTML escape at app/views/attachments/diff.rhtml....
r6241 <span class="author"><%= link_to_user(@attachment.author) %>, <%= format_time(@attachment.created_on) %></span></p>
Jean-Philippe Lang
Appends the filename to the attachment url so that clients that ignore content-disposition http header get the real filename (#1649)....
r1669 <p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
Jean-Philippe Lang
Unified diff viewer for attached files with .patch or .diff extension (#1403)....
r1502 <span class="size">(<%= number_to_human_size @attachment.filesize %>)</span></p>
</div>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :method => 'get') do %>
Toshi MARUYAMA
use radio buttons instead of a select at attachment as same as r10426 repository...
r10244 <p>
<%= 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>
</p>
Toshi MARUYAMA
attachment: add a new feature to switch "side by side" and "inline" for patches (#9612)...
r7740 <% end %>
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 => nil} %>
Jean-Philippe Lang
Unified diff viewer for attached files with .patch or .diff extension (#1403)....
r1502
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @attachment.filename %>
Jean-Philippe Lang
Adds the filename to the html title of attachment view....
r2601
Jean-Philippe Lang
Unified diff viewer for attached files with .patch or .diff extension (#1403)....
r1502 <% content_for :header_tags do -%>
<%= stylesheet_link_tag "scm" -%>
<% end -%>