aboutsummaryrefslogtreecommitdiff
path: root/routers/repo
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-03-21 10:49:46 -0400
committerUnknwon <u@gogs.io>2016-03-21 10:49:46 -0400
commit60ae8ac3d2995d46156ead8ad93004801daad4ce (patch)
tree274591915fc6d2a56067d83fdf329ff67c3270f2 /routers/repo
parent004fb30ebe403625b2315b284a85124611ba303b (diff)
Add route for #2846
Diffstat (limited to 'routers/repo')
-rw-r--r--routers/repo/commit.go14
-rw-r--r--routers/repo/http.go2
2 files changed, 13 insertions, 3 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go
index 97584c4d..16f7b63d 100644
--- a/routers/repo/commit.go
+++ b/routers/repo/commit.go
@@ -148,9 +148,14 @@ func Diff(ctx *context.Context) {
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
- commitID := ctx.Repo.CommitID
+ commitID := ctx.Params(":sha")
+
+ commit, err := ctx.Repo.GitRepo.GetCommit(commitID)
+ if err != nil {
+ ctx.Handle(500, "Repo.GitRepo.GetCommit", err)
+ return
+ }
- commit := ctx.Repo.Commit
diff, err := models.GetDiffCommit(models.RepoPath(userName, repoName),
commitID, setting.Git.MaxGitDiffLines)
if err != nil {
@@ -168,6 +173,7 @@ func Diff(ctx *context.Context) {
}
}
+ ctx.Data["CommitID"] = commitID
ctx.Data["IsSplitStyle"] = ctx.Query("style") == "split"
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
@@ -187,6 +193,10 @@ func Diff(ctx *context.Context) {
ctx.HTML(200, DIFF)
}
+func RawDiff(ctx *context.Context) {
+ panic("not implemented")
+}
+
func CompareDiff(ctx *context.Context) {
ctx.Data["IsRepoToolbarCommits"] = true
ctx.Data["IsDiffCompare"] = true
diff --git a/routers/repo/http.go b/routers/repo/http.go
index b273b233..46e45089 100644
--- a/routers/repo/http.go
+++ b/routers/repo/http.go
@@ -511,7 +511,7 @@ func gitCommand(gitBinPath, dir string, args ...string) []byte {
out, err := command.Output()
if err != nil {
- log.GitLogger.Error(4, err.Error())
+ log.GitLogger.Error(4, fmt.Sprintf("%v - %s", err, out))
}
return out