debian-mirror-gitlab/app/views/projects/commits/show.atom.builder

11 lines
681 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
2015-09-11 14:41:01 +05:30
xml.title "#{@project.name}:#{@ref} commits"
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"
xml.link href: namespace_project_commits_url(@project.namespace, @project, @ref), rel: "alternate", type: "text/html"
2015-04-26 12:48:37 +05:30
xml.id namespace_project_commits_url(@project.namespace, @project, @ref)
xml.updated @commits.first.committed_date.xmlschema if @commits.any?
2014-09-02 18:07:02 +05:30
xml << render(@commits) if @commits.any?
2014-09-02 18:07:02 +05:30
end