~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: Matt Nordhoff
  • Date: 2009-04-17 03:38:04 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-20090417033804-u1q9x0abhjoen1s6
A couple minor PEP 8 tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div class="revisioninfo">
 
2
  <ul class="expandrev">
 
3
    <li class="mfrom" tal:repeat="parent python:entry.parents[1:]">
 
4
      <span class="revnolink">
 
5
        <a tal:attributes="href python:url(['/changes', parent.revno])"
 
6
           tal:content="python:revno_with_nick(parent)"></a>
 
7
      </span>
 
8
    </li>
 
9
    <li class="mto" tal:repeat="merge_point entry/merge_points">
 
10
      <a tal:attributes="href python:url(['/changes', merge_point.revno])"
 
11
         tal:content="python:revno_with_nick(merge_point)"
 
12
         title="Show history" class="link"></a>
 
13
    </li>
 
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)" />
 
16
  </ul>
 
17
</div>