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_name} : contents of ${path} at revision ${change.revno} </title>
13
<h1> <span class="branch-name">${branch_name}</span> : ${path} (revision ${change.revno}) </h1>
15
<!-- !FIXME: this is just copied verbatim from revision.kid -->
16
<!--div class="revision-info">
19
<th class="author">committed by:</th>
20
<td class="author"> ${util.hide_email(change.author)} </td>
23
<th class="date">date:</th>
24
<td class="date"> ${change.date.strftime('%d %b %Y %H:%M')} </td>
27
<tr py:if="len(change.merge_points) > 0">
28
<th class="children"> merged in: </th>
30
<span py:for="child in change.merge_points"> ${revlink(child.revid, '(' + child.revno + ')')} </span>
33
<tr py:if="len(change.parents) > 1">
34
<th class="parents"> merged from: </th>
36
<span py:for="parent in change.parents"><span py:if="parent.revid != change.parents[0].revid"> ${revlink(parent.revid, '(' + parent.revno + ')')} </span></span>
41
<th class="description">description:</th>
42
<td class="description"><span py:for="line in change.comment_clean">${XML(line)} <br /></span></td>
47
<div class="annotate">
50
<th class="lineno"> Line# </th>
51
<th class="revision"> Revision </th>
52
<th class="text"> Contents </th>
55
<tr py:for="line in contents" class="parity${line.parity}">
56
<td class="lineno ${line.status}"> ${line.lineno} </td>
57
<td class="revno ${line.status}">
58
<a py:if="line.status=='changed'" href="${tg.url('/revision', start_revid=line.change.revid, path=path)}"
59
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)})">${line.trunc_revno}</a>
61
<!--td class="author"> ${util.hide_email(line.author)} </td-->
62
<td class="text ${line.status}"> ${XML(line.text)} </td>