Add go-source directive to repo pages

This makes Gogs repos work with godoc.org: https://github.com/golang/gddo/wiki/Source-Code-Links
This commit is contained in:
Nathan Zadoks 2015-10-30 13:52:36 +01:00
parent 102b675f96
commit 4323a89c03
3 changed files with 7 additions and 1 deletions

View file

@ -347,6 +347,8 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler {
if ctx.Query("go-get") == "1" {
ctx.Data["GoGetImport"] = fmt.Sprintf("%s/%s/%s", setting.Domain, u.Name, repo.Name)
ctx.Data["GoDocDirectory"] = fmt.Sprintf("%s%s/%s/src/master{/dir}", setting.AppUrl, repo.Owner.LowerName, repo.LowerName)
ctx.Data["GoDocFile"] = fmt.Sprintf("%s%s/%s/src/master{/dir}/{file}#L{line}", setting.AppUrl, repo.Owner.LowerName, repo.LowerName)
}
if ctx.IsSigned {