##// END OF EJS Templates
search: in path search add lines/size information similar like in content matches since we have those information in ES.
search: in path search add lines/size information similar like in content matches since we have those information in ES.

File last commit:

r3322:186655dc default
r3322:186655dc default
Show More
search_path.mako
49 lines | 1.9 KiB | application/x-mako | MakoHtmlLexer
dan
search: add support for elastic search 6...
r3319 % if c.formatted_results:
templating: use .mako as extensions for template files.
r1282 <table class="rctable search-results">
<tr>
<th>${_('Repository')}</th>
<th>${_('File')}</th>
dan
search: in path search add lines/size information similar like in content matches since we have those information in ES.
r3322 <th>${_('Size')}</th>
<th>${_('Lines')}</th>
templating: use .mako as extensions for template files.
r1282 </tr>
%for entry in c.formatted_results:
## search results are additionally filtered, and this check is just a safe gate
% if h.HasRepoPermissionAny('repository.write','repository.read','repository.admin')(entry['repository'], 'search results path check'):
<tr class="body">
<td class="td-componentname">
%if h.get_repo_type_by_name(entry.get('repository')) == 'hg':
<i class="icon-hg"></i>
%elif h.get_repo_type_by_name(entry.get('repository')) == 'git':
<i class="icon-git"></i>
%elif h.get_repo_type_by_name(entry.get('repository')) == 'svn':
<i class="icon-svn"></i>
%endif
repo-summary: re-implemented summary view as pyramid....
r1785 ${h.link_to(entry['repository'], h.route_path('repo_summary',repo_name=entry['repository']))}
templating: use .mako as extensions for template files.
r1282 </td>
<td class="td-componentname">
${h.link_to(h.literal(entry['f_path']),
files: ported repository files controllers to pyramid views.
r1927 h.route_path('repo_files',repo_name=entry['repository'],commit_id='tip',f_path=entry['f_path']))}
templating: use .mako as extensions for template files.
r1282 </td>
dan
search: in path search add lines/size information similar like in content matches since we have those information in ES.
r3322 <td>
%if entry.get('size'):
${h.format_byte_size_binary(entry['size'])}
%endif
</td>
<td>
%if entry.get('lines'):
${entry.get('lines', 0.)} ${_ungettext('line', 'lines', entry.get('lines', 0.))}
%endif
</td>
templating: use .mako as extensions for template files.
r1282 </tr>
% endif
%endfor
</table>
dan
search: add support for elastic search 6...
r3319 %if c.cur_query:
templating: use .mako as extensions for template files.
r1282 <div class="pagination-wh pagination-left">
${c.formatted_results.pager('$link_previous ~2~ $link_next')}
</div>
dan
search: add support for elastic search 6...
r3319 %endif
% endif