From: Toshi MARUYAMA Date: Sat, 27 Aug 2011 03:16:30 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/documents/show.rhtml. X-Git-Tag: 1.3.0~1304 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=10d1f1aefdd2c30349c025eb938dd9b25147f54b;p=redmine.git rename .rhtml to .html.erb of app/views/documents/show.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6658 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/documents/show.html.erb b/app/views/documents/show.html.erb new file mode 100644 index 000000000..29845bfa3 --- /dev/null +++ b/app/views/documents/show.html.erb @@ -0,0 +1,32 @@ +
+<%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> +<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> +
+ +

<%=h @document.title %>

+ +

<%=h @document.category.name %>
+<%= format_date @document.created_on %>

+
+<%= textilizable @document.description, :attachments => @document.attachments %> +
+ +

<%= l(:label_attachment_plural) %>

+<%= link_to_attachments @document %> + +<% if authorize_for('documents', 'add_attachment') %> +

<%= link_to l(:label_attachment_new), {}, :onclick => "Element.show('add_attachment_form'); Element.hide(this); Element.scrollTo('add_attachment_form'); return false;", + :id => 'attach_files_link' %>

+ <% form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %> +
+

<%= render :partial => 'attachments/form' %>

+
+ <%= submit_tag l(:button_add) %> + <% end %> +<% end %> + +<% html_title h(@document.title) -%> + +<% content_for :header_tags do %> + <%= stylesheet_link_tag 'scm' %> +<% end %> diff --git a/app/views/documents/show.rhtml b/app/views/documents/show.rhtml deleted file mode 100644 index 29845bfa3..000000000 --- a/app/views/documents/show.rhtml +++ /dev/null @@ -1,32 +0,0 @@ -
-<%= link_to_if_authorized l(:button_edit), {:controller => 'documents', :action => 'edit', :id => @document}, :class => 'icon icon-edit', :accesskey => accesskey(:edit) %> -<%= link_to_if_authorized l(:button_delete), {:controller => 'documents', :action => 'destroy', :id => @document}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> -
- -

<%=h @document.title %>

- -

<%=h @document.category.name %>
-<%= format_date @document.created_on %>

-
-<%= textilizable @document.description, :attachments => @document.attachments %> -
- -

<%= l(:label_attachment_plural) %>

-<%= link_to_attachments @document %> - -<% if authorize_for('documents', 'add_attachment') %> -

<%= link_to l(:label_attachment_new), {}, :onclick => "Element.show('add_attachment_form'); Element.hide(this); Element.scrollTo('add_attachment_form'); return false;", - :id => 'attach_files_link' %>

- <% form_tag({ :controller => 'documents', :action => 'add_attachment', :id => @document }, :multipart => true, :id => "add_attachment_form", :style => "display:none;") do %> -
-

<%= render :partial => 'attachments/form' %>

-
- <%= submit_tag l(:button_add) %> - <% end %> -<% end %> - -<% html_title h(@document.title) -%> - -<% content_for :header_tags do %> - <%= stylesheet_link_tag 'scm' %> -<% end %>