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