Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Does Atlassian think of supporting the add-on "Incoming Links"?

Raphael Kaiser September 4, 2015

In my organization we would like to use the add-on Incoming Links in order to trace requirements. Unfortunately the plugin is unsupported by Atlassian. But we are not allowed to install unsupported add-ons in our productive environment, as those add-ons may not work in future versions of Confluence.

Does Atlassian think of supporting this add-on in the future or is there an alternative?

Best regards,

Raphael

2 answers

1 vote
Rodrigo Girardi Adami
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 4, 2015

Hi Raphael,

The unsupported doesn't necessarily means that the plugin won't work, but this usually means that Atlassian doesn't support it if we find that some issue is being caused by the plugin. I can suggest to get in touch with the plugin vendor in case you have some issue directly related to that plugin.

Regards,

Rodrigo

0 votes
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 9, 2015

You could replicate the functionality of this addon with a user macro. Then you could maintain it yourself.

## Developed by: Davin Studer
## Date created: 06/26/2014
## @noparams
 
#set($containerManagerClass=$content.class.forName('com.atlassian.spring.container.ContainerManager'))
#set($getInstanceMethod=$containerManagerClass.getDeclaredMethod('getInstance',null))
#set($containerManager=$getInstanceMethod.invoke(null,null))
#set($containerContext=$containerManager.containerContext)
#set($linkManager=$containerContext.getComponent('linkManager'))
#set($pages = $linkManager.getReferringContent($content))
 
#if($pages.size() > 0)
<ul class="referring-content-links">
    #foreach($page in $pages)
        #if (!$page.isDeleted())
    <li><a href="$page.getUrlPath()">$page.getTitle()</a></li>
        #end
    #end
</ul>
#end

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events