Fixed generated urls in sendmail hook script for grouped repositories
| | |
| | |
|
| | | #### fixes
|
| | |
|
| | | - Fixed generated urls in Groovy *sendmail* hook script for grouped repositories
|
| | | - Eliminated an unnecessary reopsitory enumeration call on the root page which should result in faster page loads (issue 103)
|
| | | - Gitblit could not delete a Lucene index in a working copy on index upgrade
|
| | | - Do not index submodule links (issue 119)
|
| | |
| | | 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)) {
|
| | | repo = repo.replace('/', gitblit.getString(Keys.web.forwardSlashCharacter, '/')).replace('/', '%2F')
|
| | | summaryUrl = url + "/summary/$repo"
|
| | | commitUrl = url + "/commit/$repo/"
|
| | | } else {
|