Changes for page Children Macro

Last modified by Antony Desmeaux on 2025/03/15 08:55

From version 1.1
edited by Antony Desmeaux
on 2023/04/16 13:22
Change comment: Install extension [org.xwiki.platform:xwiki-platform-index-tree-macro/14.10.8]
To version 3.1
edited by Antony Desmeaux
on 2025/03/15 08:55
Change comment: Install extension [org.xwiki.platform:xwiki-platform-index-tree-macro/17.1.0]

Summary

Details

XWiki.WikiMacroClass[0]
Macro code
... ... @@ -1,3 +1,5 @@
1 1  {{velocity}}
2 -{{documentTree root="document:" /}}
2 +## Escape special characters in the macro parameter value.
3 +#set ($sort = $xcontext.macro.params.sort.replaceAll('([~"])', '~$1'))
4 +{{documentTree root="document:" sortDocumentsBy="$!sort" /}}
3 3  {{/velocity}}
XWiki.WikiMacroParameterClass[0]
Parameter name
... ... @@ -1,0 +1,1 @@
1 +sort
Parameter description
... ... @@ -1,0 +1,1 @@
1 +The document field used to sort the child documents, followed optionally by the sort order. E.g.: 'title' or 'date:desc'.
Parameter type
... ... @@ -1,0 +1,1 @@
1 +org.xwiki.index.tree.internal.macro.DocumentSort
Parameter mandatory
... ... @@ -1,0 +1,1 @@
1 +No