mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Use relative url when showing forked from
This commit is contained in:
		@@ -321,6 +321,11 @@ func (repo *Repository) RepoLink() string {
 | 
				
			|||||||
	return setting.AppSubUrl + "/" + repo.MustOwner().Name + "/" + repo.Name
 | 
						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 {
 | 
					func (repo *Repository) ComposeCompareURL(oldCommitID, newCommitID string) string {
 | 
				
			||||||
	return fmt.Sprintf("%s/%s/compare/%s...%s", repo.MustOwner().Name, repo.Name, oldCommitID, newCommitID)
 | 
						return fmt.Sprintf("%s/%s/compare/%s...%s", repo.MustOwner().Name, repo.Name, oldCommitID, newCommitID)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -10,7 +10,7 @@
 | 
				
			|||||||
						<div class="divider"> / </div>
 | 
											<div class="divider"> / </div>
 | 
				
			||||||
						<a href="{{$.RepoLink}}">{{.Name}}</a>
 | 
											<a href="{{$.RepoLink}}">{{.Name}}</a>
 | 
				
			||||||
						{{if .IsMirror}}<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" href="{{$.Mirror.Address}}">{{$.Mirror.Address}}</a></div>{{end}}
 | 
											{{if .IsMirror}}<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" href="{{$.Mirror.Address}}">{{$.Mirror.Address}}</a></div>{{end}}
 | 
				
			||||||
						{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></div>{{end}}
 | 
											{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoRelLink 1 -1}}</a></div>{{end}}
 | 
				
			||||||
					</div>
 | 
										</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					<div class="ui right">
 | 
										<div class="ui right">
 | 
				
			||||||
@@ -86,4 +86,4 @@
 | 
				
			|||||||
{{else}}
 | 
					{{else}}
 | 
				
			||||||
	<div class="ui divider"></div>
 | 
						<div class="ui divider"></div>
 | 
				
			||||||
{{end}}
 | 
					{{end}}
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user