| | |
| | | * url Base url for Gitblit String
|
| | | * logger Logs messages to Gitblit org.slf4j.Logger
|
| | | * clientLogger Logs messages to Git client com.gitblit.utils.ClientLogger
|
| | | *
|
| | | * Accessing Gitblit Custom Fields:
|
| | | * def myCustomField = repository.customFields.myCustomField
|
| | | *
|
| | | */
|
| | |
|
| | |
| | | toAddresses.addAll(repository.mailingLists)
|
| | |
|
| | | // define the summary and commit urls
|
| | | def repo = repository.name.replace('/', gitblit.getString(Keys.web.forwardSlashCharacter, '/'))
|
| | | def repo = repository.name
|
| | | def summaryUrl
|
| | | def commitUrl
|
| | | if (gitblit.getBoolean(Keys.web.mountParameters, true)) { |
| | | if (gitblit.getBoolean(Keys.web.mountParameters, true)) {
|
| | | repo = repo.replace('/', gitblit.getString(Keys.web.forwardSlashCharacter, '/')).replace('/', '%2F')
|
| | | summaryUrl = url + "/summary/$repo"
|
| | | commitUrl = url + "/commit/$repo/"
|
| | | } else {
|