Z verze
změnil(a) David Brazda
k 01.03.2021 11:04
Na verzi < 47.1 >
změnil(a) David Brazda
k 01.03.2021 11:06
< >
Popis verze: Update average rating

Přehled

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())