##// END OF EJS Templates
made rhodecode work with celery 2.2, made some tasks optimizations(forget results)...
made rhodecode work with celery 2.2, made some tasks optimizations(forget results) added celeryconfig.py with just the definitions of hosts, it seams just this is needed to get celery working nice, all other config options are taken from .ini files. This is a temp workaround until i get the proper soltuion to this problem.

File last commit:

r997:b79e720b beta
r1002:3a7f5b1a beta
Show More
admin_log.html
62 lines | 1.7 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
%if c.users_log:
<table>
<tr>
<th class="left">${_('Username')}</th>
#48 rewrote action logger, translated action logger messages, added some extra messages. Linked and showed pushed revisions in logs
r660 <th class="left">${_('Action')}</th>
renamed project to rhodecode
r547 <th class="left">${_('Repository')}</th>
<th class="left">${_('Date')}</th>
<th class="left">${_('From IP')}</th>
</tr>
%for cnt,l in enumerate(c.users_log):
<tr class="parity${cnt%2}">
<td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td>
#48 rewrote action logger, translated action logger messages, added some extra messages. Linked and showed pushed revisions in logs
r660 <td>${h.action_parser(l)}</td>
renamed project to rhodecode
r547 <td>
%if l.repository:
${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))}
%else:
${l.repository_name}
%endif
</td>
#48 rewrote action logger, translated action logger messages, added some extra messages. Linked and showed pushed revisions in logs
r660
renamed project to rhodecode
r547 <td>${l.action_date}</td>
<td>${l.user_ip}</td>
</tr>
%endfor
</table>
<script type="text/javascript">
var data_div = 'user_log';
added icons to journal, extend show more to actually show more pushed revisions,
r808 YUE.onDOMReady(function(){
YUE.on(YUD.getElementsByClassName('pager_link'),"click",function(){
YUD.setStyle(data_div,'opacity','0.3');});
YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){
var el = e.target;
YUD.setStyle(YUD.get(el.id.substring(1)),'display','');
YUD.setStyle(el.parentNode,'display','none');
});
});
renamed project to rhodecode
r547 </script>
<div class="pagination-wh pagination-left">
${c.users_log.pager('$link_previous ~2~ $link_next',
onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
added icons to journal, extend show more to actually show more pushed revisions,
r808 success:function(o){
fixed admin log tooltips
r997 YUD.get(data_div).innerHTML=o.responseText;
show_more_event();
tooltip_activate();
YUE.on(YUD.getElementsByClassName('pager_link'),"click",function(){
YUD.setStyle(data_div,'opacity','0.3');
});
YUD.setStyle(data_div,'opacity','1');}
added icons to journal, extend show more to actually show more pushed revisions,
r808 },null); return false;""")}
renamed project to rhodecode
r547 </div>
%else:
${_('No actions yet')}
%endif
fixed admin log tooltips
r997
<script type="text/javascript">
show_more_event();
</script>