2014-03-24 15:55:15 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-04-20 09:45:19 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-03-24 15:55:15 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
import (
|
|
|
|
"path"
|
2017-02-11 09:30:01 +05:30
|
|
|
"strings"
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2017-09-14 12:21:32 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-24 13:22:05 +05:30
|
|
|
"code.gitea.io/gitea/modules/templates"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-24 12:34:31 +05:30
|
|
|
tplCommits base.TplName = "repo/commits"
|
2016-12-29 05:14:32 +05:30
|
|
|
tplGraph base.TplName = "repo/graph"
|
2016-11-24 12:34:31 +05:30
|
|
|
tplDiff base.TplName = "repo/diff/page"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// RefCommits render commits page
|
2016-03-11 22:26:52 +05:30
|
|
|
func RefCommits(ctx *context.Context) {
|
2014-11-07 08:36:41 +05:30
|
|
|
switch {
|
2016-08-25 10:05:03 +05:30
|
|
|
case len(ctx.Repo.TreePath) == 0:
|
2014-11-07 08:36:41 +05:30
|
|
|
Commits(ctx)
|
2016-08-25 10:05:03 +05:30
|
|
|
case ctx.Repo.TreePath == "search":
|
2014-11-07 08:36:41 +05:30
|
|
|
SearchCommits(ctx)
|
|
|
|
default:
|
|
|
|
FileHistory(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Commits render branch's commits
|
2016-03-11 22:26:52 +05:30
|
|
|
func Commits(ctx *context.Context) {
|
2015-08-20 17:48:49 +05:30
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-07-31 06:53:10 +05:30
|
|
|
if ctx.Repo.Commit == nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("Commit not found", nil)
|
2017-07-31 06:53:10 +05:30
|
|
|
return
|
|
|
|
}
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2017-10-26 07:07:33 +05:30
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-20 17:48:49 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
2014-07-26 11:58:04 +05:30
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Both `git log branchName` and `git log commitId` work.
|
2014-09-24 01:00:04 +05:30
|
|
|
commits, err := ctx.Repo.Commit.CommitsByRange(page)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CommitsByRange", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-09-26 18:25:13 +05:30
|
|
|
commits = models.ValidateCommitsWithEmails(commits)
|
2017-03-22 16:13:54 +05:30
|
|
|
commits = models.ParseCommitsWithSignature(commits)
|
2017-05-07 20:10:31 +05:30
|
|
|
commits = models.ParseCommitsWithStatus(commits, ctx.Repo.Repository)
|
2014-09-24 01:00:04 +05:30
|
|
|
ctx.Data["Commits"] = commits
|
2015-11-11 03:16:17 +05:30
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
2019-04-20 09:45:19 +05:30
|
|
|
|
|
|
|
pager := context.NewPagination(int(commitsCount), git.CommitsRangeSize, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplCommits)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-12-29 05:14:32 +05:30
|
|
|
// Graph render commit graph - show commits from all branches.
|
|
|
|
func Graph(ctx *context.Context) {
|
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2016-12-29 05:14:32 +05:30
|
|
|
|
2017-10-26 07:07:33 +05:30
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2016-12-29 05:14:32 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2016-12-29 05:14:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
graph, err := models.GetCommitGraph(ctx.Repo.GitRepo)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitGraph", err)
|
2016-12-29 05:14:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Graph"] = graph
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
|
|
|
ctx.Data["RequireGitGraph"] = true
|
|
|
|
ctx.HTML(200, tplGraph)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// SearchCommits render commits filtered by keyword
|
2016-03-11 22:26:52 +05:30
|
|
|
func SearchCommits(ctx *context.Context) {
|
2015-08-20 17:48:49 +05:30
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2019-04-12 07:58:44 +05:30
|
|
|
query := strings.Trim(ctx.Query("q"), " ")
|
|
|
|
if len(query) == 0 {
|
2017-10-30 07:34:25 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/commits/" + ctx.Repo.BranchNameSubURL())
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-12 07:58:44 +05:30
|
|
|
all := ctx.QueryBool("all")
|
|
|
|
opts := git.NewSearchCommitsOptions(query, all)
|
|
|
|
commits, err := ctx.Repo.Commit.SearchCommits(opts)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("SearchCommits", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2014-09-26 18:25:13 +05:30
|
|
|
commits = models.ValidateCommitsWithEmails(commits)
|
2017-03-22 16:13:54 +05:30
|
|
|
commits = models.ParseCommitsWithSignature(commits)
|
2017-05-07 20:10:31 +05:30
|
|
|
commits = models.ParseCommitsWithStatus(commits, ctx.Repo.Repository)
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Commits"] = commits
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2019-04-12 07:58:44 +05:30
|
|
|
ctx.Data["Keyword"] = query
|
2017-02-05 20:13:28 +05:30
|
|
|
if all {
|
|
|
|
ctx.Data["All"] = "checked"
|
|
|
|
}
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["CommitCount"] = commits.Len()
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplCommits)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// FileHistory show a file's reversions
|
2016-03-11 22:26:52 +05:30
|
|
|
func FileHistory(ctx *context.Context) {
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["IsRepoToolbarCommits"] = true
|
|
|
|
|
2016-08-25 10:05:03 +05:30
|
|
|
fileName := ctx.Repo.TreePath
|
2014-11-07 08:36:41 +05:30
|
|
|
if len(fileName) == 0 {
|
|
|
|
Commits(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
branchName := ctx.Repo.BranchName
|
|
|
|
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("FileCommitsCount", err)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
} else if commitsCount == 0 {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("FileCommitsCount", nil)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-11 03:16:17 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
2014-11-07 08:36:41 +05:30
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2015-11-11 03:16:17 +05:30
|
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(branchName, fileName, page)
|
2014-11-07 08:36:41 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CommitsByFileAndRange", err)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
commits = models.ValidateCommitsWithEmails(commits)
|
2017-03-22 16:13:54 +05:30
|
|
|
commits = models.ParseCommitsWithSignature(commits)
|
2017-05-07 20:10:31 +05:30
|
|
|
commits = models.ParseCommitsWithStatus(commits, ctx.Repo.Repository)
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["Commits"] = commits
|
2015-11-11 03:16:17 +05:30
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["FileName"] = fileName
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Branch"] = branchName
|
2019-04-20 09:45:19 +05:30
|
|
|
|
|
|
|
pager := context.NewPagination(int(commitsCount), git.CommitsRangeSize, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplCommits)
|
2014-11-07 08:36:41 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Diff show different from current commit to previous commit
|
2016-03-11 22:26:52 +05:30
|
|
|
func Diff(ctx *context.Context) {
|
2015-08-20 21:48:30 +05:30
|
|
|
ctx.Data["PageIsDiff"] = true
|
2016-08-16 20:01:54 +05:30
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
userName := ctx.Repo.Owner.Name
|
|
|
|
repoName := ctx.Repo.Repository.Name
|
2016-03-21 20:19:46 +05:30
|
|
|
commitID := ctx.Params(":sha")
|
|
|
|
|
|
|
|
commit, err := ctx.Repo.GitRepo.GetCommit(commitID)
|
|
|
|
if err != nil {
|
2016-08-16 03:57:19 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("Repo.GitRepo.GetCommit", err)
|
2016-08-16 03:57:19 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Repo.GitRepo.GetCommit", err)
|
2016-08-16 03:57:19 +05:30
|
|
|
}
|
2016-03-21 20:19:46 +05:30
|
|
|
return
|
|
|
|
}
|
2016-11-07 02:45:44 +05:30
|
|
|
if len(commitID) != 40 {
|
|
|
|
commitID = commit.ID.String()
|
|
|
|
}
|
2017-09-14 12:21:32 +05:30
|
|
|
|
2019-01-06 20:02:00 +05:30
|
|
|
statuses, err := models.GetLatestCommitStatus(ctx.Repo.Repository, commitID, 0)
|
2017-09-14 12:21:32 +05:30
|
|
|
if err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("GetLatestCommitStatus: %v", err)
|
2017-09-14 12:21:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["CommitStatus"] = models.CalcCommitStatus(statuses)
|
|
|
|
|
2014-09-17 09:33:03 +05:30
|
|
|
diff, err := models.GetDiffCommit(models.RepoPath(userName, repoName),
|
2016-06-29 20:41:00 +05:30
|
|
|
commitID, setting.Git.MaxGitDiffLines,
|
|
|
|
setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetDiffCommit", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
parents := make([]string, commit.ParentCount())
|
|
|
|
for i := 0; i < commit.ParentCount(); i++ {
|
2015-12-10 07:16:05 +05:30
|
|
|
sha, err := commit.ParentID(i)
|
2014-07-26 11:58:04 +05:30
|
|
|
parents[i] = sha.String()
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("repo.Diff", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 20:19:46 +05:30
|
|
|
ctx.Data["CommitID"] = commitID
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Username"] = userName
|
|
|
|
ctx.Data["Reponame"] = repoName
|
2015-09-02 13:38:05 +05:30
|
|
|
ctx.Data["IsImageFile"] = commit.IsImageFile
|
2015-08-31 12:54:28 +05:30
|
|
|
ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitID)
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Commit"] = commit
|
2017-03-22 16:13:54 +05:30
|
|
|
ctx.Data["Verification"] = models.ParseCommitWithSignature(commit)
|
2014-10-11 07:10:51 +05:30
|
|
|
ctx.Data["Author"] = models.ValidateCommitWithEmail(commit)
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Diff"] = diff
|
|
|
|
ctx.Data["Parents"] = parents
|
|
|
|
ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0
|
2017-11-27 06:28:54 +05:30
|
|
|
ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", commitID)
|
2019-05-24 13:22:05 +05:30
|
|
|
|
|
|
|
note := &git.Note{}
|
|
|
|
err = git.GetNote(ctx.Repo.GitRepo, commitID, note)
|
|
|
|
if err == nil {
|
|
|
|
ctx.Data["Note"] = string(templates.ToUTF8WithFallback(note.Message))
|
|
|
|
ctx.Data["NoteCommit"] = note.Commit
|
|
|
|
ctx.Data["NoteAuthor"] = models.ValidateCommitWithEmail(note.Commit)
|
|
|
|
}
|
|
|
|
|
2015-08-20 17:48:49 +05:30
|
|
|
if commit.ParentCount() > 0 {
|
2017-11-27 06:28:54 +05:30
|
|
|
ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", parents[0])
|
2015-02-06 14:32:32 +05:30
|
|
|
}
|
2017-11-27 06:28:54 +05:30
|
|
|
ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", "commit", commitID)
|
2019-04-19 17:47:27 +05:30
|
|
|
ctx.Data["BranchName"], err = commit.GetBranchName()
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplDiff)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// RawDiff dumps diff results of repository in given commit ID to io.Writer
|
2016-03-21 20:19:46 +05:30
|
|
|
func RawDiff(ctx *context.Context) {
|
2016-07-30 21:09:58 +05:30
|
|
|
if err := models.GetRawDiff(
|
2016-07-30 20:32:22 +05:30
|
|
|
models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name),
|
|
|
|
ctx.Params(":sha"),
|
2016-07-30 21:09:58 +05:30
|
|
|
models.RawDiffType(ctx.Params(":ext")),
|
|
|
|
ctx.Resp,
|
|
|
|
); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetRawDiff", err)
|
2016-07-30 20:32:22 +05:30
|
|
|
return
|
|
|
|
}
|
2016-03-21 20:19:46 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CompareDiff show different from one commit to another commit
|
2016-03-11 22:26:52 +05:30
|
|
|
func CompareDiff(ctx *context.Context) {
|
2014-08-26 17:50:18 +05:30
|
|
|
ctx.Data["IsRepoToolbarCommits"] = true
|
|
|
|
ctx.Data["IsDiffCompare"] = true
|
|
|
|
userName := ctx.Repo.Owner.Name
|
|
|
|
repoName := ctx.Repo.Repository.Name
|
2015-08-31 12:54:28 +05:30
|
|
|
beforeCommitID := ctx.Params(":before")
|
|
|
|
afterCommitID := ctx.Params(":after")
|
2014-08-26 17:50:18 +05:30
|
|
|
|
2015-08-31 12:54:28 +05:30
|
|
|
commit, err := ctx.Repo.GitRepo.GetCommit(afterCommitID)
|
2014-08-26 17:50:18 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetCommit", err)
|
2014-08-26 17:50:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:54:28 +05:30
|
|
|
diff, err := models.GetDiffRange(models.RepoPath(userName, repoName), beforeCommitID,
|
2016-06-29 20:41:00 +05:30
|
|
|
afterCommitID, setting.Git.MaxGitDiffLines,
|
|
|
|
setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
|
2014-08-26 17:50:18 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetDiffRange", err)
|
2014-08-26 17:50:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-31 12:54:28 +05:30
|
|
|
commits, err := commit.CommitsBeforeUntil(beforeCommitID)
|
2014-08-26 17:50:18 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CommitsBeforeUntil", err)
|
2014-08-26 17:50:18 +05:30
|
|
|
return
|
|
|
|
}
|
2014-10-11 07:10:51 +05:30
|
|
|
commits = models.ValidateCommitsWithEmails(commits)
|
2017-03-22 16:13:54 +05:30
|
|
|
commits = models.ParseCommitsWithSignature(commits)
|
2017-05-07 20:10:31 +05:30
|
|
|
commits = models.ParseCommitsWithStatus(commits, ctx.Repo.Repository)
|
2014-08-26 17:50:18 +05:30
|
|
|
|
2015-09-02 04:37:02 +05:30
|
|
|
ctx.Data["CommitRepoLink"] = ctx.Repo.RepoLink
|
2014-08-26 17:50:18 +05:30
|
|
|
ctx.Data["Commits"] = commits
|
|
|
|
ctx.Data["CommitCount"] = commits.Len()
|
2015-08-31 12:54:28 +05:30
|
|
|
ctx.Data["BeforeCommitID"] = beforeCommitID
|
|
|
|
ctx.Data["AfterCommitID"] = afterCommitID
|
2014-08-26 17:50:18 +05:30
|
|
|
ctx.Data["Username"] = userName
|
|
|
|
ctx.Data["Reponame"] = repoName
|
2015-09-02 13:38:05 +05:30
|
|
|
ctx.Data["IsImageFile"] = commit.IsImageFile
|
2015-08-31 12:54:28 +05:30
|
|
|
ctx.Data["Title"] = "Comparing " + base.ShortSha(beforeCommitID) + "..." + base.ShortSha(afterCommitID) + " · " + userName + "/" + repoName
|
2014-08-26 17:50:18 +05:30
|
|
|
ctx.Data["Commit"] = commit
|
|
|
|
ctx.Data["Diff"] = diff
|
|
|
|
ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0
|
2017-11-27 06:28:54 +05:30
|
|
|
ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", afterCommitID)
|
|
|
|
ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", beforeCommitID)
|
|
|
|
ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", "commit", afterCommitID)
|
2017-02-13 07:41:08 +05:30
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
2016-11-24 12:34:31 +05:30
|
|
|
ctx.HTML(200, tplDiff)
|
2014-08-26 17:50:18 +05:30
|
|
|
}
|