Změny dokumentu Macro - changedpages1 - forTest
Naposledy upravil David Brazda 28.04.2021 07:58
Popis verze:
Update average rating
Přehled
-
Na stránce změněno: (1 změněno, 0 přidáno, 0 odstraněno)
-
Objects (1 změněno, 0 přidáno, 0 odstraněno)
Rozpis
- Na stránce změněno:
-
- Obsah
-
... ... @@ -2,5 +2,4 @@ 2 2 3 3 **for test just on this wiki** 4 4 5 -{{changedpages1/}} 6 - 5 +{{changedpages1 limit="10"/}}
- XWiki.WikiMacroClass[0]
-
- Macro code
-
... ... @@ -1,7 +1,10 @@ 1 1 {{velocity}} 2 2 ##fetches last 6 created pages in 30days 3 3 #set($howManyDays = 30) 4 -#set($limit = 5) 4 +#set($limit = $xcontext.macro.params.get('limit')) 5 +#if (!$limit) 6 + #set($limit = 5) 7 +#end 5 5 #set($fromDate = $datetool.systemCalendar) 6 6 #set($discard = $fromDate.add(7,-$howManyDays)) 7 7 #set ($list = $services.query.xwql('where doc.creationDate > :date and doc.hidden = 0 order by doc.creationDate desc').bindValue('date', $datetool.toDate($fromDate)).setLimit($limit).execute())