2015-11-14 10:34:01 +01:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file list {{if .IsBlame}}blame{{end}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
2020-06-25 20:58:12 +02:00
|
|
|
<div class="ui container {{if .IsBlame}}fluid padded{{end}}">
|
2016-08-25 06:35:03 +02:00
|
|
|
{{template "base/alert" .}}
|
2022-10-13 10:31:10 +02:00
|
|
|
{{if and (not .HideRepoInfo) (not .IsBlame)}}
|
2017-10-27 08:10:54 +02:00
|
|
|
<div class="ui repo-description">
|
|
|
|
<div id="repo-desc">
|
2022-08-25 23:55:52 +02:00
|
|
|
{{$description := .Repository.DescriptionHTML $.Context}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{if $description}}<span class="description">{{$description}}</span>{{else if .IsRepositoryAdmin}}<span class="no-description text-italic">{{.locale.Tr "repo.no_desc"}}</span>{{end}}
|
2017-10-27 08:10:54 +02:00
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</div>
|
|
|
|
{{if .RepoSearchEnabled}}
|
|
|
|
<div class="ui repo-search">
|
2018-03-23 15:10:42 +01:00
|
|
|
<form class="ui form ignore-dirty" action="{{.RepoLink}}/search" method="get">
|
2017-10-27 08:10:54 +02:00
|
|
|
<div class="field">
|
2022-08-25 23:55:52 +02:00
|
|
|
<div class="ui action input{{if .CodeIndexerUnavailable}} disabled left icon tooltip{{end}}"{{if .CodeIndexerUnavailable}} data-content="{{.locale.Tr "repo.search.code_search_unavailable"}}"{{end}}>
|
|
|
|
<input name="q" value="{{.Keyword}}"{{if .CodeIndexerUnavailable}} disabled{{end}} placeholder="{{.locale.Tr "repo.search.search_repo"}}">
|
|
|
|
{{if .CodeIndexerUnavailable}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<i class="icon gt-df gt-ac gt-jc">{{svg "octicon-alert"}}</i>
|
2022-01-27 09:30:51 +01:00
|
|
|
{{end}}
|
2022-08-25 23:55:52 +02:00
|
|
|
<button class="ui icon button"{{if .CodeIndexerUnavailable}} disabled{{end}} type="submit">
|
2020-10-30 19:54:58 +01:00
|
|
|
{{svg "octicon-search"}}
|
2017-10-27 08:10:54 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="gt-mt-3" id="repo-topics">
|
2020-11-29 07:22:04 +01:00
|
|
|
{{range .Topics}}<a class="ui repo-topic large label topic" href="{{AppSubUrl}}/explore/repos?q={{.Name}}&topic=1">{{.Name}}</a>{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}<a id="manage_topic" class="muted">{{.locale.Tr "repo.topic.manage_topics"}}</a>{{end}}
|
2018-04-11 04:51:44 +02:00
|
|
|
</div>
|
2022-10-13 10:31:10 +02:00
|
|
|
{{end}}
|
2019-01-24 11:22:27 +01:00
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}
|
2023-02-19 05:06:14 +01:00
|
|
|
<div class="ui repo-topic-edit grid form gt-hidden" id="topic_edit">
|
2018-04-11 04:51:44 +02:00
|
|
|
<div class="fourteen wide column">
|
2018-07-15 02:43:32 +02:00
|
|
|
<div class="field">
|
|
|
|
<div class="ui fluid multiple search selection dropdown">
|
|
|
|
<input type="hidden" name="topics" value="{{range $i, $v := .Topics}}{{.Name}}{{if lt (Add $i 1) (len $.Topics)}},{{end}}{{end}}">
|
|
|
|
{{range .Topics}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="ui small label topic transition visible" data-value="{{.Name}}" style="display: inline-block !important; cursor: default;">{{.Name}}{{svg "octicon-x" 16 "delete icon gt-ml-3 gt-mt-1"}}</div>
|
2018-07-15 02:43:32 +02:00
|
|
|
{{end}}
|
|
|
|
<div class="text"></div>
|
|
|
|
</div>
|
2018-04-11 04:51:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-09-29 08:28:47 +02:00
|
|
|
<div class="two wide column">
|
2022-11-15 03:10:50 +01:00
|
|
|
<a class="ui button primary" role="button" tabindex="0" id="save_topic"
|
2022-06-27 22:58:46 +02:00
|
|
|
data-link="{{.RepoLink}}/topics">{{.locale.Tr "repo.topic.done"}}</a>
|
2018-04-11 04:51:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-02-19 05:06:14 +01:00
|
|
|
<div class="gt-hidden" id="validate_prompt">
|
2022-06-27 22:58:46 +02:00
|
|
|
<span id="count_prompt">{{.locale.Tr "repo.topic.count_prompt"}}</span>
|
|
|
|
<span id="format_prompt">{{.locale.Tr "repo.topic.format_prompt"}}</span>
|
2018-07-15 02:43:32 +02:00
|
|
|
</div>
|
2019-01-23 19:58:38 +01:00
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "repo.archive.title"}}
|
2019-01-23 19:58:38 +01:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-10-26 02:49:16 +02:00
|
|
|
{{template "repo/sub_menu" .}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="repo-button-row gt-df gt-ac gt-sb gt-fw">
|
|
|
|
<div class="gt-df gt-ac">
|
2022-08-08 01:15:11 +02:00
|
|
|
{{template "repo/branch_dropdown" dict "root" .}}
|
2022-08-25 23:55:52 +02:00
|
|
|
{{$n := len .TreeNames}}
|
|
|
|
{{$l := Subtract $n 1}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<!-- If home page, show new pr. If not, show breadcrumb -->
|
2022-08-08 01:15:11 +02:00
|
|
|
{{if eq $n 0}}
|
|
|
|
{{if and .CanCompareOrPull .IsViewBranch (not .Repository.IsArchived)}}
|
2022-10-21 10:39:26 +02:00
|
|
|
<a href="{{CompareLink .BaseRepo .Repository .BranchName}}">
|
2022-08-08 01:15:11 +02:00
|
|
|
<button id="new-pull-request" class="ui compact basic button tooltip" data-content="{{if .PullRequestCtx.Allowed}}{{.locale.Tr "repo.pulls.compare_changes"}}{{else}}{{.locale.Tr "action.compare_branch"}}{{end}}"><span class="text">{{svg "octicon-git-pull-request"}}</span></button>
|
2018-09-03 05:24:19 +02:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2022-10-24 03:23:04 +02:00
|
|
|
<a href="{{.Repository.Link}}/find/{{.BranchNameSubURL}}" class="ui compact basic button">{{.locale.Tr "repo.find_file.go_to_file"}}</a>
|
2022-09-06 09:01:58 +02:00
|
|
|
{{end}}
|
|
|
|
{{if or .CanAddFile .CanUploadFile}}
|
2023-02-21 14:36:53 +01:00
|
|
|
<button class="ui basic compact dropdown jump icon button gt-mr-2"{{if not .Repository.CanEnableEditor}} disabled{{end}}>
|
2022-09-06 09:01:58 +02:00
|
|
|
<span class="text">{{.locale.Tr "repo.editor.add_file"}}</span>
|
|
|
|
<div class="menu">
|
2022-10-19 10:08:33 +02:00
|
|
|
{{if .CanAddFile}}
|
|
|
|
<a class="item" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
|
|
|
{{.locale.Tr "repo.editor.new_file"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if .CanUploadFile}}
|
|
|
|
<a class="item" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
|
|
|
{{.locale.Tr "repo.editor.upload_file"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if .CanAddFile}}
|
|
|
|
<a class="item" href="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}">
|
|
|
|
{{.locale.Tr "repo.editor.patch"}}
|
|
|
|
</a>
|
2022-09-06 09:01:58 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
{{if ne $n 0}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<span class="ui breadcrumb repo-path gt-ml-2"><a class="section" href="{{.RepoLink}}/src/{{.BranchNameSubURL}}" title="{{.Repository.Name}}">{{EllipsisString .Repository.Name 30}}</a>{{range $i, $v := .TreeNames}}<span class="divider">/</span>{{if eq $i $l}}<span class="active section" title="{{$v}}">{{EllipsisString $v 30}}</span>{{else}}{{$p := index $.Paths $i}}<span class="section"><a href="{{$.BranchLink}}/{{PathEscapeSegments $p}}" title="{{$v}}">{{EllipsisString $v 30}}</a></span>{{end}}{{end}}</span>
|
2022-08-08 01:15:11 +02:00
|
|
|
{{end}}
|
2017-12-31 01:47:52 +01:00
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="gt-df gt-ac">
|
2019-11-11 16:15:29 +01:00
|
|
|
{{if eq $n 0}}
|
|
|
|
{{if .Repository.IsTemplate}}
|
2022-05-20 00:08:08 +02:00
|
|
|
<div class="ui tiny primary buttons">
|
2019-11-11 16:15:29 +01:00
|
|
|
<a href="{{AppSubUrl}}/repo/create?template_id={{.Repository.ID}}" class="ui button">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "repo.use_template"}}
|
2019-11-11 16:15:29 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2017-08-14 00:49:38 +02:00
|
|
|
<!-- Only show clone panel in repository home page -->
|
2016-08-11 14:48:08 +02:00
|
|
|
{{if eq $n 0}}
|
2017-08-14 00:49:38 +02:00
|
|
|
<div class="ui action tiny input" id="clone-panel">
|
2022-08-12 07:16:05 +02:00
|
|
|
{{template "repo/clone_buttons" .}}
|
2022-12-08 14:14:09 +01:00
|
|
|
<button id="more-btn" class="ui basic small compact jump dropdown icon button tooltip" data-content="{{.locale.Tr "repo.more_operations"}}" data-position="top right">
|
2022-11-11 18:02:50 +01:00
|
|
|
{{svg "octicon-kebab-horizontal"}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="menu">
|
2022-08-12 07:16:05 +02:00
|
|
|
{{if not $.DisableDownloadSourceArchives}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.zip" rel="nofollow">{{svg "octicon-file-zip" 16 "gt-mr-3"}}{{.locale.Tr "repo.download_zip"}}</a>
|
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.tar.gz" rel="nofollow">{{svg "octicon-file-zip" 16 "gt-mr-3"}}{{.locale.Tr "repo.download_tar"}}</a>
|
|
|
|
<a class="item archive-link" href="{{$.RepoLink}}/archive/{{PathEscapeSegments $.RefName}}.bundle" rel="nofollow">{{svg "octicon-package" 16 "gt-mr-3"}}{{.locale.Tr "repo.download_bundle"}}</a>
|
2022-11-11 18:02:50 +01:00
|
|
|
{{if .CitiationExist}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<a class="item" id="cite-repo-button">{{svg "octicon-cross-reference" 16 "gt-mr-3"}}{{.locale.Tr "repo.cite_this_repo"}}</a>
|
2022-11-11 18:02:50 +01:00
|
|
|
{{end}}
|
2022-08-12 07:16:05 +02:00
|
|
|
{{end}}
|
2023-02-13 18:59:59 +01:00
|
|
|
<a class="item js-clone-url-vsc" href="vscode://vscode.git/clone?url={{.CloneButtonOriginLink.HTTPS}}">{{svg "gitea-vscode" 16 "gt-mr-3"}}{{.locale.Tr "repo.clone_in_vsc"}}</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2021-04-13 02:10:57 +02:00
|
|
|
</button>
|
2022-09-21 13:51:10 +02:00
|
|
|
{{template "repo/clone_script" .}}{{/* the script will update `.js-clone-url` and related elements */}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2022-11-11 18:02:50 +01:00
|
|
|
{{template "repo/cite/cite_modal" .}}
|
2016-08-11 14:48:08 +02:00
|
|
|
{{end}}
|
2022-08-25 23:55:52 +02:00
|
|
|
{{if and (ne $n 0) (not .IsViewFile) (not .IsBlame)}}
|
2022-08-09 12:32:41 +02:00
|
|
|
<a class="ui button" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/{{.TreePath | PathEscapeSegments}}">
|
2023-02-13 18:59:59 +01:00
|
|
|
{{svg "octicon-history" 16 "gt-mr-3"}}{{.locale.Tr "repo.file_history"}}
|
2022-08-09 12:32:41 +02:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2016-08-11 14:48:08 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2016-08-30 11:08:38 +02:00
|
|
|
{{if .IsViewFile}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/view_file" .}}
|
2019-04-20 04:47:00 +02:00
|
|
|
{{else if .IsBlame}}
|
|
|
|
{{template "repo/blame" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else}}
|
|
|
|
{{template "repo/view_list" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|