diff options
author | 无闻 <u@gogs.io> | 2015-02-09 00:31:16 -0500 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-02-09 00:31:16 -0500 |
commit | 6ed96b7a20b8b53ef958808cc414d59b72b7fa5c (patch) | |
tree | 64c3ba8f297586d36a8b963273ed05ed5305ec17 /routers/repo | |
parent | 3cc04682c5ad3296df3fc1b4209ee8b669da410e (diff) | |
parent | fc6d80d619d960b340bf1ebc7131add86985e725 (diff) | |
download | gitea-6ed96b7a20b8b53ef958808cc414d59b72b7fa5c.tar.gz gitea-6ed96b7a20b8b53ef958808cc414d59b72b7fa5c.zip |
Merge pull request #911 from TonyTsangHK/dev
Link to previous commited source file (diff.view_file button) instead of returning 404 for deleted files.
Diffstat (limited to 'routers/repo')
-rw-r--r-- | routers/repo/commit.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go index e92ec8c88c..5d354c4b56 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -253,6 +253,9 @@ func Diff(ctx *middleware.Context) { ctx.Data["Parents"] = parents ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "src", commitId) + if (commit.ParentCount() > 0) { + ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "src", parents[0]) + } ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "raw", commitId) ctx.HTML(200, DIFF) } @@ -316,6 +319,7 @@ func CompareDiff(ctx *middleware.Context) { ctx.Data["Diff"] = diff ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "src", afterCommitId) + ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "src", beforeCommitId) ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(userName, repoName, "raw", afterCommitId) ctx.HTML(200, DIFF) } |