##// END OF EJS Templates
logging: include more info in action logging...
logging: include more info in action logging These messages are very frequent and thus shows what is going on on the server - and it is nice to have some extra information to give some context for other messages that might be logged.

File last commit:

r2674:a221706d beta
r3135:e7ba6928 beta
Show More
repo_switcher_list.html
20 lines | 944 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:
White-space cleanup
r1888
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %if repo['dbrepo']['private'] and c.visual.show_private_icon:
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 <li>
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
added quick filter into repo switcher list
r1263 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 </li>
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 <li>
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
added quick filter into repo switcher list
r1263 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 </li>
White-space cleanup
r1888 %endif
%endfor