annotate templates/rss/tagentry.tmpl @ 9693:c40a1ee20aa5

transaction: always remove empty journal on abort When transactions without entries were aborted, the journal (of size 0) was not unlinked, which prevents subsequent operations until hg recover is run on the repository. We also make sure the journal is unlinked when committing, even if the provided hook doesn't do so.
author Sune Foldager <cryo@cyanite.org>
date Mon, 02 Nov 2009 10:19:14 +0100
parents 5ccca71775e1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1766
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
1 <item>
8428
5ccca71775e1 atom/rss: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 3423
diff changeset
2 <title>{tag|escape}</title>
3423
a2179e78d18b Fix RSS URLs (closes issue396)
Brendan Cully <brendan@kublai.com>
parents: 3235
diff changeset
3 <link>{urlbase}{url}rev/{node|short}</link>
8428
5ccca71775e1 atom/rss: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 3423
diff changeset
4 <description><![CDATA[{tag|strip|escape|addbreaks}]]></description>
5ccca71775e1 atom/rss: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 3423
diff changeset
5 <pubDate>{date|rfc822date}</pubDate>
1766
93f54a2b3864 tags-rss support; still shows tip
Peter van Dijk <peter@dataloss.nl>
parents:
diff changeset
6 </item>