##// 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:

r2430:9f372811 merge codereview
r2869:ccbdff90 beta
Show More
changelog_details.html
11 lines | 881 B | text/html | HtmlLexer
code-review initial
r2215 ## small box that displays changed/added/removed details fetched by AJAX
White-space cleanup
r1888 % if len(c.cs.affected_files) <= c.affected_files_cut_off:
Added h.tooltip to all places that tooltip_title is used....
r2427 <span class="removed tooltip" title="<b>${h.tooltip(_('removed'))}</b>${h.changed_tooltip(c.cs.removed)}">${len(c.cs.removed)}</span>
<span class="changed tooltip" title="<b>${h.tooltip(_('changed'))}</b>${h.changed_tooltip(c.cs.changed)}">${len(c.cs.changed)}</span>
<span class="added tooltip" title="<b>${h.tooltip(_('added'))}</b>${h.changed_tooltip(c.cs.added)}">${len(c.cs.added)}</span>
changelog uses lazy loading of affected files details, in some scenarios this can improve speed...
r1431 % else:
Added h.tooltip to all places that tooltip_title is used....
r2427 <span class="removed tooltip" title="${h.tooltip(_('affected %s files') % len(c.cs.affected_files))}">!</span>
<span class="changed tooltip" title="${h.tooltip(_('affected %s files') % len(c.cs.affected_files))}">!</span>
<span class="added tooltip" title="${h.tooltip(_('affected %s files') % len(c.cs.affected_files))}">!</span>
White-space cleanup
r1888 % endif