##// END OF EJS Templates
Update LICENSE.md to include license information about Codemirror 3.15...
Update LICENSE.md to include license information about Codemirror 3.15 Add information to the LICENSE.md file to include the information provided in the codemirror-3.15/LICENSE file. Also, note that other license and copyright information also appears in .../public/js/mode/ sub-directories.

File last commit:

r2031:82a88013 merge default
r4121:8c543e37 rhodecode-2.2.5-gpl
Show More
search_content.html
32 lines | 1.1 KiB | text/html | HtmlLexer
Added searching for file names within the repository in rhodecode
r556 ##content highligthing
%for cnt,sr in enumerate(c.formated_results):
%if h.HasRepoPermissionAny('repository.write','repository.read','repository.admin')(sr['repository'],'search results check'):
<div class="table">
<div id="body${cnt}" class="codeblock">
<div class="code-header">
bumbed whoosh to 2.3.X series...
r1995 <div class="search-path">${h.link_to(h.literal('%s &raquo; %s' % (sr['repository'],sr['f_path'])),
h.url('files_home',repo_name=sr['repository'],revision='tip',f_path=sr['f_path']))}
</div>
Added searching for file names within the repository in rhodecode
r556 </div>
bumbed whoosh to 2.3.X series...
r1995 <div class="search-code-body">
Added searching for file names within the repository in rhodecode
r556 <pre>${h.literal(sr['content_short_hl'])}</pre>
</div>
</div>
</div>
%else:
%if cnt == 0:
<div class="table">
<div id="body${cnt}" class="codeblock">
<div class="error">${_('Permission denied')}</div>
</div>
White-space cleanup
r1888 </div>
Added searching for file names within the repository in rhodecode
r556 %endif
White-space cleanup
r1888
%endif
Added searching for file names within the repository in rhodecode
r556 %endfor
%if c.cur_query and c.formated_results:
Version bump,freeze of dependent libs....
r639 <div class="pagination-wh pagination-left" style="padding-left:16px">
Added searching for file names within the repository in rhodecode
r556 ${c.formated_results.pager('$link_previous ~2~ $link_next')}
White-space cleanup
r1888 </div>
%endif