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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,499,996
Community Members
 
Community Events
179
Community Groups

how to get a page content body via velocity in a user macro?

Using CONF 5.5.7 I want to get the content (body) of one specific page to show it on another page.
I dont want to use the include macro for permissions reasons. In a restricted space there is just one page that has to be shown in another public space. Secure-include macro doesn't work here. Maybe an issue with HTTPS.
The following user macro works fine to show the homepage of a specific space in another space's page:

#set($space = $spaceManager.getSpace("myKey") )
#set($homepage = $space.getHomePage() )
$homepage.getBodyAsString()

But how can I get the body of another specific page of that space? I can't find a method getPage(pageid) to use in my user macro.
Any idea?
Many thanks.

 

2 answers

1 accepted

1 vote
Answer accepted

Hi Stefan,

This is what I did (note that it is not secure to let the user choose the page ID):

## @param PageToInclude:title=Page ID of page to include|type=string|required=true
#set ( $Long = $generalUtil.getSystemStartupTime() )
#set ( $pageId = $Long.parseLong($paramPageToInclude) )
#set ( $page = $pageManager.getPage($pageId) )
#set ( $pageContent = "Page not Found" )
#set ( $pageContent = $page.getBodyAsString() )
$pageContent
0 votes

My first thought is to put the original content in the public space, then use the include-page macro to have the content shown in the restricted space.

I dropped a couple of variations of the include macro into bitbucket a while back.  One is include-with-replacement, the other is a shared-block with and without replacement.  The shared block is much like the excerpt macro with the exception that you can have multiple blocks per page.  If for security reasons you want to have the macro limit access to just one page or some sort of rules, you could hard code that logic into the macros.

https://bitbucket.org/selberg/include-content

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events