forked from NYANDEV/forgejo
clone in ssh
This commit is contained in:
parent
df1985e1e8
commit
26f9962b6e
6 changed files with 60 additions and 43 deletions
|
@ -7,6 +7,7 @@ LANG_IGNS=Google Go|C|Python|Ruby
|
||||||
LICENSES=Apache v2 License|GPL v2|MIT License|BSD (3-Clause) License
|
LICENSES=Apache v2 License|GPL v2|MIT License|BSD (3-Clause) License
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
|
DOMAIN = gogits.org
|
||||||
HTTP_ADDR =
|
HTTP_ADDR =
|
||||||
HTTP_PORT = 3000
|
HTTP_PORT = 3000
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ import (
|
||||||
var (
|
var (
|
||||||
AppVer string
|
AppVer string
|
||||||
AppName string
|
AppName string
|
||||||
|
Domain string
|
||||||
Cfg *goconfig.ConfigFile
|
Cfg *goconfig.ConfigFile
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -58,4 +59,5 @@ func init() {
|
||||||
Cfg.BlockMode = false
|
Cfg.BlockMode = false
|
||||||
|
|
||||||
AppName = Cfg.MustValue("", "APP_NAME")
|
AppName = Cfg.MustValue("", "APP_NAME")
|
||||||
|
Domain = Cfg.MustValue("server", "DOMAIN")
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,9 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
|
||||||
"AppVer": func() string {
|
"AppVer": func() string {
|
||||||
return AppVer
|
return AppVer
|
||||||
},
|
},
|
||||||
|
"AppDomain": func() string {
|
||||||
|
return Domain
|
||||||
|
},
|
||||||
"AvatarLink": AvatarLink,
|
"AvatarLink": AvatarLink,
|
||||||
"str2html": Str2html,
|
"str2html": Str2html,
|
||||||
"TimeSince": TimeSince,
|
"TimeSince": TimeSince,
|
||||||
|
|
|
@ -415,16 +415,8 @@ html, body {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gogs-repo-btns {
|
.gogs-repo-nav .actions {
|
||||||
margin-top: 18px;
|
padding-top: 20px;
|
||||||
}
|
|
||||||
|
|
||||||
.gogs-repo-btns .btn-group {
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gogs-repo-btns .btn-group .btn {
|
|
||||||
padding-left: 6px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#gogs-repo-watching .dropdown-menu {
|
#gogs-repo-watching .dropdown-menu {
|
||||||
|
|
|
@ -40,6 +40,25 @@ var Gogits = {
|
||||||
//container: "body"
|
//container: "body"
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Gogits.initPopovers = function () {
|
||||||
|
var hideAllPopovers = function() {
|
||||||
|
$('[data-toggle=popover]').each(function() {
|
||||||
|
$(this).popover('hide');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$(document).on('click', function(e) {
|
||||||
|
var $e = $(e.target);
|
||||||
|
if($e.data('toggle') == 'popover'||$e.parents("[data-toggle=popover], .popover").length > 0){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
hideAllPopovers();
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").popover({
|
||||||
|
selector: "[data-toggle=popover]"
|
||||||
|
});
|
||||||
|
};
|
||||||
Gogits.initTabs = function () {
|
Gogits.initTabs = function () {
|
||||||
var $tabs = $('[data-init=tabs]');
|
var $tabs = $('[data-init=tabs]');
|
||||||
$tabs.find("li:eq(0) a").tab("show");
|
$tabs.find("li:eq(0) a").tab("show");
|
||||||
|
@ -76,6 +95,7 @@ var Gogits = {
|
||||||
|
|
||||||
function initCore() {
|
function initCore() {
|
||||||
Gogits.initTooltips();
|
Gogits.initTooltips();
|
||||||
|
Gogits.initPopovers();
|
||||||
Gogits.initTabs();
|
Gogits.initTabs();
|
||||||
Gogits.initModals();
|
Gogits.initModals();
|
||||||
Gogits.renderMarkdown();
|
Gogits.renderMarkdown();
|
||||||
|
|
|
@ -1,42 +1,41 @@
|
||||||
<div id="gogs-body-nav" class="gogs-repo-nav">
|
<div id="gogs-body-nav" class="gogs-repo-nav">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="gogs-repo-btns pull-right">
|
<div class="row">
|
||||||
<div class="btn-group" id="gogs-repo-clone">
|
<div class="col-md-6">
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-download"></i>Clone</button>
|
<h3><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3>
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
|
||||||
<span class="caret"></span>
|
|
||||||
<span class="sr-only">Toggle Dropdown</span>
|
|
||||||
</button>
|
|
||||||
<div class="dropdown-menu" role="menu">
|
|
||||||
<div data-val="down-http">http link</div>
|
|
||||||
<div data-val="down-git">git link</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="btn-group" id="gogs-repo-watching">
|
<div class="col-md-6 actions text-right">
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button>
|
<div class="btn-group" id="gogs-repo-clone">
|
||||||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
<button type="button" class="btn btn-default"><i class="fa fa-download"></i>Clone</button>
|
||||||
<span class="caret"></span>
|
<button type="button" class="btn btn-default dropdown-toggle" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<label>SSH:</label><div class='input-group'><input type='text' class='form-control' value='git@{{AppDomain}}:{{.Owner.Name}}/{{.Repository.Name}}.git'></div>" data-html="1">
|
||||||
<span class="sr-only">Toggle Dropdown</span>
|
<span class="caret"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="dropdown-menu" role="menu">
|
</div>
|
||||||
<div class="dropdown-item" data-val="not-watching">
|
<div class="btn-group" id="gogs-repo-watching">
|
||||||
<h4 role="presentation" class="dropdown-header">Not Watching</h4>
|
<button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button>
|
||||||
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p>
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
||||||
<p class="divider"></p>
|
<span class="caret"></span>
|
||||||
</div>
|
<span class="sr-only">Toggle Dropdown</span>
|
||||||
<div class="dropdown-item" data-val="watching">
|
</button>
|
||||||
<h4 role="presentation" class="dropdown-header">Watching</h4>
|
<div class="dropdown-menu" role="menu">
|
||||||
<p class="description">You receive notifications for all conversations in this repository.</p>
|
<div class="dropdown-item" data-val="not-watching">
|
||||||
|
<h4 role="presentation" class="dropdown-header">Not Watching</h4>
|
||||||
|
<p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p>
|
||||||
|
<p class="divider"></p>
|
||||||
|
</div>
|
||||||
|
<div class="dropdown-item" data-val="watching">
|
||||||
|
<h4 role="presentation" class="dropdown-header">Watching</h4>
|
||||||
|
<p class="description">You receive notifications for all conversations in this repository.</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="btn-group">
|
||||||
<div class="btn-group">
|
<button type="button" class="btn btn-default"><i class="fa fa-star"></i>Star {{.Repository.NumStars}}</button>
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-star"></i>Star {{.Repository.NumStars}}</button>
|
</div>
|
||||||
</div>
|
<div class="btn-group">
|
||||||
<div class="btn-group">
|
<button type="button" class="btn btn-default"><i class="fa fa-code-fork"></i>Fork {{.Repository.NumForks}}</button>
|
||||||
<button type="button" class="btn btn-default"><i class="fa fa-code-fork"></i>Fork {{.Repository.NumForks}}</button>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h3><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue