##// END OF EJS Templates
pull request: use unionrepo instead of outgoing...
pull request: use unionrepo instead of outgoing This makes it possible to look the 'moving target' symbols up in the right repo. Using a revset with the right revisions also removes the need for pruning changesets that are outside the requested range. It will also not be confused by changesets that for some reason has been pulled to the repo but haven't been merged yet. They are going to be 'merged' by the 'pull' request and should thus be a part of what is reviewed.

File last commit:

r3284:c36fee21 beta
r3303:ae5ac36c beta
Show More
repo_switcher_list.html
16 lines | 759 B | text/html | HtmlLexer
/ rhodecode / templates / repo_switcher_list.html
added quick filter into repo switcher list
r1263 ## -*- coding: utf-8 -*-
<li class="qfilter_rs">
small html fix for quick repo switcher
r2605 <input type="text" style="border:0;width:100%" value="${_('quick filter...')}" name="filter" id="q_filter_rs" />
added quick filter into repo switcher list
r1263 </li>
White-space cleanup
r1888
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 %for repo in c.repos_list:
Mads Kiilerich
quick repo list: public/private icon control should only control icons, not repo visibility
r3284 <li>
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %if repo['dbrepo']['private'] and c.visual.show_private_icon:
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
White-space cleanup
r1888 %endif
Mads Kiilerich
quick repo list: public/private icon control should only control icons, not repo visibility
r3284 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
</li>
White-space cleanup
r1888 %endfor