Исходный код вики Приказы

Версия 4.1 от Admin Admin на 2024/05/12 20:45

Последние авторы
1 {{velocity}}
2 #set($pubRefs = $doc.getChildrenReferences())
3 #set($dateRefMap = {})
4 #foreach($pubRef in $pubRefs)
5 #set($pub = $xwiki.getDocument($pubRef))
6 #set($title = $pub.getTitle())
7 #set($dateStr = $title.substring(9, 19))
8 #set($date = $datetool.toDate("dd.MM.yyyy", $dateStr))
9 #set($discard = $dateRefMap.put($date, $pubRef))
10 #end
11 #set($sortedDates = $dateRefMap.keySet().toArray())
12 #sorttool.sort($sortedDates, false)
13 #foreach($date in $sortedDates)
14 #set($pubRef = $dateRefMap.get($date))
15 #set($pub = $xwiki.getDocument($pubRef))
16 #set($title = $pub.getTitle())
17 * [[$title>>$pubRef]]
18 #end
19 {{/velocity}}
20