1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
3
py:extends="'master.kid'">
5
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
6
<title> ${branch.friendly_name} : contents of ${path} at revision ${change.revno} </title>
13
<h1> <span class="branch-name">${branch.friendly_name}</span> : <span class="annotate-path">${path}</span> (revision ${change.revno})
15
<div> <b>→</b> <a href="${branch.url([ '/files', revid ])}"> browse files </a> </div>
16
<div> <b>→</b> <a href="${branch.url('/revision', start_revid=revid)}"> view revision </a> </div>
17
<div> <b>→</b> <a href="${branch.url('/changes', start_revid=revid, file_id=file_id)}"> view changes to this file </a> </div>
18
<div> <b>→</b> <a href="${branch.url([ '/download', revid, file_id, filename ])}"> view/download file </a> </div>
22
<div class="annotate">
25
<th class="lineno"> Line# </th>
26
<th class="revision"> Revision </th>
27
<th class="text"> Contents </th>
30
<tr py:for="line in contents" class="parity${line.parity}">
31
<td class="lineno ${line.status}"> ${line.lineno} </td>
32
<td class="revno ${line.status}">
33
<a py:if="line.status=='changed'" href="${branch.url('/revision', start_revid=line.change.revid, file_id=file_id)}"
34
title="${line.change.revno} by ${util.hide_email(line.change.author)}, on ${line.change.date.strftime('%d %b %Y %H:%M')} (${util.ago(line.change.date)})">${util.trunc(line.change.revno)}</a>
36
<td class="text ${line.status}"> ${XML(line.text)} </td>