##// END OF EJS Templates
revision extraction function shouldn't be so eager, just extract commits that are...
revision extraction function shouldn't be so eager, just extract commits that are surrounded with spaces, or they are at beginning of the whole string - wrote tests for that - used parametrized for other tests

File last commit:

r3284:c36fee21 beta
r3385:d21c762f beta
Show More
repo_switcher_list.html
16 lines | 759 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<li class="qfilter_rs">
<input type="text" style="border:0;width:100%" value="${_('quick filter...')}" name="filter" id="q_filter_rs" />
</li>
%for repo in c.repos_list:
<li>
%if repo['dbrepo']['private'] and c.visual.show_private_icon:
<img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
%elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
<img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
%endif
${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
</li>
%endfor