##// END OF EJS Templates
added hidden fulldiff GET param for disabling big diff cut off limit....
added hidden fulldiff GET param for disabling big diff cut off limit. fixed context toggle options on single file diff

File last commit:

r1888:f91d3f9b beta
r2161:e8c01681 beta
Show More
forks_data.html
35 lines | 1.3 KiB | text/html | HtmlLexer
Added simple forks page, resolves issue #179
r1301 ## -*- coding: utf-8 -*-
gui-improvments
r1304 % if c.forks_pager:
% for f in c.forks_pager:
<div>
<div class="fork_user">
<div class="gravatar">
<img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/>
</div>
<span style="font-size: 20px">
White-space cleanup
r1888 <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname}) /
gui-improvments
r1304 ${h.link_to(f.repo_name,h.url('summary_home',repo_name=f.repo_name))}
</span>
<div style="padding:5px 3px 3px 42px;">${f.description}</div>
</div>
<div style="clear:both;padding-top: 10px"></div>
White-space cleanup
r1888 <div class="follower_date">${_('forked')} -
gui-improvments
r1304 <span class="tooltip" title="${f.created_on}"> ${h.age(f.created_on)}</span></div>
White-space cleanup
r1888 <div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div>
gui-improvments
r1304 </div>
% endfor
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421 <div class="pagination-wh pagination-left">
<script type="text/javascript">
YUE.onDOMReady(function(){
YUE.delegate("forks","click",function(e, matchedEl, container){
ypjax(e.target.href,"forks",function(){show_more_event();tooltip_activate();});
YUE.preventDefault(e);
},'.pager_link');
});
</script>
${c.forks_pager.pager('$link_previous ~2~ $link_next')}
White-space cleanup
r1888 </div>
gui-improvments
r1304 % else:
White-space cleanup
r1888 ${_('There are no forks yet')}
% endif