Modifications pour le document Confluence bridge for Details Summary (Page properties report)
Modifié par Admin le 21/07/2025 - 09:06
Depuis la version 3.1
modifié par Admin
sur 08/11/2024 - 07:54
sur 08/11/2024 - 07:54
Commentaire de modification :
Install extension [com.xwiki.pro:xwiki-pro-macros-confluence-bridges-ui/1.23.2]
À la version 7.1
modifié par superadmin
sur 06/04/2025 - 00:00
sur 06/04/2025 - 00:00
Commentaire de modification :
Install extension [com.xwiki.pro:xwiki-pro-macros-confluence-bridges-ui/1.26.14]
Résumé
-
Propriétés de la Page (2 modifications, 0 ajouts, 0 suppressions)
-
Objets (1 modifications, 0 ajouts, 0 suppressions)
Détails
- Propriétés de la Page
-
- Auteur du document
-
... ... @@ -1,1 +1,1 @@ 1 - xwiki:XWiki.admin1 +XWiki.superadmin - Contenu
-
... ... @@ -11,7 +11,7 @@ 11 11 |**cql**|A query written in the Confluence Query Language (CQL) syntax defining the list of documents to show. [[See the documentation>>https://extensions.xwiki.org/xwiki/bin/view/Extension/CQL/#HSyntax]].|If labels is not given|(% style="width:27px" %)(empty)|(% style="width:334px" %){{{label = "examplelabel" and space = currentSpace ( )}}} 12 12 |**labels**|A list of tags to use, separated by a comma or a space. This value is ignored if the cql parameter is set. Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|If cql is not given|(% style="width:27px" %)(empty)|(% style="width:334px" %)exampletag 13 13 |**operator**|Whether all the tags should match (AND), or any (OR). This value is ignored if the cql parameter is set. Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|No|(% style="width:27px" %)OR|(% style="width:334px" %)AND 14 -|**max**|Maximum number of results. Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|No|(% style="width:27px" %) (unset)|(% style="width:27px" %)1514 +|**max**|Maximum number of results. Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|No|(% style="width:27px" %)1000|(% style="width:27px" %)15 15 15 |**sort**|What to sort on. The only supported values are "modified", "creation" and "title" for now. Ignored if an ##order by## clause is present in the cql parameter. Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|No|(% style="width:27px" %)(unset)|(% style="width:27px" %)title 16 16 |**reverse**|Whether to reverse the sort (true) or not (false). Note: this parameter doesn't exist in Confluence, it's an XWiki addition.|No|(% style="width:27px" %)false|(% style="width:27px" %)true 17 17 |**firstcolumn**|A custom title for the document name column|No|(% style="width:27px" %)Title|(% style="width:334px" %)Book
- XWiki.WikiMacroClass[0]
-
- Code de la macro
-
... ... @@ -22,7 +22,7 @@ 22 22 #set ($showCreator = "$!xcontext.macro.params.showCreator") 23 23 #set ($showCreator = $showCreator.equalsIgnoreCase("true")) 24 24 #set ($showAnyMetadata = $showLastModified || $showPageLabels || $showCreator) 25 - #set ($details = $services.confluence.details.getDetails("$!xcontext.macro.params.id", "$!xcontext.macro.params.headings", $results)) 25 + #set ($details = $services.confluence.details.getDetails("$!xcontext.macro.params.id", "$!xcontext.macro.params.headings", $results, "$!xcontext.macro.params.sortBy", "$!xcontext.macro.params.reverseSort" == "true")) 26 26 #if ($details.size() < 2) 27 27 $services.localization.render('rendering.macro.detailssummary.noresults') 28 28 #else ... ... @@ -30,7 +30,7 @@ 30 30 #if ($foreach.first) 31 31 |=$title## 32 32 #foreach ($cell in $row) 33 - |=$ services.rendering.escape($cell, $xwiki.currentContentSyntaxId)##33 + |=$cell## 34 34 #end## 35 35 #if ($showLastModified)|=$services.localization.render('rendering.macro.detailssummary.lastModified')#end## 36 36 #if ($showCreator)|=$services.localization.render('rendering.macro.detailssummary.creator')#end## ... ... @@ -41,11 +41,12 @@ 41 41 #set ($d = $xwiki.getDocument($row.get(0))) 42 42 #end## 43 43 #foreach ($cell in $row) 44 - |#if ($foreach.first)[[$cell]]#{else}$ services.rendering.escape($cell, $xwiki.currentContentSyntaxId)#end##44 + | ((( #if ($foreach.first)[[$cell]]#{else}$cell#end ))) ## 45 45 #end## 46 46 #if ($showLastModified)|$xwiki.formatDate($d.getDate())#end## 47 47 #if ($showCreator)|#if ($d.getCreator() == "XWiki.superadmin")superadmin#else[[$d.getCreator()]]#end#end## 48 - #if ($showPageLabels)|#showTags($d)#end| 48 + #if ($showPageLabels)|#showTags($d)#end## 49 + 49 49 #end 50 50 #end 51 51