##// END OF EJS Templates
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.

File last commit:

r193:50a39f92 default
r193:50a39f92 default
Show More
changelog.html
79 lines | 2.2 KiB | text/html | HtmlLexer
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 <%!
from pylons_app.lib import filters
%>
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>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('changelog_home',repo_name=c.repo_name))}
/
${_('changelog')}
</%def>
<%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()">
<h2 class="no-link no-border">${_('Changelog')} - ${_('showing ')} ${c.size} ${_('revisions')}</h2>
<noscript>${_('The revision graph only works with JavaScript-enabled browsers.')}</noscript>
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 id="graph">
##<div id="graph_nodes" style="height:1000px">
## <canvas id="graph" width="160"></canvas>
##</div>
<div id="graph_content">
<div class="container_header">
${h.form(h.url.current(),method='get')}
${_('Show')}: ${h.text('size',size=5,value=c.size)} ${_('revisions')}
${h.submit('','set')}
${h.end_form()}
</div>
%for cnt,cs in enumerate(c.pagination):
<div class="container">
<div class="left">
<div class="date">${_('commit')} ${cs.revision}: ${cs.raw_id}@${cs.date}</div>
<div class="author">${cs.author}</div>
<div id="chg_${cnt}" class="message">
${h.link_to(cs.message,
h.url('changeset_home',repo_name=c.repo_name,revision=cs._short),
title=cs.message)}
</div>
<span class="logtags">
<span class="branchtag">${cs.branch}</span>
%for tag in cs.tags:
<span class="tagtag">${tag}</span>
%endfor
</span>
</div>
<div class="right">
<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>
</div>
%endfor
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </div>
</div>
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 ##<script type="text/javascript" src="/js/graph2.js"></script>
##<script type="text/javascript" src="http://bitbucket-assets.s3.amazonaws.com/js/lib/bundle.160310Mar.js"></script>
##
##<script>
##<!-- hide script content
##
##var jsdata = ${c.jsdata|n};
##var r = new BranchRenderer();
##r.render(jsdata);
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 ##// stop hiding script -->
##</script>
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143
<div>
<h2>${c.pagination.pager('$link_previous ~2~ $link_next')}</h2>
</div>
</%def>