equal
deleted
inserted
replaced
|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US"> |
|
3 <id>tag:crash,2012,<%= url_for('index')->to_abs =%></id> |
|
4 <link type="text/html" rel="alternate" href="<%= url_for()->to_abs =%>"/> |
|
5 <link type="application/atom+xml" rel="self" href="<%= url_for('current', format => 'atom')->to_abs =%>"/> |
|
6 <title>Recent Crashs</title> |
|
7 <updated><%= POSIX::strftime("%FT%T%z", gmtime(@$files[0]->{date} || 0)) =%></updated> |
|
8 |
|
9 % foreach my $file(@$files) { |
|
10 <entry> |
|
11 <id>tag:crash,2012:uuid::<%= $file->{uuid} =%></id> |
|
12 <link type="text/html" rel="alternate" href="<%= url_for('report', uuid => $file->{uuid})->to_abs =%>"/> |
|
13 <title><%= $file->{product} =%>: <%= $file->{signature} =%></title> |
|
14 <updated><%= POSIX::strftime("%FT%T%z", gmtime($file->{date})) =%></updated> |
|
15 <author> |
|
16 <name></name> |
|
17 </author> |
|
18 <content type="html"> |
|
19 %= t span => POSIX::strftime("%F %T", localtime($file->{date})) |
|
20 </content> |
|
21 </entry> |
|
22 % } |
|
23 </feed> |