templates/rss/tagentry.tmpl
author Matt Mackall <mpm@selenic.com>
Thu, 11 Oct 2007 00:46:54 -0500
changeset 5451 0a43875677b1
parent 3413 a2179e78d18b
permissions -rw-r--r--
revlog: break up compression of large deltas Python's zlib apparently makes an internal copy of strings passed to compress(). To avoid this, compress strings 1M at a time, then join them at the end if the result would be smaller than the original. For initial commits of large but compressible files, this cuts peak memory usage nearly in half.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1766
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
     1
<item>
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
     2
    <title>#tag|escape#</title>
3413
a2179e78d18b Fix RSS URLs (closes issue396)
Brendan Cully <brendan@kublai.com>
parents: 3227
diff changeset
     3
    <link>{urlbase}{url}rev/{node|short}</link>
1766
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
     4
    <description><![CDATA[#tag|strip|escape|addbreaks#]]></description>
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
     5
    <pubDate>#date|rfc822date#</pubDate>
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
     6
</item>