2015-11-14 15:04:01 +05:30
|
|
|
{{template "base/head" .}}
|
2020-07-09 02:32:38 +05:30
|
|
|
<div class="repository file list {{if .IsBlame}}blame{{end}}">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "repo/header" .}}
|
2020-06-26 00:28:12 +05:30
|
|
|
<div class="ui container {{if .IsBlame}}fluid padded{{end}}">
|
2016-08-25 10:05:03 +05:30
|
|
|
{{template "base/alert" .}}
|
2017-10-27 11:40:54 +05:30
|
|
|
<div class="ui repo-description">
|
|
|
|
<div id="repo-desc">
|
2020-05-01 23:28:45 +05:30
|
|
|
{{if .Repository.DescriptionHTML}}<span class="description">{{.Repository.DescriptionHTML}}</span>{{else if .IsRepositoryAdmin}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}}
|
2017-10-27 11:40:54 +05:30
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</div>
|
|
|
|
{{if .RepoSearchEnabled}}
|
|
|
|
<div class="ui repo-search">
|
2018-03-23 19:40:42 +05:30
|
|
|
<form class="ui form ignore-dirty" action="{{.RepoLink}}/search" method="get">
|
2017-10-27 11:40:54 +05:30
|
|
|
<div class="field">
|
|
|
|
<div class="ui action input">
|
|
|
|
<input name="q" value="{{.Keyword}}" placeholder="{{.i18n.Tr "repo.search.search_repo"}}">
|
|
|
|
<button class="ui icon button" type="submit">
|
2020-10-31 00:24:58 +05:30
|
|
|
{{svg "octicon-search"}}
|
2017-10-27 11:40:54 +05:30
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2019-02-06 03:29:26 +05:30
|
|
|
<div class="ui" id="repo-topics">
|
2019-04-16 00:29:30 +05:30
|
|
|
{{range .Topics}}<a class="ui repo-topic small label topic" href="{{AppSubUrl}}/explore/repos?q={{.Name}}&topic=1">{{.Name}}</a>{{end}}
|
2019-02-06 03:29:26 +05:30
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}<a id="manage_topic">{{.i18n.Tr "repo.topic.manage_topics"}}</a>{{end}}
|
2018-04-11 08:21:44 +05:30
|
|
|
</div>
|
2019-01-24 15:52:27 +05:30
|
|
|
{{if and .Permission.IsAdmin (not .Repository.IsArchived)}}
|
2018-09-29 11:58:47 +05:30
|
|
|
<div class="ui repo-topic-edit grid form segment error" id="topic_edit" style="display:none">
|
2018-04-11 08:21:44 +05:30
|
|
|
<div class="fourteen wide column">
|
2018-07-15 06:13:32 +05:30
|
|
|
<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}}
|
2020-10-31 00:24:58 +05:30
|
|
|
<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 ml-3 mt-1"}}</div>
|
2018-07-15 06:13:32 +05:30
|
|
|
{{end}}
|
|
|
|
<div class="text"></div>
|
|
|
|
</div>
|
2018-04-11 08:21:44 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2018-09-29 11:58:47 +05:30
|
|
|
<div class="two wide column">
|
2019-02-06 02:10:56 +05:30
|
|
|
<a class="ui button primary" href="javascript:;" id="save_topic"
|
2018-04-11 08:21:44 +05:30
|
|
|
data-link="{{.RepoLink}}/topics">{{.i18n.Tr "repo.topic.done"}}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-07-15 06:13:32 +05:30
|
|
|
<div class="hide" id="validate_prompt">
|
|
|
|
<span id="count_prompt">{{.i18n.Tr "repo.topic.count_prompt"}}</span>
|
|
|
|
<span id="format_prompt">{{.i18n.Tr "repo.topic.format_prompt"}}</span>
|
|
|
|
</div>
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{.i18n.Tr "repo.archive.title"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-10-26 06:19:16 +05:30
|
|
|
{{template "repo/sub_menu" .}}
|
2017-12-31 06:17:52 +05:30
|
|
|
<div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins">
|
2015-12-09 11:41:41 +05:30
|
|
|
{{template "repo/branch_dropdown" .}}
|
2017-08-14 04:19:38 +05:30
|
|
|
{{ $n := len .TreeNames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
2019-02-20 04:39:47 +05:30
|
|
|
<!-- If home page, show new PR. If not, show breadcrumb -->
|
|
|
|
{{if eq $n 0}}
|
2020-05-05 04:14:30 +05:30
|
|
|
{{if and .CanCompareOrPull .IsViewBranch (not .Repository.IsArchived)}}
|
2019-02-20 04:39:47 +05:30
|
|
|
<div class="fitted item">
|
|
|
|
<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch | EscapePound}}...{{if ne .Repository.Owner.Name .BaseRepo.Owner.Name}}{{.Repository.Owner.Name}}:{{end}}{{.BranchName | EscapePound}}">
|
2020-05-05 04:14:30 +05:30
|
|
|
<button id="new-pull-request" class="ui compact basic button">{{if .PullRequestCtx.Allowed}}{{.i18n.Tr "repo.pulls.compare_changes"}}{{else}}{{.i18n.Tr "action.compare_branch"}}{{end}}</button>
|
2019-02-20 04:39:47 +05:30
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
2019-04-17 20:19:56 +05:30
|
|
|
<div class="fitted item"><span class="ui breadcrumb repo-path"><a class="section" href="{{.RepoLink}}/src/{{EscapePound .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="{{EscapePound $.BranchLink}}/{{EscapePound $p}}" title="{{$v}}">{{EllipsisString $v 30}}</a></span>{{end}}{{end}}</span></div>
|
2019-02-20 04:39:47 +05:30
|
|
|
{{end}}
|
2017-12-31 06:17:52 +05:30
|
|
|
<div class="right fitted item" id="file-buttons">
|
2018-09-03 08:54:19 +05:30
|
|
|
<div class="ui tiny blue buttons">
|
|
|
|
{{if .Repository.CanEnableEditor}}
|
2016-08-28 17:26:41 +05:30
|
|
|
{{if .CanAddFile}}
|
|
|
|
<a href="{{.RepoLink}}/_new/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.editor.new_file"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2016-08-30 17:37:50 +05:30
|
|
|
{{if .CanUploadFile}}
|
|
|
|
<a href="{{.RepoLink}}/_upload/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.editor.upload_file"}}
|
|
|
|
</a>
|
2016-08-28 17:26:41 +05:30
|
|
|
{{end}}
|
2018-09-03 08:54:19 +05:30
|
|
|
{{end}}
|
2019-04-20 08:17:00 +05:30
|
|
|
{{if and (ne $n 0) (not .IsViewFile) (not .IsBlame) }}
|
2018-09-03 08:54:19 +05:30
|
|
|
<a href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.file_history"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2016-08-30 17:37:50 +05:30
|
|
|
|
2017-12-31 06:17:52 +05:30
|
|
|
</div>
|
2019-11-11 20:45:29 +05:30
|
|
|
<div class="fitted item">
|
|
|
|
{{if eq $n 0}}
|
|
|
|
{{if .Repository.IsTemplate}}
|
|
|
|
<div class="ui tiny blue buttons">
|
|
|
|
<a href="{{AppSubUrl}}/repo/create?template_id={{.Repository.ID}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.use_template"}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-12-31 06:17:52 +05:30
|
|
|
<div class="fitted item">
|
|
|
|
|
2017-08-14 04:19:38 +05:30
|
|
|
<!-- Only show clone panel in repository home page -->
|
2016-08-11 18:18:08 +05:30
|
|
|
{{if eq $n 0}}
|
2017-08-14 04:19:38 +05:30
|
|
|
<div class="ui action tiny input" id="clone-panel">
|
2016-09-18 14:24:33 +05:30
|
|
|
{{if not $.DisableHTTP}}
|
|
|
|
<button class="ui basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">
|
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2017-07-15 19:51:51 +05:30
|
|
|
{{if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
|
2015-12-20 07:42:13 +05:30
|
|
|
<button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">
|
2015-12-08 04:00:52 +05:30
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2016-09-18 14:24:33 +05:30
|
|
|
{{if not $.DisableHTTP}}
|
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
|
2017-07-15 19:51:51 +05:30
|
|
|
{{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
|
2016-09-18 14:24:33 +05:30
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.SSH}}" readonly>
|
|
|
|
{{end}}
|
2018-04-09 20:19:59 +05:30
|
|
|
{{if or (not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH))}}
|
2017-07-15 19:51:51 +05:30
|
|
|
<button class="ui basic icon button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target="#repo-clone-url">
|
2020-09-12 01:49:00 +05:30
|
|
|
{{svg "octicon-clippy"}}
|
2017-07-15 19:51:51 +05:30
|
|
|
</button>
|
|
|
|
{{end}}
|
2016-12-08 18:29:47 +05:30
|
|
|
<div class="ui basic jump dropdown icon button poping up" data-content="{{.i18n.Tr "repo.download_archive"}}" data-variation="tiny inverted" data-position="top right">
|
2020-10-31 00:24:58 +05:30
|
|
|
{{svg "octicon-download"}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="menu">
|
2020-09-12 01:49:00 +05:30
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip">{{svg "octicon-file-zip"}} ZIP</a>
|
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz">{{svg "octicon-file-zip"}} TAR.GZ</a>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-11 18:18:08 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2016-08-30 14:38:38 +05:30
|
|
|
{{if .IsViewFile}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "repo/view_file" .}}
|
2019-04-20 08:17:00 +05:30
|
|
|
{{else if .IsBlame}}
|
|
|
|
{{template "repo/blame" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else}}
|
|
|
|
{{template "repo/view_list" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-07-26 09:54:27 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|