/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Jelmer Vernooij
  • Date: 2022-08-30 10:28:23 UTC
  • mfrom: (533.1.1 trunk)
  • Revision ID: otto-copilot@canonical.com-20220830102823-u3w6efosxw5s086s
Cope with moved errors NoSuchFile and FileExists in newer versions of Breezy.

Merged from https://code.launchpad.net/~jelmer/loggerhead/moved-errors/+merge/429073

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>