summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/common/feed.atom.builder27
1 files changed, 24 insertions, 3 deletions
diff --git a/app/views/common/feed.atom.builder b/app/views/common/feed.atom.builder
index 5498c27e2..a67f7154a 100644
--- a/app/views/common/feed.atom.builder
+++ b/app/views/common/feed.atom.builder
@@ -4,9 +4,30 @@ 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.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)