##// END OF EJS Templates
revision extraction function shouldn't be so eager, just extract commits that are...
revision extraction function shouldn't be so eager, just extract commits that are surrounded with spaces, or they are at beginning of the whole string - wrote tests for that - used parametrized for other tests

File last commit:

r3197:b4f40152 beta
r3385:d21c762f beta
Show More
shortlog.html
39 lines | 877 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Shortlog') % c.repo_name} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
White-space cleanup
r1888 &raquo;
renamed project to rhodecode
r547 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
Implemented file history page for showing detailed changelog for a given file...
r3039 %if c.file_history:
${h.link_to(_('shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
&raquo;
${c.file_history}
%else:
${_('shortlog')}
%endif
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
${self.menu('shortlog')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
Mads Kiilerich
html: don't use tabs
r3197 <div id="shortlog_data">
${c.shortlog_data}
</div>
renamed project to rhodecode
r547 </div>
White-space cleanup
r1888 </div>
</%def>