Исходный код вики Материалы регионов - участников
Версия 1.13 от Admin Admin на 2024/02/27 16:41
Последние авторы
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{velocity}} | ||
| 2 | #set($sortLetter = 'A') | ||
| 3 | #set($isFirstPub = true) | ||
| 4 | #set($pubRefs = $doc.getChildrenReferences()) | ||
| 5 | #foreach($pubRef in $pubRefs) | ||
| 6 | #set($pub = $xwiki.getDocument($pubRef)) | ||
| 7 | #set($title = $pub.getTitle()) | ||
| 8 | #if(!$title.length().equals(0)) | ||
| 9 | #if($title.charAt(0).equals($sortLetter)) | ||
| 10 | #if($isFirstPub) | ||
| 11 | * $sortLetter | ||
| 12 | #set($isFirstPub = false) | ||
| 13 | #end | ||
| 14 | ** [[$title>>$pubRef]] | ||
| 15 | #else | ||
| 16 | #set($sortLetter = $title.charAt(0)) | ||
| 17 | #set($isFirstPub = false) | ||
| 18 | * $sortLetter | ||
| 19 | ** [[$title>>$pubRef]] | ||
| 20 | #end | ||
| 21 | #end | ||
| 22 | #end | ||
| 23 | {{/velocity}} |