~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: Martin Albisetti
  • Date: 2008-10-10 19:26:48 UTC
  • mfrom: (218.2.7 loggerhead.empty_branch)
  • Revision ID: martin.albisetti@canonical.com-20081010192648-3ubztpqkk3ky303q
Fix bug #258710, /files page explodes in an empty branch. (Marius Kruger)

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="parent/revno"></a>
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
 
    </li>
13
 
    <li class="mto" tal:repeat="merge_point entry/merge_points">
14
 
      <a tal:attributes="href python:url(['/changes'], start_revid=merge_point.revno)"
15
 
         tal:content="python:revno_with_nick(merge_point)"
16
 
         title="Show history" class="link"></a>
17
 
    </li>
18
 
    <li class="committerli" tal:content="python:', '.join(util.hide_emails(entry.authors))"></li>
19
 
    <tal:block content="structure python:file_change_summary(url, entry, file_changes)" />
20
 
  </ul>
21
 
</div>