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" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<p id="repo-desc">
|
2016-03-03 01:18:58 +01:00
|
|
|
{{if .Repository.DescriptionHtml}}<span class="description has-emoji">{{.Repository.DescriptionHtml}}</span>{{else}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</p>
|
|
|
|
<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">
|
2016-07-15 19:02:55 +02:00
|
|
|
<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
<button class="ui green small button"><i class="octicon octicon-git-compare"></i></button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-09 07:11:41 +01:00
|
|
|
{{template "repo/branch_dropdown" .}}
|
2016-08-15 10:42:20 +02:00
|
|
|
<div class="fitted item">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui breadcrumb">
|
2016-08-30 14:07:50 +02:00
|
|
|
<a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{EllipsisString .Repository.Name 25}}</a>
|
2016-08-30 11:08:38 +02:00
|
|
|
{{ $n := len .TreeNames}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{ $l := Subtract $n 1}}
|
2016-08-30 11:08:38 +02:00
|
|
|
{{range $i, $v := .TreeNames}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="divider"> / </div>
|
|
|
|
{{if eq $i $l}}
|
2016-08-30 14:07:50 +02:00
|
|
|
<span class="active section">{{EllipsisString $v 15}}</span>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else}}
|
|
|
|
{{ $p := index $.Paths $i}}
|
2016-08-30 14:07:50 +02:00
|
|
|
<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 15}}</a></span>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</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
|
|
|
|
2016-08-28 13:56:41 +02:00
|
|
|
<!-- Only show colne panel in repository home page -->
|
2016-08-11 14:48:08 +02:00
|
|
|
{{if eq $n 0}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui action small input" id="clone-panel">
|
2016-02-01 17:30:28 +01:00
|
|
|
<button class="ui basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">
|
2015-12-20 03:12:13 +01:00
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{if not $.DisableSSH}}
|
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}}
|
2015-12-20 03:12:13 +01:00
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
|
2015-12-07 23:30:52 +01:00
|
|
|
<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>
|
|
|
|
<div class="ui basic jump dropdown icon button">
|
|
|
|
<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" .}}
|