mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix go-get, src and raw urls to new scheme (#2978)
This commit is contained in:
		| @@ -182,7 +182,7 @@ func Contexter() macaron.Handler { | |||||||
| 					branchName = repo.DefaultBranch | 					branchName = repo.DefaultBranch | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 			prefix := setting.AppURL + path.Join(ownerName, repoName, "src", branchName) | 			prefix := setting.AppURL + path.Join(ownerName, repoName, "src", "branch", branchName) | ||||||
| 			c.PlainText(http.StatusOK, []byte(com.Expand(` | 			c.PlainText(http.StatusOK, []byte(com.Expand(` | ||||||
| <html> | <html> | ||||||
| 	<head> | 	<head> | ||||||
|   | |||||||
| @@ -453,7 +453,7 @@ func RepoAssignment() macaron.Handler { | |||||||
|  |  | ||||||
| 		if ctx.Query("go-get") == "1" { | 		if ctx.Query("go-get") == "1" { | ||||||
| 			ctx.Data["GoGetImport"] = ComposeGoGetImport(owner.Name, repo.Name) | 			ctx.Data["GoGetImport"] = ComposeGoGetImport(owner.Name, repo.Name) | ||||||
| 			prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", ctx.Repo.BranchName) | 			prefix := setting.AppURL + path.Join(owner.Name, repo.Name, "src", "branch", ctx.Repo.BranchName) | ||||||
| 			ctx.Data["GoDocDirectory"] = prefix + "{/dir}" | 			ctx.Data["GoDocDirectory"] = prefix + "{/dir}" | ||||||
| 			ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" | 			ctx.Data["GoDocFile"] = prefix + "{/dir}/{file}#L{line}" | ||||||
| 		} | 		} | ||||||
|   | |||||||
| @@ -237,11 +237,11 @@ func Diff(ctx *context.Context) { | |||||||
| 	ctx.Data["Diff"] = diff | 	ctx.Data["Diff"] = diff | ||||||
| 	ctx.Data["Parents"] = parents | 	ctx.Data["Parents"] = parents | ||||||
| 	ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 | 	ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 | ||||||
| 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", commitID) | 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", commitID) | ||||||
| 	if commit.ParentCount() > 0 { | 	if commit.ParentCount() > 0 { | ||||||
| 		ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", parents[0]) | 		ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", parents[0]) | ||||||
| 	} | 	} | ||||||
| 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", commitID) | 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", "commit", commitID) | ||||||
| 	ctx.HTML(200, tplDiff) | 	ctx.HTML(200, tplDiff) | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -302,9 +302,9 @@ func CompareDiff(ctx *context.Context) { | |||||||
| 	ctx.Data["Commit"] = commit | 	ctx.Data["Commit"] = commit | ||||||
| 	ctx.Data["Diff"] = diff | 	ctx.Data["Diff"] = diff | ||||||
| 	ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 | 	ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 | ||||||
| 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", afterCommitID) | 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", afterCommitID) | ||||||
| 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", beforeCommitID) | 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", beforeCommitID) | ||||||
| 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", afterCommitID) | 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", "commit", afterCommitID) | ||||||
| 	ctx.Data["RequireHighlightJS"] = true | 	ctx.Data["RequireHighlightJS"] = true | ||||||
| 	ctx.HTML(200, tplDiff) | 	ctx.HTML(200, tplDiff) | ||||||
| } | } | ||||||
|   | |||||||
| @@ -480,9 +480,9 @@ func ViewPullFiles(ctx *context.Context) { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	ctx.Data["IsImageFile"] = commit.IsImageFile | 	ctx.Data["IsImageFile"] = commit.IsImageFile | ||||||
| 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", endCommitID) | 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", "commit", endCommitID) | ||||||
| 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", startCommitID) | 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", "commit", startCommitID) | ||||||
| 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", endCommitID) | 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", "commit", endCommitID) | ||||||
| 	ctx.Data["RequireHighlightJS"] = true | 	ctx.Data["RequireHighlightJS"] = true | ||||||
|  |  | ||||||
| 	ctx.HTML(200, tplPullFiles) | 	ctx.HTML(200, tplPullFiles) | ||||||
| @@ -689,9 +689,9 @@ func PrepareCompareDiff( | |||||||
| 	ctx.Data["IsImageFile"] = headCommit.IsImageFile | 	ctx.Data["IsImageFile"] = headCommit.IsImageFile | ||||||
|  |  | ||||||
| 	headTarget := path.Join(headUser.Name, repo.Name) | 	headTarget := path.Join(headUser.Name, repo.Name) | ||||||
| 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", headCommitID) | 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", "commit", headCommitID) | ||||||
| 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", prInfo.MergeBase) | 	ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", "commit", prInfo.MergeBase) | ||||||
| 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", headCommitID) | 	ctx.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", "commit", headCommitID) | ||||||
| 	return false | 	return false | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -38,7 +38,7 @@ func Search(ctx *context.Context) { | |||||||
| 	pager := paginater.New(total, setting.UI.RepoSearchPagingNum, page, 5) | 	pager := paginater.New(total, setting.UI.RepoSearchPagingNum, page, 5) | ||||||
| 	ctx.Data["Page"] = pager | 	ctx.Data["Page"] = pager | ||||||
| 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + | 	ctx.Data["SourcePath"] = setting.AppSubURL + "/" + | ||||||
| 		path.Join(ctx.Repo.Repository.Owner.Name, ctx.Repo.Repository.Name, "src", ctx.Repo.Repository.DefaultBranch) | 		path.Join(ctx.Repo.Repository.Owner.Name, ctx.Repo.Repository.Name, "src", "branch", ctx.Repo.Repository.DefaultBranch) | ||||||
| 	ctx.Data["SearchResults"] = searchResults | 	ctx.Data["SearchResults"] = searchResults | ||||||
| 	ctx.Data["RequireHighlightJS"] = true | 	ctx.Data["RequireHighlightJS"] = true | ||||||
| 	ctx.Data["PageIsViewCode"] = true | 	ctx.Data["PageIsViewCode"] = true | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user