~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: Martin Albisetti
  • Author(s): Jelmer Vernooij
  • Date: 2008-08-05 17:31:23 UTC
  • mfrom: (197.1.1 trunk)
  • Revision ID: argentina@gmail.com-20080805173123-srwhfyqbinpz2ol3
Add manual page for serve-branches

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>