From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 10:47:17 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/my/blocks/_issuesreportedbyme.rhtml. X-Git-Tag: 1.3.0~990 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=02cbfec9cdb5b1b11e74d9cb5a23ffa7e6e50eca;p=redmine.git rename .rhtml to .html.erb of app/views/my/blocks/_issuesreportedbyme.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@6973 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/my/blocks/_issuesreportedbyme.html.erb b/app/views/my/blocks/_issuesreportedbyme.html.erb new file mode 100644 index 000000000..be468d140 --- /dev/null +++ b/app/views/my/blocks/_issuesreportedbyme.html.erb @@ -0,0 +1,23 @@ +

<%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)

+ +<% reported_issues = Issue.visible.find(:all, + :conditions => { :author_id => User.current.id }, + :limit => 10, + :include => [ :status, :project, :tracker ], + :order => "#{Issue.table_name}.updated_on DESC") %> +<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %> +<% if reported_issues.length > 0 %> +

<%= link_to l(:label_issue_view_all), :controller => 'issues', + :action => 'index', + :set_filter => 1, + :status_id => '*', + :author_id => 'me', + :sort => 'updated_on:desc' %>

+<% end %> + +<% content_for :header_tags do %> +<%= auto_discovery_link_tag(:atom, + {:controller => 'issues', :action => 'index', :set_filter => 1, + :author_id => 'me', :format => 'atom', :key => User.current.rss_key}, + {:title => l(:label_reported_issues)}) %> +<% end %> diff --git a/app/views/my/blocks/_issuesreportedbyme.rhtml b/app/views/my/blocks/_issuesreportedbyme.rhtml deleted file mode 100644 index be468d140..000000000 --- a/app/views/my/blocks/_issuesreportedbyme.rhtml +++ /dev/null @@ -1,23 +0,0 @@ -

<%=l(:label_reported_issues)%> (<%= Issue.visible.count(:conditions => { :author_id => User.current.id }) %>)

- -<% reported_issues = Issue.visible.find(:all, - :conditions => { :author_id => User.current.id }, - :limit => 10, - :include => [ :status, :project, :tracker ], - :order => "#{Issue.table_name}.updated_on DESC") %> -<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %> -<% if reported_issues.length > 0 %> -

<%= link_to l(:label_issue_view_all), :controller => 'issues', - :action => 'index', - :set_filter => 1, - :status_id => '*', - :author_id => 'me', - :sort => 'updated_on:desc' %>

-<% end %> - -<% content_for :header_tags do %> -<%= auto_discovery_link_tag(:atom, - {:controller => 'issues', :action => 'index', :set_filter => 1, - :author_id => 'me', :format => 'atom', :key => User.current.rss_key}, - {:title => l(:label_reported_issues)}) %> -<% end %>