blob: c521bd976d05b1ac8ab2fea7c934c2effebae07f (
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>
|