##// END OF EJS Templates
xss in issue subject on issues/edit...
xss in issue subject on issues/edit git-svn-id: http://redmine.rubyforge.org/svn/trunk@107 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r90:236c735d08c0
r104:6c8e1514aa0c
Show More
show.rhtml
36 lines | 1.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
<%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'pic picEdit' %>
<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
</div>
Jean-Philippe Lang
Initial commit...
r2 <h2><%= @document.title %></h2>
Jean-Philippe Lang
documents views modified...
r58 <p><em><%= @document.category.name %><br />
<%= format_date @document.created_on %></em></p>
<%= textilizable @document.description %>
<br />
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
documents views modified...
r58 <h3><%= l(:label_attachment_plural) %></h3>
<ul>
Jean-Philippe Lang
association loading in documents/show...
r22 <% for attachment in @attachments %>
Jean-Philippe Lang
documents views modified...
r58 <li>
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy_attachment', :id => @document, :attachment_id => attachment}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
</div>
Jean-Philippe Lang
documents views modified...
r58 <%= link_to attachment.filename, :action => 'download', :id => @document, :attachment_id => attachment %>
(<%= human_size attachment.filesize %>)<br />
<em><%= attachment.author.display_name %>, <%= format_date(attachment.created_on) %></em><br />
<%= lwr(:label_download, attachment.downloads) %>
</li>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
Jean-Philippe Lang
documents views modified...
r58 </ul>
Jean-Philippe Lang
Initial commit...
r2 <br />
Jean-Philippe Lang
documents views modified...
r58
Jean-Philippe Lang
Initial commit...
r2 <% if authorize_for('documents', 'add_attachment') %>
<%= start_form_tag ({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true) %>
Jean-Philippe Lang
documents views modified...
r58 <label><%=l(:label_attachment_new)%></label>&nbsp;&nbsp;
<%= file_field 'attachment', 'file' %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= submit_tag l(:button_add) %>
Jean-Philippe Lang
Initial commit...
r2 <%= end_form_tag %>
<% end %>