You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello everyone,
I'm not well versed in HTML but I am trying to count the number of pages in a set location based on a label, so far my code is:
## @Param ParentPage:title=Page|type=confluence-content|required=true|desc=Select a page for which to count the children
## @Param Label:title=label|type=string|required=true|desc=Specify a label to count #set($pageCount = 0)
#set ( $colonIndex = $paramParentPage.indexOf(":") )
#if ( $colonIndex == -1 )
#set ( $parentSpaceKey = $space.key )
#set ( $parentPageName = $paramParentPage )
#else
#set ( $parentSpaceKey = $paramParentPage.substring(0, $colonIndex) )
#set ( $parentPageNameIndex = $colonIndex + 1 )
#set ( $parentPageName = $paramParentPage.substring($parentPageNameIndex) )
#end
#set ( $parentPage = $pageManager.getPage($parentSpaceKey, $parentPageName) )
#foreach( $child in $parentPage.descendents )
#foreach( $childlabel in $child.labels )
#if($childlabel.name == $paramLabel )
#set($pageCount = $pageCount +1)
#end
#end
#end
<p>Under $parentPageName there are $pageCount pages with the label $paramLabel</p>
But with that all I am receiving is this:
Can anyone help me identify the issue?
Hmm, looks like something I wrote :)
It's not super efficient, but it should work. Looks like your main issue is that #set($pageCount=0) is on the wrong line. Maybe try this:
## @Param ParentPage:title=Page|type=confluence-content|required=true|desc=Select a page for which to count the children
## @Param Label:title=label|type=string|required=true|desc=Specify a label to count
#set ( $pageCount = 0 )
#set ( $colonIndex = $paramParentPage.indexOf(":") )
#if ( $colonIndex == -1 )
#set ( $parentSpaceKey = $space.key )
#set ( $parentPageName = $paramParentPage )
#else
#set ( $parentSpaceKey = $paramParentPage.substring(0, $colonIndex) )
#set ( $parentPageNameIndex = $colonIndex + 1 )
#set ( $parentPageName = $paramParentPage.substring($parentPageNameIndex) )
#end
#set ( $parentPage = $pageManager.getPage($parentSpaceKey, $parentPageName) )
#foreach ( $child in $parentPage.descendants )
#foreach ( $childLabel in $child.labels )
#if ( $childLabel.name == $paramLabel )
#set ( $pageCount = $pageCount + 1 )
#break
#end
#end
#end
<p>Under $parentPageName there are $pageCount pages with the label $paramLabel</p>
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.