2017-10-27 02:10:54 -04:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 23:00:14 -05:00
|
|
|
<div class="page-content repository file list">
|
2017-10-27 02:10:54 -04:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui repo-search">
|
2018-03-23 10:10:42 -04:00
|
|
|
<form class="ui form ignore-dirty" method="get">
|
2017-10-27 02:10:54 -04:00
|
|
|
<div class="ui fluid action input">
|
2021-01-27 05:00:35 -05:00
|
|
|
<div class="twelve wide field">
|
|
|
|
<input name="q" value="{{.Keyword}}" placeholder="{{.i18n.Tr "repo.search.search_repo"}}">
|
|
|
|
</div>
|
|
|
|
<div class="two wide field">
|
|
|
|
<select name="t">
|
|
|
|
<option value="">{{.i18n.Tr "repo.search.fuzzy"}}</option>
|
|
|
|
<option value="match" {{if eq .queryType "match"}}selected{{end}}>{{.i18n.Tr "repo.search.match"}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="three field">
|
|
|
|
<button class="ui button" type="submit">
|
|
|
|
<i class="icon df ac jc">{{svg "octicon-search" 16}}</i>
|
|
|
|
</button>
|
|
|
|
</div>
|
2017-10-27 02:10:54 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{if .Keyword}}
|
|
|
|
<h3>
|
2018-02-11 08:42:28 -05:00
|
|
|
{{.i18n.Tr "repo.search.results" (.Keyword|Escape) .RepoLink .RepoName | Str2html }}
|
2017-10-27 02:10:54 -04:00
|
|
|
</h3>
|
2020-12-20 13:00:03 -05:00
|
|
|
<div class="df ac fw">
|
2020-02-20 14:53:55 -05:00
|
|
|
{{range $term := .SearchResultLanguages}}
|
2021-01-27 05:00:35 -05:00
|
|
|
<a class="ui text-label df ac mr-1 my-1 {{if eq $.Language $term.Language}}primary {{end}}basic label" href="{{EscapePound $.SourcePath}}/search?q={{$.Keyword}}{{if ne $.Language $term.Language}}&l={{$term.Language}}{{end}}{{if ne $.queryType ""}}&t={{$.queryType}}{{end}}">
|
2020-12-20 13:00:03 -05:00
|
|
|
<i class="color-icon mr-3" style="background-color: {{$term.Color}}"></i>
|
2020-02-20 14:53:55 -05:00
|
|
|
{{$term.Language}}
|
|
|
|
<div class="detail">{{$term.Count}}</div>
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-10-27 02:10:54 -04:00
|
|
|
<div class="repository search">
|
|
|
|
{{range $result := .SearchResults}}
|
|
|
|
<div class="diff-file-box diff-box file-content non-diff-file-content repo-search-result">
|
|
|
|
<h4 class="ui top attached normal header">
|
|
|
|
<span class="file">{{.Filename}}</span>
|
2020-12-20 13:00:03 -05:00
|
|
|
<a class="ui basic tiny button" rel="nofollow" href="{{EscapePound $.SourcePath}}/src/commit/{{$result.CommitID}}/{{EscapePound .Filename}}">{{$.i18n.Tr "repo.diff.view_file"}}</a>
|
2017-10-27 02:10:54 -04:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<div class="file-body file-code code-view">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="lines-num">
|
|
|
|
{{range .LineNumbers}}
|
2020-02-20 14:53:55 -05:00
|
|
|
<a href="{{EscapePound $.SourcePath}}/src/commit/{{$result.CommitID}}/{{EscapePound $result.Filename}}#L{{.}}"><span>{{.}}</span></a>
|
2017-10-27 02:10:54 -04:00
|
|
|
{{end}}
|
|
|
|
</td>
|
2020-06-30 17:34:03 -04:00
|
|
|
<td class="lines-code"><pre><code class="chroma"><ol class="linenums">{{.FormattedLines | Safe}}</ol></code></pre></td>
|
2017-10-27 02:10:54 -04:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-04 06:18:37 -05:00
|
|
|
{{template "shared/searchbottom" dict "root" $ "result" .}}
|
2017-10-27 02:10:54 -04:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|