##// END OF EJS Templates
Add project name to cross-project Atom feeds (#1527)....
Jean-Philippe Lang -
r1571:31e3d180c01e
parent child
Show More
@@ -1,27 +1,31
1 1 xml.instruct!
2 2 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
3 3 xml.title truncate_single_line(@title, 100)
4 4 xml.link "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
5 5 xml.link "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
6 6 xml.id url_for(:controller => 'welcome', :only_path => false)
7 7 xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema)
8 8 xml.author { xml.name "#{Setting.app_title}" }
9 9 xml.generator(:uri => Redmine::Info.url, :version => Redmine::VERSION) { xml.text! Redmine::Info.versioned_name; }
10 10 @items.each do |item|
11 11 xml.entry do
12 12 url = url_for(item.event_url(:only_path => false))
13 if @project
13 14 xml.title truncate_single_line(item.event_title, 100)
15 else
16 xml.title truncate_single_line("#{item.project} - #{item.event_title}", 100)
17 end
14 18 xml.link "rel" => "alternate", "href" => url
15 19 xml.id url
16 20 xml.updated item.event_datetime.xmlschema
17 21 author = item.event_author if item.respond_to?(:event_author)
18 22 xml.author do
19 23 xml.name(author)
20 24 xml.email(author.mail) if author.respond_to?(:mail) && !author.mail.blank?
21 25 end if author
22 26 xml.content "type" => "html" do
23 27 xml.text! textilizable(item.event_description)
24 28 end
25 29 end
26 30 end
27 31 end
General Comments 0
You need to be logged in to leave comments. Login now