##// END OF EJS Templates
fix for issue #578 git hooks sometimes cannot be executed due to different python they runned under, this commit tries to fix that by altering the PATH env variable using current python that rhodecode is running
fix for issue #578 git hooks sometimes cannot be executed due to different python they runned under, this commit tries to fix that by altering the PATH env variable using current python that rhodecode is running

File last commit:

r2492:79818f54 beta
r2869:ccbdff90 beta
Show More
compare_diff.html
77 lines | 2.5 KiB | text/html | HtmlLexer
Created base for diffing two repositories inside rhodecode
r2337 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Implemented basic compare view(for pull requests) for mercurial.
r2348 ${c.repo_name} ${_('Compare')} ${'%s@%s' % (c.org_repo.repo_name, c.org_ref)} -> ${'%s@%s' % (c.other_repo.repo_name, c.other_ref)}
Created base for diffing two repositories inside rhodecode
r2337 </%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
Created base for diffing two repositories inside rhodecode
r2337 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
Implemented basic compare view(for pull requests) for mercurial.
r2348 ${_('Compare')}
Created base for diffing two repositories inside rhodecode
r2337 </%def>
<%def name="page_nav()">
${self.menu('changelog')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
<div id="body" class="diffblock">
<div class="code-header cv">
Improved cross repos diffs...
r2362 <h3 class="code-header-title">${_('Compare View')}</h3>
Created base for diffing two repositories inside rhodecode
r2337 <div>
Improved cross repos diffs...
r2362 ${'%s@%s' % (c.org_repo.repo_name, c.org_ref)} -> ${'%s@%s' % (c.other_repo.repo_name, c.other_ref)} <a href="${c.swap_url}">[swap]</a>
Created base for diffing two repositories inside rhodecode
r2337 </div>
</div>
</div>
<div id="changeset_compare_view_content">
created pull-request overview
r2395 ##CS
Added basic models for saving open pull requests...
r2434 <div style="font-size:1.1em;font-weight: bold;clear:both;padding-top:10px">${_('Outgoing changesets')}</div>
created pull-request overview
r2395 <%include file="compare_cs.html" />
## FILES
Created base for diffing two repositories inside rhodecode
r2337 <div style="font-size:1.1em;font-weight: bold;clear:both;padding-top:10px">${_('Files affected')}</div>
<div class="cs_files">
Added basic models for saving open pull requests...
r2434 %for fid, change, f, stat in c.files:
Implemented basic compare view(for pull requests) for mercurial.
r2348 <div class="cs_${change}">
<div class="node">${h.link_to(h.safe_unicode(f),h.url.current(anchor=fid))}</div>
<div class="changes">${h.fancy_file_stats(stat)}</div>
</div>
Created base for diffing two repositories inside rhodecode
r2337 %endfor
</div>
</div>
</div>
Added basic models for saving open pull requests...
r2434
Implemented basic compare view(for pull requests) for mercurial.
r2348 ## diff block
<%namespace name="diff_block" file="/changeset/diff_block.html"/>
%for fid, change, f, stat in c.files:
${diff_block.diff_block_simple([c.changes[fid]])}
%endfor
Added basic models for saving open pull requests...
r2434
Created base for diffing two repositories inside rhodecode
r2337 <script type="text/javascript">
YUE.onDOMReady(function(){
YUE.on(YUQ('.diff-menu-activate'),'click',function(e){
var act = e.currentTarget.nextElementSibling;
if(YUD.hasClass(act,'active')){
YUD.removeClass(act,'active');
YUD.setStyle(act,'display','none');
}else{
YUD.addClass(act,'active');
YUD.setStyle(act,'display','');
}
});
})
</script>
</div>
</%def>