2015-11-14 10:34:01 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository file list">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
2016-08-25 06:35:03 +02:00
|
|
|
{{template "base/alert" .}}
|
2017-10-27 08:10:54 +02:00
|
|
|
<div class="ui repo-description">
|
|
|
|
<div id="repo-desc">
|
|
|
|
{{if .Repository.DescriptionHTML}}<span class="description has-emoji">{{.Repository.DescriptionHTML}}</span>{{else if .IsRepositoryAdmin}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}}
|
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</div>
|
|
|
|
{{if .RepoSearchEnabled}}
|
|
|
|
<div class="ui repo-search">
|
|
|
|
<form class="ui form" action="{{.RepoLink}}/search" method="get">
|
|
|
|
<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">
|
|
|
|
<i class="search icon"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-10-26 02:49:16 +02:00
|
|
|
{{template "repo/sub_menu" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui secondary menu">
|
2016-03-07 05:57:46 +01:00
|
|
|
{{if .PullRequestCtx.Allowed}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="fitted item">
|
2017-11-05 20:11:35 +01:00
|
|
|
<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{if .IsForkedRepo}}{{.Repository.Owner.Name}}:{{else}}{{if .SignedUser.HasForkedRepo .BaseRepo.ID}}{{.SignedUser.Name}}:{{end}}{{end}}{{.BranchName}}">
|
2017-08-14 00:49:38 +02:00
|
|
|
<button class="ui green tiny compact button"><i class="octicon octicon-git-compare"></i></button>
|
2015-12-07 23:30:52 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-09 07:11:41 +01:00
|
|
|
{{template "repo/branch_dropdown" .}}
|
2017-08-14 00:49:38 +02:00
|
|
|
{{ $n := len .TreeNames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
2017-10-30 03:04:25 +01:00
|
|
|
<div class="fitted item"><span class="ui breadcrumb repo-path"><a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchNameSubURL}}">{{EllipsisString .Repository.Name 30}}</a>{{range $i, $v := .TreeNames}}<span class="divider">/</span>{{if eq $i $l}}<span class="active section">{{EllipsisString $v 30}}</span>{{else}}{{ $p := index $.Paths $i}}<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 30}}</a></span>{{end}}{{end}}</span></div>
|
2016-08-11 14:48:08 +02:00
|
|
|
<div class="right fitted item">
|
2016-08-28 13:56:41 +02:00
|
|
|
{{if .Repository.CanEnableEditor}}
|
2016-08-30 14:07:50 +02:00
|
|
|
<div id="file-buttons" class="ui tiny blue buttons">
|
2016-08-28 13:56:41 +02:00
|
|
|
{{if .CanAddFile}}
|
|
|
|
<a href="{{.RepoLink}}/_new/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.editor.new_file"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2016-08-30 14:07:50 +02:00
|
|
|
{{if .CanUploadFile}}
|
|
|
|
<a href="{{.RepoLink}}/_upload/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
|
|
|
|
{{.i18n.Tr "repo.editor.upload_file"}}
|
|
|
|
</a>
|
2016-08-28 13:56:41 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2016-08-30 14:07:50 +02:00
|
|
|
|
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">
|
2016-09-18 10:54:33 +02:00
|
|
|
{{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 16:21:51 +02:00
|
|
|
{{if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
|
2015-12-20 03:12:13 +01:00
|
|
|
<button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2016-09-18 10:54:33 +02:00
|
|
|
{{if not $.DisableHTTP}}
|
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
|
2017-07-15 16:21:51 +02:00
|
|
|
{{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
|
2016-09-18 10:54:33 +02:00
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.SSH}}" readonly>
|
|
|
|
{{end}}
|
2017-07-15 16:21:51 +02:00
|
|
|
{{if or ((not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)))}}
|
|
|
|
<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">
|
|
|
|
<i class="octicon octicon-clippy"></i>
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2016-12-08 13:59:47 +01:00
|
|
|
<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">
|
2015-12-07 23:30:52 +01:00
|
|
|
<i class="download icon"></i>
|
|
|
|
<div class="menu">
|
2016-07-16 06:45:13 +02:00
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="octicon octicon-file-zip"></i> ZIP</a>
|
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="octicon octicon-file-zip"></i> TAR.GZ</a>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-11 14:48:08 +02:00
|
|
|
{{end}}
|
|
|
|
</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" .}}
|
|
|
|
{{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" .}}
|