https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a900f995161e17197a294cca1a3ea471fffc2a7c authored by Dannon Baker on 12 February 2015, 13:28:37 UTC
Fix path manipulation during fetch_eggs. This getting an external version of pkg_resources (and not ours in lib/) is what is causing the weird egg fetching errors. Newer versions of pkg_resources create a mangled distribution string for some eggs with nonstandard version identifiers.
Tip revision: a900f99
rss.mako
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
    <channel>
        <title>${title}</title>
        <link>${link}</link>
        <pubDate>${pubdate}</pubDate>
        <description>${description}</description>
        <language>en-US</language>
        <ttl>60</ttl>
        <docs>http://cyber.law.harvard.edu/rss/rss.html</docs>
        %for item in items:
            <item>
                <pubDate>${item['pubdate']}</pubDate>
                <title>${item['title']}</title>
                <link>${item['link']}</link>
                <guid>${item['guid']}</guid>
                <description>
                    ${item['description']}
                </description>
            </item>
        %endfor
    </channel>
</rss>
back to top