[Pypi-checkins] r1003 - trunk/pypi/templates

richard python-checkins at python.org
Tue Dec 20 02:41:53 CET 2011


Author: richard
Date: Tue Dec 20 02:41:53 2011
New Revision: 1003

Modified:
   trunk/pypi/templates/packages-rss.xml
Log:
try using a guid to allow RSS readers to cope with release updates in later RSS versions

Modified: trunk/pypi/templates/packages-rss.xml
==============================================================================
--- trunk/pypi/templates/packages-rss.xml	(original)
+++ trunk/pypi/templates/packages-rss.xml	Tue Dec 20 02:41:53 2011
@@ -10,8 +10,9 @@
   <language>en</language>
 
   <item tal:repeat="release app/store/latest_packages">
-    <title tal:content="string:${release/name} ${release/version}" />
+    <title tal:content="${release/name} added to PyPI" />
     <link tal:content="python:'http://pypi.python.org%s'%app.packageURL(release['name'], None)" />
+    <guid tal:content="python:'http://pypi.python.org%s'%app.packageURL(release['name'], None)" />
     <description tal:content="release/summary" />
     <pubDate tal:content="python:release['submitted_date'].strftime('%d %b %Y %H:%M:%S GMT')" />
    </item>


More information about the Pypi-checkins mailing list