~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: Matt Nordhoff
  • Date: 2009-05-13 12:00:14 UTC
  • mto: (389.2.2 pep8-2009-10)
  • mto: This revision was merged to the branch mainline in revision 392.
  • Revision ID: mnordhoff@mattnordhoff.com-20090513120014-73pfp1x20cs3ql8z
Whitespace tweak

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
    <li class="mfrom" tal:repeat="parent python:entry.parents[1:]">
4
4
      <span class="revnolink">
5
5
        <a tal:attributes="href python:url(['/changes', parent.revno])"
6
 
           tal:content="parent/revno"></a>
 
6
           tal:content="python:revno_with_nick(parent)"></a>
7
7
      </span>
8
 
      <a tal:condition="parent.branch_nick"
9
 
         tal:attributes="href python:url(['/changes'], start_revid=parent.revno)"
10
 
         tal:content="python:'(' + parent.branch_nick + ')'"
11
 
         title="Show history" class="link"></a>
12
8
    </li>
13
9
    <li class="mto" tal:repeat="merge_point entry/merge_points">
14
 
      <a tal:attributes="href python:url(['/changes'], start_revid=merge_point.revno)"
 
10
      <a tal:attributes="href python:url(['/changes', merge_point.revno])"
15
11
         tal:content="python:revno_with_nick(merge_point)"
16
12
         title="Show history" class="link"></a>
17
13
    </li>
18
 
    <li class="committerli" tal:content="python:util.hide_email(entry.author)"></li>
19
 
    <tal:block content="structure python:file_change_summary(url, entry)" />
 
14
    <li class="committerli" tal:content="python:', '.join(util.hide_emails(entry.authors))"></li>
 
15
    <tal:block content="structure python:file_change_summary(url, entry, file_changes)" />
20
16
  </ul>
21
17
</div>