HTMLURL returns HTML URL using given owner and repository name.
(owner, repo string)
| 39 | |
| 40 | // HTMLURL returns HTML URL using given owner and repository name. |
| 41 | func HTMLURL(owner, repo string) string { |
| 42 | return conf.Server.ExternalURL + owner + "/" + repo |
| 43 | } |
| 44 | |
| 45 | // CompareCommitsPath returns the comparison path using given owner, repository, |
| 46 | // and commit IDs. |
no outgoing calls