Merge pull request #2757 from joshfng/fix-fork-relative-url

Use relative url when showing forked from
This commit is contained in:
Unknwon 2016-03-04 18:37:42 -05:00
commit dfd6f8f7ab
2 changed files with 7 additions and 2 deletions

View file

@ -326,6 +326,11 @@ func (repo *Repository) RepoLink() string {
return setting.AppSubUrl + "/" + repo.MustOwner().Name + "/" + repo.Name
}
func (repo *Repository) RepoRelLink() string {
return "/" + repo.MustOwner().Name + "/" + repo.Name
}
func (repo *Repository) ComposeCompareURL(oldCommitID, newCommitID string) string {
return fmt.Sprintf("%s/%s/compare/%s...%s", repo.MustOwner().Name, repo.Name, oldCommitID, newCommitID)
}