Exceeding the Content by Label Max Page Limit

Mike Platt September 18, 2017

Is there a way to get the Content by Label macro to display more than 500 pages?

I think I've got around the 20 label limit but this has me stumped.

If there isn't a way to do this, can anyone recommend an alternative?

2 comments

Sandy Johnson September 18, 2017

Hi Mike

This won't get you past the 500 page limit, but we have a section at the top of our pages for related pages using this macro. If we know the list is going to be more than say 15-20 pages, we break it up into multiple lists. Each list uses the Content by label macro with different labels generating different lists of pages. For example, we may have one list for process pages, one for how to, one for training, etc. We find this is more readable.

Thanks, Sandy

Mike Platt September 18, 2017

Thanks, but unfortunately that isn't going to do it.

This is a scripting language reference with >2000 commands. I want to list the commands available in each version of our product. Each command has a version label.

1.00 started with >1500 available commands and each subsequent release of our product added support for more.

e.g.

  • Version 2.00, aggregate labels 1_00, 1_20, 1_50, and 2_00
  • Version 1.50, it would only be 1_00, 1_20, and 1_50.
Stefan Baader September 27, 2017

I have the same problem: the content by label macro seems to limit the output to 500, doesn't matter what higher limit you define in the macro.

Therefore I created a user macro to give me the entire list:

## Macro title: oce-content-by-label
## Macro has a body: N
##
## Developed by: Stefan Baader
## Date created: 27/09/2017
## Installed by: Stefan Baader

## @param Spacekey:title=Space Key|type=string|desc=Space Key
## @param Label:title=Label|type=string|desc=Label

#set($labelManager = $action.getLabelManager() )
#set($label = $labelManager.getLabel($paramLabel) )

#if(!$paramSpacekey ||  !$paramSpacekey == "")
  #set($spaceKey = $space.getKey() )
#else
  #set($spaceKey = $paramSpacekey)
#end

<h2>List all content of the space $spaceKey with the label $label </h2>

##set($listOfContent = $labelManager.getContentInSpaceForLabel(0, 600, $spaceKey, $label) )

## method deprecated, but works:
#set($listOfContent = $labelManager.getCurrentContentForLabelAndSpace($label, $spaceKey) )

$listOfContent.size() items are found:<br />


#set($i = 0)
<ol>
#foreach($item in $listOfContent)
  #set($i = $i+1)
  <li><a href="$req.contextPath/pages/viewpage.action?pageId=$item.getIdAsString()">$item.getTitle()</li>
#end
</ol>
<hr />
$i items



Mike Platt October 3, 2017

Thanks, this gives me something to work with.

I haven't tried to code user macros before - any idea how to adapt this to allow multiple labels and sort the list?

Comment

Log in or Sign up to comment
TAGS
AUG Leaders

Atlassian Community Events