~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revisioninfo.pt

  • Committer: Jelmer Vernooij
  • Date: 2009-06-02 22:10:00 UTC
  • mto: This revision was merged to the branch mainline in revision 360.
  • Revision ID: jelmer@samba.org-20090602221000-qdrc9hagb5h3w6to
Install the bzr plugin for loggerhead in setup.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div class="infoContainer">
 
2
    <div id="infTxt">
 
3
        <div class="committer" tal:content="python:', '.join(util.hide_emails(change.authors))"></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>
 
9
        </div>
 
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>
 
14
        </div>
 
15
        <div class="mto" tal:condition="merged_in">
 
16
          This revision was merged to the branch mainline in
 
17
          <a tal:attributes="href python:url(['/revision', merged_in], clear=1)">revision
 
18
            <tal:b content="merged_in"/></a>.
 
19
        </div>
 
20
        <div class="revid" tal:content="string:Revision ID: ${change/revid}"></div>
 
21
        <div class="clear"><!-- --></div>
 
22
        <div class="bug" tal:repeat="bug change/bugs">
 
23
            <a tal:attributes="href bug" tal:content="bug"></a>
 
24
        </div>
 
25
        <div class="information" tal:content="structure python:util.fixed_width(change.comment)"></div>
 
26
    </div>
 
27
    <ul id="list-files" tal:condition="file_changes">
 
28
      <tal:block content="structure python:file_change_summary(url, change, file_changes, 'fragment', currently_showing)" />
 
29
    </ul>
 
30
    <div class="clear"><!-- --></div>
 
31
</div>