Parent: [26e26c] (diff)

Child: [032a86] (diff)

Download this file

revision.html    23 lines (22 with data), 991 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude"
style="background-color:#eee;border-top:1px solid #333;">
<xi:include href="${g.pyforge_templates}/lib.html"/>
<a href="${value.url()}">Revision $value.revision.number</a>:
${h.ago(value.datetime)}<br/>
<a href="${value.tree().url()}">Tree</a><br/>
<py:if test="prev">Previous: <a href="${prev.url()}">$prev._id</a><br/></py:if>
<py:if test="next">Next: <a href="${next.url()}">$next._id</a><br/></py:if>
${Markup(g.markdown.convert(value.message))}
<p class="gravatar">
<py:if test="value.author">
<a href="${value.author.url()}">${gravatar(value.author.preferences.email_address)}</a><br />
<a href="${value.author.url()}">${value.author.display_name}</a><br />
</py:if>
<py:if test="not value.author">
${gravatar(value.author_username)}<br/>
$value.author_username<br/>
</py:if>
</p>
</div>