mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Mirror fix
This commit is contained in:
		@@ -34,6 +34,11 @@ type Context struct {
 | 
			
		||||
		IsWatching bool
 | 
			
		||||
		Repository *models.Repository
 | 
			
		||||
		Owner      *models.User
 | 
			
		||||
		CloneLink  struct {
 | 
			
		||||
			SSH   string
 | 
			
		||||
			HTTPS string
 | 
			
		||||
			Git   string
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -6,11 +6,13 @@ package middleware
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
	"github.com/codegangsta/martini"
 | 
			
		||||
 | 
			
		||||
	"github.com/gogits/gogs/models"
 | 
			
		||||
	"github.com/gogits/gogs/modules/base"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func RepoAssignment(redirect bool) martini.Handler {
 | 
			
		||||
@@ -65,11 +67,13 @@ func RepoAssignment(redirect bool) martini.Handler {
 | 
			
		||||
		ctx.Repo.IsValid = true
 | 
			
		||||
		ctx.Repo.IsWatching = models.IsWatching(ctx.User.Id, repo.Id)
 | 
			
		||||
		ctx.Repo.Repository = repo
 | 
			
		||||
		ctx.Repo.CloneLink.SSH = fmt.Sprintf("git@%s:%s/%s.git", base.Domain, ctx.User.LowerName, repo.LowerName)
 | 
			
		||||
 | 
			
		||||
		ctx.Data["IsRepositoryValid"] = true
 | 
			
		||||
		ctx.Data["Repository"] = repo
 | 
			
		||||
		ctx.Data["Owner"] = user
 | 
			
		||||
		ctx.Data["Title"] = user.Name + "/" + repo.Name
 | 
			
		||||
		ctx.Data["CloneLink"] = ctx.Repo.CloneLink
 | 
			
		||||
		ctx.Data["RepositoryLink"] = ctx.Data["Title"]
 | 
			
		||||
		ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
            <div class="col-md-6 actions text-right">
 | 
			
		||||
                <div class="btn-group" id="gogs-repo-clone">
 | 
			
		||||
                    <button type="button" class="btn btn-default"><i class="fa fa-download fa-lg fa-m"></i></button>
 | 
			
		||||
                    <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.LowerName}}/{{.Repository.Name}}.git'></div>" data-html="1">
 | 
			
		||||
                    <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='{{.CloneLink.SSH}}'></div>" data-html="1">
 | 
			
		||||
                        <span class="caret"></span>
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user