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

24 lines
1.1 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 "Recent commits to #{@project.name}:#{@ref}"
2012-09-25 23:25:14 +00:00
xml.link :href => project_commits_url(@project, @ref, format: :atom), :rel => "self", :type => "application/atom+xml"
xml.link :href => project_commits_url(@project, @ref), :rel => "alternate", :type => "text/html"
xml.id project_commits_url(@project, @ref)
2011-11-11 08:11:27 +00:00
xml.updated @commits.first.committed_date.strftime("%Y-%m-%dT%H:%M:%SZ") if @commits.any?
@commits.each do |commit|
xml.entry do
xml.id project_commit_url(@project, :id => commit.id)
xml.link :href => project_commit_url(@project, :id => commit.id)
2012-07-22 11:08:24 +00:00
xml.title truncate(commit.title, :length => 80)
2011-11-11 08:11:27 +00:00
xml.updated commit.committed_date.strftime("%Y-%m-%dT%H:%M:%SZ")
2013-10-06 18:13:56 +00:00
xml.media :thumbnail, :width => "40", :height => "40", :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
2012-08-02 00:31:45 +00:00
xml.summary gfm(commit.description)
2011-11-11 08:11:27 +00:00
end
end
end