2014-03-24 11:25:15 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2014-03-24 11:25:15 +01:00
|
|
|
)
|
|
|
|
|
2014-06-23 05:11:12 +02:00
|
|
|
const (
|
2016-11-22 09:32:00 +01:00
|
|
|
tplBranch base.TplName = "repo/branch"
|
2014-06-23 05:11:12 +02:00
|
|
|
)
|
|
|
|
|
2016-11-22 09:32:00 +01:00
|
|
|
// Branches render repository branch page
|
2016-03-11 17:56:52 +01:00
|
|
|
func Branches(ctx *context.Context) {
|
2014-05-26 02:11:25 +02:00
|
|
|
ctx.Data["Title"] = "Branches"
|
|
|
|
ctx.Data["IsRepoToolbarBranches"] = true
|
|
|
|
|
2014-04-13 03:35:36 +02:00
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-03-24 11:25:15 +01:00
|
|
|
if err != nil {
|
2014-06-23 05:11:12 +02:00
|
|
|
ctx.Handle(500, "repo.Branches(GetBranches)", err)
|
2014-03-24 11:25:15 +01:00
|
|
|
return
|
|
|
|
} else if len(brs) == 0 {
|
2014-06-23 05:11:12 +02:00
|
|
|
ctx.Handle(404, "repo.Branches(GetBranches)", nil)
|
2014-03-24 11:25:15 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Branches"] = brs
|
2016-11-22 09:32:00 +01:00
|
|
|
ctx.HTML(200, tplBranch)
|
2014-03-24 11:25:15 +01:00
|
|
|
}
|