diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-04-12 13:51:09 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-04-12 13:51:09 +0800 |
commit | fe4750ebe21a848cd8a3b7bf2789ca40aa56414e (patch) | |
tree | 43181de585231e445171c283bceedb0949098daa /routers/repo/commit.go | |
parent | 5f3a6a9d7424a4ba1c0e63f6c3ddfbde6f3598d8 (diff) | |
parent | 794b457252b270ae452b3ea946d91b216f27ac5d (diff) |
Merge remote-tracking branch 'origin/dev' into dev
Diffstat (limited to 'routers/repo/commit.go')
-rw-r--r-- | routers/repo/commit.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go index fed1a6ba..dbfd9af2 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -103,6 +103,7 @@ func Diff(ctx *middleware.Context, params martini.Params) { ctx.Data["Title"] = commit.Message() + " ยท " + base.ShortSha(commitId) ctx.Data["Commit"] = commit ctx.Data["Diff"] = diff + ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 ctx.Data["IsRepoToolbarCommits"] = true ctx.Data["SourcePath"] = "/" + path.Join(userName, repoName, "src", commitId) ctx.Data["RawPath"] = "/" + path.Join(userName, repoName, "raw", commitId) |