##// END OF EJS Templates
added settings rest controllers for admin, updated routes with easier submodule handling
added settings rest controllers for admin, updated routes with easier submodule handling

File last commit:

r322:46b7d108 default
r346:51362853 default
Show More
changelog.html
107 lines | 3.1 KiB | text/html | HtmlLexer
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()">
switched filters into webhelpers for easy of usage....
r282 <h2 class="no-link no-border">${_('Changelog')} - ${_('showing ')}
${c.size if c.size <= c.total_cs else c.total_cs}
${_('out of')} ${c.total_cs} ${_('revisions')}
</h2>
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 <noscript>${_('The revision graph only works with JavaScript-enabled browsers.')}</noscript>
switched filters into webhelpers for easy of usage....
r282 % if c.pagination:
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">
Initial graph release.
r288 <div id="graph_nodes">
<canvas id="graph_canvas"></canvas>
</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 <div id="graph_content">
<div class="container_header">
${h.form(h.url.current(),method='get')}
graph fixes.
r289 <div>
<span>${_('Show')}: </span>
<span>${h.text('size',size=2,value=c.size)}</span>
<span>${_('revisions')}</span>
${h.submit('set',_('set'))}
</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 ${h.end_form()}
</div>
%for cnt,cs in enumerate(c.pagination):
Initial graph release.
r288 <div id="chg_${cnt+1}" class="container">
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 class="left">
<div class="date">${_('commit')} ${cs.revision}: ${cs.raw_id}@${cs.date}</div>
made graphg ticker, and fixes a paging bug caused grapgh disaligment
r322 <span class="logtags">
<span class="branchtag">${cs.branch}</span>
%for tag in cs.tags:
<span class="tagtag">${tag}</span>
%endfor
</span>
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 class="author">${cs.author}</div>
graph fixes.
r289 <div class="message">
fixed paragraphs wrapping for ultralong commit messages. Disabled tooltips for new repos without a last commit message. ie. when tooltip_title is empty (there is a strange bug on empty tooltip_title)
r284 ${h.link_to(h.wrap_paragraphs(cs.message),
h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
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>
</div>
html code cleanup
r217 <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">
graph fixes.
r289 ${_('merge')}<img alt="merge" src="/images/icons/arrow_join.png"/>
html code cleanup
r217 </div>
%endif
added merge and parents indicators to changelog
r212 %for p_cs in reversed(cs.parents):
spelling fixes
r271 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id,
html code cleanup
r217 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
</div>
added merge and parents indicators to changelog
r212 %endfor
html code cleanup
r217 </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 </div>
%endfor
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </div>
</div>
Initial graph release.
r288 <script type="text/javascript" src="/js/graph.js"></script>
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143
Initial graph release.
r288 <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);
};
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143
Initial graph release.
r288 set_canvas();
var jsdata = ${c.jsdata|n};
var r = new BranchRenderer();
r.render(jsdata);
});
</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>
switched filters into webhelpers for easy of usage....
r282 %else:
${_('There are no changes yet')}
%endif
Tempaltes changes for changelog and shortlog, changed menu generation in base
r143 </%def>