summaryrefslogtreecommitdiff
path: root/app/views/projects/commits/show.atom.builder
blob: 2f0b6e39800524b16a9a097665d409fccda2279a (plain)
1
2
3
4
5
6
7
8
9
10
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
  xml.title   "#{@project.name}:#{@ref} commits"
  xml.link    href: namespace_project_commits_url(@project.namespace, @project, @ref, rss_url_options), rel: "self", type: "application/atom+xml"
  xml.link    href: namespace_project_commits_url(@project.namespace, @project, @ref), rel: "alternate", type: "text/html"
  xml.id      namespace_project_commits_url(@project.namespace, @project, @ref)
  xml.updated @commits.first.committed_date.xmlschema if @commits.any?

  xml << render(@commits) if @commits.any?
end