##// END OF EJS Templates
Prevent mass-assignment when adding/updating a wiki (#10390)....
Prevent mass-assignment when adding/updating a wiki (#10390). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9138 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8771:d4e6355eb3f2
r9018:efddab48bed6
Show More
_form.html.erb
19 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Better handling of attachments when issue validation fails (#10253)....
r8771 <% if defined?(container) && container && container.saved_attachments %>
<% container.saved_attachments.each_with_index do |attachment, i| %>
<span class="icon icon-attachment" style="display:block; line-height:1.5em;">
<%= h(attachment.filename) %> (<%= number_to_human_size(attachment.filesize) %>)
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.id}.#{attachment.digest}" %>
</span>
<% end %>
<% end %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <span id="attachments_fields">
Jean-Philippe Lang
Adds a button to remove a file upload before submission (#5670)....
r6092 <span>
Jean-Philippe Lang
Check attachment size when the user selects a file (#9667)....
r7806 <%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil, :class => 'file',
:onchange => "checkFileSize(this, #{Setting.attachment_max_size.to_i.kilobytes}, '#{escape_javascript(l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)))}');" -%>
Jean-Philippe Lang
Resizes the attachment description field and moves the label to a placeholder attribute so that the field doesn't overflows (#9998)....
r8565 <%= text_field_tag 'attachments[1][description]', '', :id => nil, :class => 'description', :placeholder => l(:label_optional_description) %>
Toshi MARUYAMA
replace tabs to spaces at app/views/attachments/_form.html.erb...
r7250 <%= link_to_function(image_tag('delete.png'), 'removeFileField(this)', :title => (l(:button_delete))) %>
</span>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 </span>
Jean-Philippe Lang
Prevent page reloading if something goes wrong in the 'add more file' javascript....
r1251 <small><%= link_to l(:label_add_another_file), '#', :onclick => 'addFileField(); return false;' %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 (<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
</small>