blob: 5595efef1135e872f366168a262f6f70a7b06daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91"
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal">
<channel>
<title><tal:x tal:replace="test" />PyPI Recent Updates</title>
<link tal:content="string:${app/url_machine}${app/url_path}" />
<description>Recent updates to the <tal:x tal:replace="test" />Python Package Index</description>
<language>en</language>
<item tal:repeat="release app/store/latest_releases">
<title tal:content="string:${release/name} ${release/version}" />
<link tal:content="python:'http://pypi.python.org%s'%app.packageURL(
release['name'], release['version'])" />
<description tal:content="release/summary" />
<pubDate tal:content="python:release['submitted_date'].strftime('%d %b %Y %H:%M:%S GMT')" />
</item>
</channel>
</rss>
|