]> source.dussan.org Git - redmine.git/commitdiff
Added 'reported by me' and 'assigned to me' issue feeds on 'My page'.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 31 Aug 2007 21:43:13 +0000 (21:43 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 31 Aug 2007 21:43:13 +0000 (21:43 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@688 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/my/blocks/_issuesassignedtome.rhtml
app/views/my/blocks/_issuesreportedbyme.rhtml

index 9b97cb39d499740daabdcda5b627ea0249206747..4f020b4cad9013ea3d9669bf84cdeec67340770b 100644 (file)
@@ -8,3 +8,10 @@
 <% if assigned_issues.length > 0 %>
 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => 'me' %></p>
 <% end %>
+
+<% content_for :header_tags do %>
+<%= auto_discovery_link_tag(:atom, 
+                            {:controller => 'issues', :action => 'index', :set_filter => 1,
+                             :assigned_to_id => 'me', :format => 'atom', :key => User.current.rss_key},
+                            {:title => l(:label_assigned_to_me_issues)}) %>
+<% end %>
index a0770846c9d2aef419b068858a37d1b1cb768858..317aebbfce0aa5969eec3f4a48ede196d869d709 100644 (file)
@@ -8,3 +8,10 @@
 <% if reported_issues.length > 0 %>
 <p class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :author_id => 'me' %></p>
 <% 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 %>