Feature #18857
closedimprove Redmine renderer for links to jenkins
0%
Description
1. Job URL can have /view/<view name> in front of them, currently it doesn't recognize it, for example, these are links to the same job:
build-and-publish-rc-packages: #131
build-and-publish-rc-packages: #131
2. You can't tell what job is being linked to. It would be helpful if it rendered as "<job name> #<job number> <status badge>"
Updated by Ward Vandewege almost 3 years ago
- Status changed from New to In Progress
- Assigned To set to Ward Vandewege
Updated by Ward Vandewege almost 3 years ago
- Status changed from In Progress to Resolved
1. Job URL can have /view/<view name> in front of them, currently it doesn't recognize it, for example, these are links to the same job:
That format was already supported, actually, but it didn't match because of the % in the name of the view. I've added that character to the whitelist, and now both links work:
build-and-publish-rc-packages: #131
build-and-publish-rc-packages: #131
2. You can't tell what job is being linked to. It would be helpful if it rendered as "<job name> #<job number> <status badge>"
Good idea! Done.
Updated by Peter Amstutz almost 3 years ago
If you go through this page, there's a couple patterns it still doesn't recognize https://dev.arvados.org/issues/18733
Updated by Peter Amstutz almost 3 years ago
- Status changed from Resolved to Feedback
- Target version changed from 2022-03-30 Sprint to 2022-03-16 sprint
Updated by Ward Vandewege almost 3 years ago
- Status changed from Feedback to Resolved
Peter Amstutz wrote:
If you go through this page, there's a couple patterns it still doesn't recognize https://dev.arvados.org/issues/18733
Oh, right, I've tweaked the regexp to be much more tolerant of the characters used in job and view names, and to handle trailing slashes appropriately.