diff_block.html
63 lines
| 3.2 KiB
| text/html
|
HtmlLexer
r1787 | ## -*- coding: utf-8 -*- | |||
##usage: | ||||
## <%namespace name="diff_block" file="/changeset/diff_block.html"/> | ||||
r2348 | ## ${diff_block.diff_block(change)} | |||
r1787 | ## | |||
r2348 | <%def name="diff_block(change)"> | |||
r1787 | ||||
r2995 | %for FID,(cs1, cs2, change, path, diff, stats) in change.iteritems(): | |||
##%if op !='removed': | ||||
<div id="${FID}_target" style="clear:both;margin-top:25px"></div> | ||||
<div id="${FID}" class="diffblock margined comm"> | ||||
r1787 | <div class="code-header"> | |||
<div class="changeset_header"> | ||||
<div class="changeset_file"> | ||||
r2995 | ${h.link_to_if(change!='removed',h.safe_unicode(path),h.url('files_home',repo_name=c.repo_name, | |||
revision=cs2,f_path=h.safe_unicode(path)))} | ||||
r1787 | </div> | |||
r1865 | <div class="diff-actions"> | |||
r2996 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(path),diff2=cs2,diff1=cs1,diff='diff',fulldiff=1)}" class="tooltip" title="${h.tooltip(_('show full diff for this file'))}"><img class="icon" src="${h.url('/images/icons/page_white_go.png')}"/></a> | |||
r2995 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(path),diff2=cs2,diff1=cs1,diff='raw')}" class="tooltip" title="${h.tooltip(_('raw diff'))}"><img class="icon" src="${h.url('/images/icons/page_white.png')}"/></a> | |||
r2996 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(path),diff2=cs2,diff1=cs1,diff='download')}" class="tooltip" title="${h.tooltip(_('download diff'))}"><img class="icon" src="${h.url('/images/icons/page_save.png')}"/></a> | |||
r2995 | ${c.ignorews_url(request.GET, h.FID(cs2,path))} | |||
${c.context_url(request.GET, h.FID(cs2,path))} | ||||
r1865 | </div> | |||
r1787 | <span style="float:right;margin-top:-3px"> | |||
<label> | ||||
${_('show inline comments')} | ||||
r2995 | ${h.checkbox('',checked="checked",class_="show-inline-comments",id_for=h.FID(cs2,path))} | |||
r1787 | </label> | |||
</span> | ||||
</div> | ||||
</div> | ||||
<div class="code-body"> | ||||
r2995 | <div class="full_f_path" path="${h.safe_unicode(path)}"></div> | |||
r1789 | ${diff|n} | |||
r1787 | </div> | |||
</div> | ||||
r2995 | ##%endif | |||
r1787 | %endfor | |||
r1888 | </%def> | |||
r2348 | ||||
<%def name="diff_block_simple(change)"> | ||||
%for op,filenode_path,diff in change: | ||||
<div id="${h.FID('',filenode_path)}_target" style="clear:both;margin-top:25px"></div> | ||||
r2478 | <div id="${h.FID('',filenode_path)}" class="diffblock margined comm"> | |||
r2348 | <div class="code-header"> | |||
<div class="changeset_header"> | ||||
<div class="changeset_file"> | ||||
r3357 | ${h.safe_unicode(filenode_path)} | | |||
<a class="spantag" href="${h.url('files_home', repo_name=c.repo_name, f_path=filenode_path, revision=c.org_ref)}">${c.org_ref_type}@${c.org_ref}</a> -> | ||||
<a class="spantag" href="${h.url('files_home', repo_name=c.repo_name, f_path=filenode_path, revision=c.other_ref)}">${c.other_ref_type}@${c.other_ref}</a> | ||||
r2348 | </div> | |||
</div> | ||||
</div> | ||||
<div class="code-body"> | ||||
<div class="full_f_path" path="${h.safe_unicode(filenode_path)}"></div> | ||||
${diff|n} | ||||
</div> | ||||
</div> | ||||
%endfor | ||||
r2478 | </%def> | |||