Files @ f4fed0b32103
Branch filter:

Location: kallithea/rhodecode/templates/repo_switcher_list.html - annotation

Marcin Kuzminski
Rewrote git middleware with the same pattern as recent fix for #176
- additionally fixed dulwich server bug, that used old deprecated method. This fix caused huge improvement of speed for fetching git repos
- moved simplehg and simplegit middleware into begining of pylons callstack. This low level middleware
don't need to run any of the middlewares except each other.
## -*- coding: utf-8 -*-

<li class="qfilter_rs">
<input type="text" 
style="border:0"        
value="quick filter..." 
name="filter" size="15" id="q_filter_rs" />
</li>
    
%for repo in c.repos_list:
     
      %if repo['dbrepo']['private']:
         <li>
             <img src="${h.url("/images/icons/lock.png")}" alt="${_('Private repository')}" class="repo_switcher_type"/>
             ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
          </li>
      %else:
         <li>
             <img src="${h.url("/images/icons/lock_open.png")}" alt="${_('Public repository')}" class="repo_switcher_type" />
             ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
         </li>
      %endif  
%endfor