##// END OF EJS Templates
admin fix
admin fix

File last commit:

r105:3ac4350b default
r108:68e57490 default
Show More
shortlog_data.html
34 lines | 1.3 KiB | text/html | HtmlLexer
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 ## -*- coding: utf-8 -*-
<%!
from pylons_app.lib import filters
%>
<table>
%for cnt,cs in enumerate(c.repo_changesets):
<tr class="parity${cnt%2}">
<td>${cs._ctx.date()|n,filters.age}</td>
<td title="${cs.author}">${cs.author|n,filters.person}</td>
Html updates and fixes
r105 <td>${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))}</td>
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 <td class="nowrap">
Html updates and fixes
r105 ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))}
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 |
Html updates and fixes
r105 ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=cs._short))}
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 </td>
Html updates and fixes
r105 </tr>
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 %endfor
Html updates and fixes
r105
</table>
<div>
<script type="text/javascript">
var data_div = 'shortlog_data';
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>
<h2>
${c.repo_changesets.pager('$link_previous ~2~ $link_next',
Marcin Kuzminski
implemented Shortlog as seperate controller,...
r83 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');});
Html updates and fixes
r105 YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
</h2>
</div>