Изменения документа HRlink. Новости об обновлениях
Редактировал(а) HRlink 22.08.2025
Сводка
-
Свойства страницы (1 изменено, 0 добавлено, 0 удалено)
Подробности
- Свойства страницы
-
- Содержимое
-
... ... @@ -1,10 +1,15 @@ 1 1 {{velocity}} 2 -#set($category = "Blog.HRlink.-Novosti-ob-obnovleniiakh-.WebHome") 3 -#set($query = ", BaseObject as obj, StringProperty as cat where obj.name = doc.fullName and obj.className = 'Blog.BlogPostClass' and cat.id.id = obj.id and cat.name = 'category' and cat.value = :category order by doc.creationDate desc") 4 -#set($results = $services.query.hql($query).bindValue('category', $category).setLimit(15).execute()) 2 +#set($query = "select distinct post.category from doc.object(Blog.BlogPostClass) as post order by post.category") 3 +#set($categories = $services.query.xwql($query).execute()) 5 5 6 -#foreach($docName in $results) 7 - #set($doc = $xwiki.getDocument($docName)) 8 - #displayBlogPost($doc) 5 +<h3>Все категории, используемые в блогах:</h3> 6 +<ul> 7 +#foreach($cat in $categories) 8 + <li><strong>"$cat"</strong></li> 9 9 #end 10 +</ul> 11 + 12 +#if($categories.isEmpty()) 13 + <p>Не найдено ни одной категории или нет блог-постов.</p> 14 +#end 10 10 {{/velocity}}