blob: a44ce7034824724943081751938e436d4c59b60d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<author>
<name>$author$</name>
<email>$email$</email>
</author>
<title>$title$</title>
<id>$url$/</id>
<link rel="self" href="$url$/atom.xml" />
<updated>$updated$</updated>
$for(versions)$
<entry>
<id>$url$/archive/$versions.id$</id>
<title>$version$ $versions.id$</title>
<updated>$versions.date_atom$</updated>
<link href="$url$/archive/$versions.id$" />
<summary>$versions.summary$</summary>
</entry>
$endfor$
</feed>
|