Child: [3abb2e] (diff)

Download this file

log.html    60 lines (60 with data), 2.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="${g.pyforge_templates}/lib.html"/>
<div py:if="show_paging" style="clear:both">
${fields['page_list'].display(limit=limit, page=page, count=count)}
</div>
<table>
<thead>
<tr>
<th style="text-align:left">Commit</th>
<th style="text-align:left">Date</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<tr py:for="commit in value" py:with="cv = commit.value">
<td>
<b>${h.text.truncate(commit.value.message, 75).decode('utf8')}</b><br/>
<py:if test="cv.committer != cv.author">
<py:if test="hasattr(cv,'committer_url') and cv.committer_url is not None">
<a href="${cv.committer_url}">${email_gravatar(cv.committer.email, title=cv.committer.name, size=16)}
${cv.committer.name}</a>
pushed
</py:if>
<py:if test="not hasattr(cv,'committer_url') or cv.committer_url is None">
${email_gravatar(cv.committer.email, title=cv.committer.name, size=16)} $cv.committer.name
pushed
</py:if>
</py:if>
<a href="${cv.url()}">${h.text.truncate(cv.sha, 10)}</a>
<py:if test="cv.author_url is not None">
by
<a href="${cv.author_url}">${email_gravatar(cv.author.email, title=cv.author.name, size=16)}
${cv.author.name}</a>
</py:if>
<py:if test="cv.author_url is None">
by
${email_gravatar(cv.author.email, title=cv.author.name, size=16)} $cv.author.name
</py:if>
</td>
<td>
<py:if test="hasattr(cv,'committed_datetime')">${h.ago(cv.committed_datetime)}</py:if>
</td>
<td style="text-align: right">
<py:if test="commit.prev">
Parent(s):
<py:for each="ci in commit.prev"><a href="${ci.url()}">${h.text.truncate(ci._id, 10)}</a></py:for>
<br/>
</py:if>
<a href="${cv.tree().url()}">Tree</a>
</td>
</tr>
</tbody>
</table>
<div py:if="show_paging" style="clear:both">
${fields['page_list'].display(limit=limit, page=page, count=count)}
${fields['page_size'].display(limit=limit)}
</div>
</div>