gitlab-org--gitlab-foss/app/views/projects/show.atom.builder

11 lines
572 B
Plaintext
Raw Normal View History

2015-04-21 14:57:01 +00:00
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
xml.title "#{@project.name} activity"
xml.link href: namespace_project_url(@project.namespace, @project, rss_url_options), rel: "self", type: "application/atom+xml"
xml.link href: namespace_project_url(@project.namespace, @project), rel: "alternate", type: "text/html"
xml.id namespace_project_url(@project.namespace, @project)
2016-02-03 23:21:14 +00:00
xml.updated @events[0].updated_at.xmlschema if @events[0]
2015-04-21 14:57:01 +00:00
2016-05-21 23:02:49 +00:00
xml << render(@events) if @events.any?
2015-04-21 14:57:01 +00:00
end