Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×This question is in reference to Atlassian Documentation: Project shortcuts
Hi there,
We are trying to add links to resources with different protocols rather than the default ones (listed in the Atlassian documentation), such as "onenote://"
image2016-6-8 14:23:24.png
However, JIRA does not accept them.
Although we have seen there is already an open issue for almost 10 years to fulfill this https://jira.atlassian.com/browse/JRA-11505 (awaiting development), we would like to know what system plugin provides this functionality, so we could try to apply a patch to it and allow these additional URIs to be used.
Thanks in advance and regards,
Marc
The plugin should be the jira-projects-plugin
<dependency> <groupId>com.atlassian.jira</groupId> <artifactId>jira-projects-plugin</artifactId> <version>x.x.x</version> </dependency>
The whitelisted prefixes are
private static final String[] whitelistedPrefixed = new String[] { "http://", "https://", "ftp://", "ftps://",
"mailto:", "skype:", "callto:", "facetime:", "git:", "irc:", "irc6:", "news:", "nntp:", "feed:", "cvs:",
"svn:", "mvn:", "ssh:", "itms:", "notes:", "smb:", "hipchat:", "sourcetree:" };
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Boris,
Thanks a lot, that was very helpful!! Problem solved!
Regards,
Marc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.