Defect #14405
closedAlternate repo commit: link wrong when automatically added from a commit message
0%
Description
When adding some markup, in a commit message, containing an issue number, Redmine updates this issue with a link to the commit.
However, when this commit shows up in a repo which is not the main one for that project, the commit:
link is not formatted properly, and reads REPONAME|commit:SHA
instead of commit:REPONAME|SHA
An example can be found at [0]
Files
Related issues
Updated by Olivier Mehani over 11 years ago
We also have a ticket of our own to track this issue [0].
Updated by Olivier Mehani over 11 years ago
Looking at how Redmine formats svn links (PROJECT:REPONAME|rREV
), I am starting to think that the commit link-generation is good, but the parsing is not.
The link generation creates something of the forrm PROJECT:REPONAME|commit:SHA
, while the parsing expects PROJECT:commit:REPONAME|SHA
. Trying to map SVN URLs to Git urls, commit:
as the equivalent of r
, which I call MARKER_
, and ID
as an SCM-independent commit ID, this gives the following:
- SVN:
PROJECT:REPONAME|MARKER_ID
- Git (generated):
PROJECT:REPONAME|MARKER_ID
- Git (parsing):
PROJECT:MARKER_REPONAME|ID
The SVN and Git (generated) schemas perfectly match, but are at odds with Git (parsing).
I'd say the problem is therefore in the parsing code, rather than the code generator.
Updated by Christoph Dwertmann over 11 years ago
- File 14405.patch 14405.patch added
Updated by Markus Andree about 11 years ago
I can confirm this bug. I have the same problem with git.
Working links are as expected:
PROJECT:commit:REPONAME|COMMITID
commit:REPONAME|COMMITID
commit:COMMITID - for default repo
But automatic generated links for non default repo is:
REPONAME|commit:COMMITID
The patch looks good for me, I'll test that
Updated by Petr Bela over 10 years ago
Same problem, the patch seems to work fine.
Updated by Toshi MARUYAMA over 10 years ago
- Status changed from New to Closed
- Resolution set to Duplicate
Duplicate with #13544.
Updated by Toshi MARUYAMA over 10 years ago
- Is duplicate of Defect #13544: Commit reference: autogenerated issue note has wrong commit link syntax in multi-repo or cross-project context added