From: Toshi MARUYAMA Date: Tue, 23 Aug 2011 08:41:08 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/repositories/changes.rhtml. X-Git-Tag: 1.3.0~1421 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=804db5d0731ef53414dea70608819a0635a145c5;p=redmine.git rename .rhtml to .html.erb of app/views/repositories/changes.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@6540 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/repositories/changes.html.erb b/app/views/repositories/changes.html.erb new file mode 100644 index 000000000..3d4c7a96b --- /dev/null +++ b/app/views/repositories/changes.html.erb @@ -0,0 +1,18 @@ +<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> + +
+ <%= render :partial => 'navigation' %> +
+ +

+ <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %> +

+ +

<%= render :partial => 'link_to_functions' %>

+ +<%= render_properties(@properties) %> + +<%= render(:partial => 'revisions', + :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %> + +<% html_title(l(:label_change_plural)) -%> diff --git a/app/views/repositories/changes.rhtml b/app/views/repositories/changes.rhtml deleted file mode 100644 index 3d4c7a96b..000000000 --- a/app/views/repositories/changes.rhtml +++ /dev/null @@ -1,18 +0,0 @@ -<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %> - -
- <%= render :partial => 'navigation' %> -
- -

- <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %> -

- -

<%= render :partial => 'link_to_functions' %>

- -<%= render_properties(@properties) %> - -<%= render(:partial => 'revisions', - :locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %> - -<% html_title(l(:label_change_plural)) -%>