6
6
tal:content="string:${branch/friendly_name} : contents of ${path}
7
7
at revision ${change/revno}">
9
<metal:block fill-slot="header_extras">
10
<link rel="stylesheet" type="text/css" media="all"
11
tal:attributes="href python:branch.static_url('/static/css/annotate.css')"/>
13
17
<h1 metal:fill-slot="heading">
14
<span class="branch-name" tal:content="branch/friendly_name"></span>
16
<span class="annotate-path" tal:content="path"></span>
17
(revision <tal:revno content="change/revno"></tal:revno>)
18
<tal:block content="branch/friendly_name"></tal:block>
19
<span>: <span tal:content="path"></span> (revision <tal:revno content="change/revno"></tal:revno>)</span>
20
22
<div metal:fill-slot="content">
24
<a tal:attributes="href python:url(['/files', change.revno], clear=1)">browse files</a>
28
<a tal:attributes="href python:url(['/revision'], clear=1, start_revid=change.revno)">view revision</a>
32
<a tal:attributes="href python:url(['/changes'], clear=1, start_revid=change.revno, filter_file_id=file_id)">view changes to this file</a>
36
<a tal:attributes="href python:url(['/download', change.revno, file_id, filename])">download file</a>
25
<a tal:attributes="href python:url(['/files', change.revno], clear=1)">browse files</a>
28
<a tal:attributes="href python:url(['/revision'], clear=1, start_revid=change.revno)">view revision</a>
31
<a tal:attributes="href python:url(['/changes'], clear=1, start_revid=change.revno, filter_file_id=file_id)">view changes to this file</a>
34
<a tal:attributes="href python:url(['/download', change.revno, file_id, filename])">download file</a>
40
38
<div class="annotate">
43
<th class="lineno"> Line# </th>
44
<th class="revision"> Revision </th>
45
<th class="text"> Contents </th>
39
<table id="logentries">
40
<tr class="logheader">
41
<td class="annoLineTit">Line</td>
42
<td class="annoRevTit">Revision</td>
43
<td class="annoContTit">Contents</td>
48
<tr tal:repeat="line contents"
49
tal:attributes="class string:parity${line/parity}">
50
<td tal:attributes="class string:lineno ${line/status}">
51
<a tal:attributes="name string:L${line/lineno}"
52
tal:content="line/lineno"></a>
54
<td tal:attributes="class string:revno ${line/status}">
46
<tr tal:repeat="line contents"
47
tal:attributes="class string:blueRow${line/parity}">
48
<td class="annoLine" tal:content="line/lineno">1</td>
55
50
<a tal:condition="python:line.status=='changed'"
56
51
tal:content="python:util.trunc(line.change.revno)"
57
52
tal:attributes="href python:url(['/revision'], clear=1, start_revid=line.change.revno, filter_file_id=file_id);
58
53
title python:'%s by %s, on %s (%s)'%(line.change.revno, util.hide_email(line.change.author), line.change.date.strftime('%d %b %Y %H:%M'), util.date_time(line.change.date))"></a>
60
<td tal:attributes="class string:text ${line/status}"
61
tal:content="line/text">
55
<td class="annoCont" tal:content="line/text"></td>