diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-01 13:13:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-01 13:13:04 +0000 |
commit | 50096526bcb0e7a91562ae15d3d97c6cab241439 (patch) | |
tree | 421b5e185b43eb86a503ef4e9ff06c3d6bffe9c7 /app/views/projects/show.rhtml | |
parent | c6e8cf5c21dd1f1e18373c948c2e16f20b2eb5f3 (diff) | |
download | redmine-50096526bcb0e7a91562ae15d3d97c6cab241439.tar.gz redmine-50096526bcb0e7a91562ae15d3d97c6cab241439.zip |
Removed ProjectsController#feeds. This view was incomplete and inconsistent with permissions.
Feeds can still be accessed from the corresponding screens (eg. news feed is accessible from the news view).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@787 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects/show.rhtml')
-rw-r--r-- | app/views/projects/show.rhtml | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/app/views/projects/show.rhtml b/app/views/projects/show.rhtml index 6671af1ca..25fbe3c68 100644 --- a/app/views/projects/show.rhtml +++ b/app/views/projects/show.rhtml @@ -76,18 +76,8 @@ <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> | <%= link_to(l(:label_report), {:controller => 'timelog', :action => 'report', :project_id => @project}) %></p> <% end %> - - <hr /> - <p><%= link_to l(:label_feed_plural), {:action => 'feeds', :id => @project}, :class => 'icon icon-feed' %></p> <% end %> <% content_for :header_tags do %> -<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key}, {:title => l(:label_reported_issues)}) %> -<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'issues', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_reported_issues)}) %> - -<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key }, {:title => l(:label_changes_details)}) %> -<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'history', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_changes_details)}) %> - -<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key}, {:title => l(:label_news_latest)}) %> -<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'news', :project_id => @project, :key => @key, :format => 'atom'}, {:title => l(:label_news_latest)}) %> +<%= auto_discovery_link_tag(:atom, {:action => 'activity', :id => @project, :format => 'atom', :key => User.current.rss_key}) %> <% end %> |