gitlabhq/app/views/commits/show.atom.builder

24 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-11-11 09:11:27 +01: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-26 01:25:14 +02: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"
2011-11-11 09:11:27 +01:00
xml.id project_commits_url(@project)
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 13:08:24 +02:00
xml.title truncate(commit.title, :length => 80)
2011-11-11 09:11:27 +01:00
xml.updated commit.committed_date.strftime("%Y-%m-%dT%H:%M:%SZ")
xml.media :thumbnail, :width => "40", :height => "40", :url => gravatar_icon(commit.author_email)
xml.author do |author|
xml.name commit.author_name
xml.email commit.author_email
end
2012-08-02 02:31:45 +02:00
xml.summary gfm(commit.description)
2011-11-11 09:11:27 +01:00
end
end
end