|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Code changed in jenkins
User: Olaf Mandel
Path:
src/main/java/hudson/plugins/git/browser/GitLab.java
http://jenkins-ci.org/commit/git-plugin/73249eeac564567f86d8e7d70cf85efa5e5f0b5b
Log:
Adapt file link for GitLab 5.2
Fix the defective file link for GitLab browsers:
For older GitLab versions, there was a duplicate slash and for
newer versions the link is completely wrong. Fix both:
Old: http://urlbase//0123456789...01234567/tree/file.name
<5.2: http://urlbase/0123456789...01234567/tree/file.name
>=5.2: http://urlbase/blob/0123456789...01234567/file.name
Note: I do not know at which version of GitLab the new link
format was introduced. This patch assumes 5.2.0, but it
may be that older versions already need the new format.
Closes #
JENKINS-18328