##// END OF EJS Templates
made action logger more global, to be used in other places to log other actions....
made action logger more global, to be used in other places to log other actions. cleaned unused import in simpleHG, fixed little logging in hooks

File last commit:

r536:39203995 default
r536:39203995 default
Show More
admin_log.html
48 lines | 1.6 KiB | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ## -*- coding: utf-8 -*-
%if c.users_log:
version bump to 0.8...
r362 <table>
<tr>
<th class="left">${_('Username')}</th>
<th class="left">${_('Repository')}</th>
<th class="left">${_('Action')}</th>
<th class="left">${_('Date')}</th>
<th class="left">${_('From IP')}</th>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </tr>
%for cnt,l in enumerate(c.users_log):
<tr class="parity${cnt%2}">
added journal icon and made active links in journal, fixed edit user bug when given wrong id
r476 <td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td>
made action logger more global, to be used in other places to log other actions....
r536 <td>${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))}</td>
Added user action mapper to map push to changeset....
r503 <td>
% if l.action == 'push' and l.revision:
${h.link_to('%s - %s' % (l.action,l.revision),
made action logger more global, to be used in other places to log other actions....
r536 h.url('changeset_home',repo_name=l.repository.repo_name,revision=l.revision))}
Added user action mapper to map push to changeset....
r503 %else:
${l.action}
%endif
</td>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <td>${l.action_date}</td>
added ip loggin into mercurial middleware
r331 <td>${l.user_ip}</td>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </tr>
%endfor
version bump to 0.8...
r362 </table>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127
version bump to 0.8...
r362 <script type="text/javascript">
var data_div = 'user_log';
YAHOO.util.Event.onDOMReady(function(){
YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
YAHOO.util.Dom.setStyle('shortlog_data','opacity','0.3');});});
</script>
<div class="pagination-wh pagination-left">
${c.users_log.pager('$link_previous ~2~ $link_next',
onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </div>
%else:
${_('No actions yet')}
%endif