BigW Consortium Gitlab

show.atom.builder 681 Bytes
Newer Older
1 2
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
3
  xml.title   "#{@project.name}:#{@ref} commits"
Douwe Maan committed
4
  xml.link    href: namespace_project_commits_url(@project.namespace, @project, @ref, format: :atom, private_token: current_user.try(:private_token)), rel: "self", type: "application/atom+xml"
5
  xml.link    href: namespace_project_commits_url(@project.namespace, @project, @ref), rel: "alternate", type: "text/html"
Vinnie Okada committed
6
  xml.id      namespace_project_commits_url(@project.namespace, @project, @ref)
7
  xml.updated @commits.first.committed_date.xmlschema if @commits.any?
8

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