##// END OF EJS Templates
add a fix for issue 1175...
add a fix for issue 1175 If we copy a file followed by an update, it's possible for the parent manifest to no longer contain the source file of the copy, which could cause commit to fail. If this happens, we search backwares from the first parent to find the most likely original revision.

File last commit:

r5270:b962f82c default
r6875:0d714a48 default
Show More
changelogentry.tmpl
16 lines | 509 B | application/x-cheetah | CheetahLexer
/ templates / atom / changelogentry.tmpl
Robert Bachmann
Added support for the Atom syndication format
r5269 <entry>
<title>#desc|strip|firstline|strip|escape#</title>
<id>http://www.selenic.com/mercurial/#changeset-{node}</id>
<link href="{urlbase}{url}rev/{node}"/>
<author>
<name>#author|person|escape#</name>
<email>#author|email|obfuscate#</email>
</author>
<updated>#date|rfc3339date#</updated>
<published>#date|rfc3339date#</published>
<content type="xhtml">
Robert Bachmann
Atom support: replaced xhtml namespace prefix with default namespace
r5270 <div xmlns="http://www.w3.org/1999/xhtml">
<pre xml:space="preserve">#desc|escape#</pre>
</div>
Robert Bachmann
Added support for the Atom syndication format
r5269 </content>
</entry>