##// END OF EJS Templates
user-groups: fix potential problem with group sync of external plugins....
user-groups: fix potential problem with group sync of external plugins. - when using external plugin we used to check for a parameter that set the sync mode. The problem is we only checked if the flag was there. So toggling sync on and off set the value and then left the key still set but with None. This confused the sync and thought the group should be synced !

File last commit:

r1927:e6df2b71 default
r2193:20e24a44 stable
Show More
branches_data.mako
33 lines | 1.1 KiB | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 ## DATA TABLE RE USABLE ELEMENTS FOR BRANCHES
## usage:
## <%namespace name="branch" file="/branches/branches_data.mako"/>
## branch.<func_name>(arg,arg2)
<%def name="compare(commit_id)">
<input class="compare-radio-button" type="radio" name="compare_source" value="${commit_id}"/>
<input class="compare-radio-button" type="radio" name="compare_target" value="${commit_id}"/>
</%def>
<%def name="name(name, files_url)">
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <span class="tag branchtag" title="${h.tooltip(_('Branch %s') % (name,))}">
templating: use .mako as extensions for template files.
r1282 <a href="${files_url}"><i class="icon-code-fork"></i>${name}
%if name in c.closed_branches:
[closed]
%endif
</a>
</span>
</%def>
<%def name="date(date)">
${h.age_component(date)}
</%def>
<%def name="author(author)">
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <span class="tooltip" title="${h.tooltip(author)}">${h.link_to_user(author)}</span>
templating: use .mako as extensions for template files.
r1282 </%def>
<%def name="commit(message, commit_id, commit_idx)">
<div>
dan
tooltip: use consistent h.tooltip usage to set tooltips.
r1843 <pre><a title="${h.tooltip(message)}" href="${h.url('files_home',repo_name=c.repo_name,revision=commit_id)}">r${commit_idx}:${h.short_id(commit_id)}</a></pre>
templating: use .mako as extensions for template files.
r1282 </div>
</%def>