summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/index.atom.builder
blob: 012ba235951b0d43a1b2779703864c254a36e1bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
  xml.title   "#{@project.name} issues"
  xml.link    :href => project_issues_url(@project, :atom), :rel => "self", :type => "application/atom+xml"
  xml.link    :href => project_issues_url(@project), :rel => "alternate", :type => "text/html"
  xml.id      project_issues_url(@project)
  xml.updated @issues.first.created_at.strftime("%Y-%m-%dT%H:%M:%SZ") if @issues.any?

  @issues.each do |issue|
    xml.entry do
      xml.id      project_issue_url(@project, issue)
      xml.link    :href => project_issue_url(@project, issue)
      xml.title   truncate(issue.title, :length => 80)
      xml.updated issue.created_at.strftime("%Y-%m-%dT%H:%M:%SZ")
      xml.media   :thumbnail, :width => "40", :height => "40", :url => avatar_icon(issue.author_email)
      xml.author do |author|
        xml.name issue.author_name
        xml.email issue.author_email
      end
      xml.summary issue.title
    end
  end
end