2015-11-14 09:34:01 +00:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository file list">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<p id="repo-desc">
|
2016-03-03 00:18:58 +00: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 22:30:52 +00:00
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</p>
|
|
|
|
<div class="ui secondary menu">
|
2016-03-07 04:57:46 +00:00
|
|
|
{{if .PullRequestCtx.Allowed}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="fitted item">
|
2016-07-15 17:02:55 +00:00
|
|
|
<a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}">
|
2015-12-07 22:30:52 +00:00
|
|
|
<button class="ui green small button"><i class="octicon octicon-git-compare"></i></button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-12-09 06:11:41 +00:00
|
|
|
{{template "repo/branch_dropdown" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="item fitted">
|
|
|
|
<div class="ui breadcrumb">
|
|
|
|
<a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{.Repository.Name}}</a>
|
|
|
|
{{ $n := len .Treenames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
|
|
|
{{range $i, $v := .Treenames}}
|
|
|
|
<div class="divider"> / </div>
|
|
|
|
{{if eq $i $l}}
|
|
|
|
<span class="active section">{{$v}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{ $p := index $.Paths $i}}
|
|
|
|
<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{$v}}</a></span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{if eq $n 0}}
|
|
|
|
<div class="right fitted item">
|
|
|
|
<div class="ui action small input" id="clone-panel">
|
2016-02-01 16:30:28 +00:00
|
|
|
<button class="ui basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">
|
2015-12-20 02:12:13 +00:00
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{if not $.DisableSSH}}
|
2015-12-20 02:12:13 +00:00
|
|
|
<button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">
|
2015-12-07 22:30:52 +00:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2015-12-20 02:12:13 +00:00
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
|
2015-12-07 22:30:52 +00: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">
|
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="icon octicon octicon-file-zip"></i> ZIP</a>
|
|
|
|
<a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="icon octicon octicon-file-zip"></i> TAR.GZ</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{if .IsFile}}
|
|
|
|
{{template "repo/view_file" .}}
|
|
|
|
{{else}}
|
|
|
|
{{template "repo/view_list" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-07-26 04:24:27 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "base/footer" .}}
|