##// END OF EJS Templates
Reimplemented searching for speed on large files and added paging for search results...
Reimplemented searching for speed on large files and added paging for search results Updated setup requirements

File last commit:

r428:dee0e7eb default
r478:7010af6e celery
Show More
changelog.html
116 lines | 3.7 KiB | text/html | HtmlLexer
fixed bug when author had " in name, thus breaking the javascript data format...
r421 ## -*- coding: utf-8 -*-
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 <%inherit file="/base/base.html"/>
<%def name="title()">
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 ${_('Changelog - %s') % c.repo_name}
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </%def>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 ${h.link_to(u'Home',h.url('/'))}
version bump to 0.8...
r362 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
${_('Changelog')} - ${_('showing ')} ${c.size if c.size <= c.total_cs else c.total_cs} ${_('out of')} ${c.total_cs} ${_('revisions')}
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </%def>
version bump to 0.8...
r362
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 <%def name="page_nav()">
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 ${self.menu('changelog')}
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </%def>
<%def name="main()">
version bump to 0.8...
r362 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
% if c.pagination:
<div id="graph">
<div id="graph_nodes">
<canvas id="graph_canvas"></canvas>
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 </div>
version bump to 0.8...
r362 <div id="graph_content">
<div class="container_header">
${h.form(h.url.current(),method='get')}
<div class="info_box">
<span>${_('Show')}:</span>
${h.text('size',size=1,value=c.size)}
<span>${_('revisions')}</span>
${h.submit('set',_('set'))}
</div>
${h.end_form()}
</div>
%for cnt,cs in enumerate(c.pagination):
<div id="chg_${cnt+1}" class="container">
<div class="left">
<div class="date">${_('commit')} ${cs.revision}: ${cs.raw_id}@${cs.date}</div>
<span class="logtags">
<span class="branchtag">${cs.branch}</span>
%for tag in cs.tags:
<span class="tagtag">${tag}</span>
%endfor
</span>
implemented gravatars to changesets, updated styling for changesets...
r401 <div class="author">
<div class="gravatar">
<img alt="gravatar" src="${h.gravatar_url(h.email(cs.author),20)}"/>
</div>
<span>${h.person(cs.author)}</span><br/>
<span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
</div>
version bump to 0.8...
r362 <div class="message">
*** failed to import extension hggit: No module named hggit
removed decodes, thus it should be implemented on vcs side...
r428 ${h.link_to(h.wrap_paragraphs(cs.message),
version bump to 0.8...
r362 h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
html code cleanup
r217 </div>
version bump to 0.8...
r362 </div>
<div class="right">
<div class="changes">
<span class="removed" title="${_('removed')}">${len(cs.removed)}</span>
<span class="changed" title="${_('changed')}">${len(cs.changed)}</span>
<span class="added" title="${_('added')}">${len(cs.added)}</span>
</div>
%if len(cs.parents)>1:
<div class="merge">
${_('merge')}<img alt="merge" src="/images/icons/arrow_join.png"/>
</div>
%endif
%for p_cs in reversed(cs.parents):
<div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id,
*** failed to import extension hggit: No module named hggit
removed decodes, thus it should be implemented on vcs side...
r428 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
version bump to 0.8...
r362 </div>
%endfor
</div>
</div>
%endfor
<div class="pagination-wh pagination-left">
${c.pagination.pager('$link_previous ~2~ $link_next')}
</div>
</div>
</div>
<script type="text/javascript" src="/js/graph.js"></script>
<script type="text/javascript">
YAHOO.util.Event.onDOMReady(function(){
function set_canvas() {
var c = document.getElementById('graph_nodes');
var t = document.getElementById('graph_content');
canvas = document.getElementById('graph_canvas');
var div_h = t.clientHeight;
c.style.height=div_h+'px';
canvas.setAttribute('height',div_h);
canvas.setAttribute('width',160);
};
set_canvas();
var jsdata = ${c.jsdata|n};
var r = new BranchRenderer();
r.render(jsdata);
});
</script>
%else:
${_('There are no changes yet')}
%endif
</div>
</div>
</%def>