1
<html xmlns="http://www.w3.org/1999/xhtml"
2
xmlns:py="http://genshi.edgewall.org/">
4
<title>${title} (log)</title>
7
<div id="ivle_padding">
9
<li py:for="log in logs">
11
Revision <a href="/svnlog/${path}?r=${log['revno']}"
12
style="font-weight: bold">${log['revno']}</a>
13
by <strong>${log['author']}</strong>,
14
<span title="${format_datetime(log['date'])}">${format_datetime_short(log['date'])}</span>
15
<py:choose test="revno">
16
<span py:when="log['revno']">[selected]</span>
17
<a py:otherwise="" href="${url}?r=${log['revno']}">[select]</a>
19
<a py:if="revno" href="${diffurl}?r=${revno}&r=${log['revno']}">[diff]</a>
20
<input type="button" value="Update to Revision ${log['revno']}"
21
onclick="update_revision(this, ${log['revno']})" />
23
<div class="svnlogcontent">
24
<pre py:content="log['message']" />
25
<div class="svnlogpathlist">
26
<h3>Changed paths:</h3>
28
<li py:for="path in log['paths']">