You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi, I would like to create an user macro which gets content from a table. The table is on a different page from the one where the user macro i placed.
Is it possible to access content of a table on another page from an user macro?
My final goal is to create an user macro which lists all incoming links, but only those which are placed in a specific table on other pages.
Thanks, I know the Page Properties Macro and this is not what I want to do.
I want to extract content of a specific table (or part of a table) and use that content in a user macro.
Sorry to hear that this did not help you. In case the content is within a single cell of the table, or consists of the whole table, you could also use the excerpt macro. But this seems to be far less than what you are trying to achieve.
Having the page properties macro as a base, you could create a user macro that does exactly that, but maybe someone else will have a better idea 😊
My first thought would be that you could create a user macro with a parameter to select a page. That parameter will create a velocity variable that you could pop into some JavaScript to do a REST call to get the contents of the page. From there it would be parsing through the page storage format with JavaScript.
I would tend to use JavaScript for this in a user macro instead of velocity. It's actually not too hard to get the page content with velocity, but since velocity is really only a page templating language there aren't very good/easy ways to parse though the page storage format with it.
I too think that I should go for JavaScript. Selecting a page is not an issue. I will use the incoming links.
Well, I try to get the content of a page but I keep getting 404 page not found error.
function getContent()
{
jQuery.ajax({
url: "/rest/api/content/77562249",
type: 'get',
dataType: 'html',
async: false,
success: function(data) {
var h = document.createElement("H1");
var t = document.createTextNode(data);
h.appendChild(t);
document.getElementById("div1").appendChild(h);
},
error: function (xhr, ajaxOptions, thrownError) {
var h = document.createElement("H1");
var t = document.createTextNode(xhr.status + " " + thrownError);
h.appendChild(t);
document.getElementById("div1").appendChild(h);
}
});
return;
}
/rest/api/content/77562249 works in a browser, but not in the user macro
/rest/api/space works both in macro and in browser