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

24 lines
1.3 KiB
Plaintext
Raw Normal View History

2011-11-11 08:11:27 +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}:#{@ref} commits"
2015-05-21 09:39:33 +00:00
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"
xml.id namespace_project_commits_url(@project.namespace, @project, @ref)
2016-01-07 21:45:56 +00:00
xml.updated @commits.first.committed_date.to_s(:iso8601) if @commits.any?
2011-11-11 08:11:27 +00:00
@commits.each do |commit|
xml.entry do
xml.id namespace_project_commit_url(@project.namespace, @project, id: commit.id)
xml.link href: namespace_project_commit_url(@project.namespace, @project, id: commit.id)
xml.title truncate(commit.title, length: 80)
2016-01-07 21:45:56 +00:00
xml.updated commit.committed_date.to_s(:iso8601)
xml.media :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(commit.author_email))
2011-11-11 08:11:27 +00:00
xml.author do |author|
xml.name commit.author_name
xml.email commit.author_email
end
xml.summary markdown(commit.description, pipeline: :single_line)
2011-11-11 08:11:27 +00:00
end
end
end