1
<div id="infoContainer" class="revision-info">
3
<div class="comiter" tal:content="python:util.hide_email(change.author)"></div>
4
<div class="timer" tal:content="python:util.date_time(change.date)"></div>
5
<div class="mfrom" tal:repeat="parent python:change.parents[1:]">
6
<a tal:attributes="title string:Merged From ${parent/revno};
7
href python:url(['/revision', parent.revno], clear=1)"
8
tal:content="python:revno_with_nick(parent)"></a>
10
<div class="mto" tal:repeat="merge_point change/merge_points">
11
<a tal:attributes="title string:Merged In ${merge_point/revno};
12
href python:url(['/revision', merge_point.revno], clear=1)"
13
tal:content="python:revno_with_nick(merge_point)"></a>
15
<div class="revid" tal:content="string:Revision ID: ${change/revid}"></div>
16
<div class="information" tal:content="python:util.fixed_width(change.comment)"></div>
19
<tal:block condition="nocall:modified_file_link">
20
<tal:block content="structure python:file_change_summary(url, change, modified_file_link)" /></tal:block>
22
<div class="clear"><!-- --></div>
1
<div class="revision-info">
8
tal:content="python:util.hide_email(change.author)">
17
tal:content="python:util.date_time(change.date)">
22
<tr tal:repeat="merge_point change/merge_points">
24
<tal:block condition="repeat/merge_point/start">
29
<a title="Show history"
30
tal:attributes="title string:Show revision ${merge_point/revno};
31
href python:url(['/revision', merge_point.revno])"
32
tal:content="python:revno_with_nick(merge_point)">
38
<tr tal:repeat="parent python:change.parents[1:]">
40
<tal:block condition="repeat/parent/start">
45
<a title="Show history"
46
tal:attributes="title string:Show revision ${parent/revno};
47
href python:url(['/revision', parent.revno], clear=1)"
48
tal:content="python:revno_with_nick(parent)">
56
<th class="description">
59
<td class="description">
60
<span tal:repeat="line change/comment_clean">
61
<tal:line replace="structure line" />
72
<span tal:content="python:change.revid">
78
<tal:block condition="nocall:modified_file_link">
85
<tal:block content="structure python:file_change_summary(url, change, modified_file_link)" />