~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revisioninfo.pt

[rs=mwhudson] upgrade to loggerhead trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<div class="infoContainer">
2
2
    <div id="infTxt">
3
 
        <div class="committer" tal:content="python:util.hide_email(change.author)"></div>
 
3
        <div class="committer" tal:content="python:', '.join(util.hide_emails(change.authors))"></div>
4
4
        <div class="timer" tal:content="python:util.date_time(change.date)"></div>
5
5
        <div class="mfrom" tal:repeat="parent python:change.parents[1:]">
6
6
            <a tal:attributes="title string:Merged From ${parent/revno};
13
13
               tal:content="python:revno_with_nick(merge_point)"></a>
14
14
        </div>
15
15
        <div class="revid" tal:content="string:Revision ID: ${change/revid}"></div>
16
 
        <div class="information" tal:content="python:util.fixed_width(change.comment)"></div>
 
16
        <div class="information" tal:content="structure python:util.fixed_width(change.comment)"></div>
17
17
    </div>
18
 
    <ul id="list-files">
19
 
        <tal:block condition="nocall:modified_file_link">
20
 
        <tal:block content="structure python:file_change_summary(url, change, modified_file_link)" /></tal:block>
 
18
    <ul id="list-files" tal:condition="file_changes">
 
19
      <tal:block content="structure python:file_change_summary(url, change, file_changes, 'fragment', currently_showing)" />
21
20
    </ul>
22
21
    <div class="clear"><!-- --></div>
23
22
</div>