1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# frozen_string_literal: true
protocol = Setting.protocol
host = Setting.host_name
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
xml.title truncate_single_line_raw(@title, 100)
xml.link(
"rel" => "self",
"href" =>
url_for(
:params => request.query_parameters,
:only_path => false, :format => 'atom',
:protocol => protocol, :host => host
)
)
xml.link(
"rel" => "alternate",
"href" =>
url_for(
:params =>
request.query_parameters.merge(
:format => nil,
:key => nil
),
:only_path => false,
:protocol => protocol,
:host => host
)
)
xml.id home_url
xml.icon favicon_url
xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema)
xml.author {xml.name "#{Setting.app_title}"}
xml.generator(:uri => Redmine::Info.url) {xml.text! Redmine::Info.app_name}
@items.each do |item|
xml.entry do
url = url_for(item.event_url(:only_path => false, :protocol => protocol, :host => host))
if @project
xml.title truncate_single_line_raw(item.event_title, 100)
else
xml.title truncate_single_line_raw("#{item.project} - #{item.event_title}", 100)
end
xml.link "rel" => "alternate", "href" => url
xml.id url
xml.updated item.event_datetime.xmlschema
author = item.event_author if item.respond_to?(:event_author)
xml.author do
xml.name(author)
xml.email(author.mail) if author.is_a?(User) && !author.mail.blank? && !author.pref.hide_mail
end if author
xml.content "type" => "html" do
xml.text! textilizable(item, :event_description, :only_path => false)
end
end
end
end
|