Hi, On Sep 3, 2013, at 5:26 PM, "Volker.Lapczynski" <vola@ahus.no> wrote:
This is working on XWiki Enterprise 5.2-milestone-1:
Cool. Maybe you could contribute it as a snippet on extensions.xwiki.org? Thanks -Vincent
{{velocity}} #set($sql = ("where doc.fullName not in (select doc.fullName from XWikiDocument doc, BaseObject as tagObj, DBStringListProperty as tags join tags.list tag where doc.fullName = tagObj.name and tagObj.className = 'XWiki.TagClass' and tagObj.id = tags.id.id and tags.id.name='tags' and tag <> '')order by doc.space asc ") ) #set ($list = $xwiki.searchDocuments($sql)) #foreach($item in $xwiki.searchDocuments($sql)) #set ($recentDoc = $xwiki.getDocument($item).getTranslatedDocument()) ## We use HTML here because we don't have a tool to escape wiki syntax in document title. |$recentDoc.getSpace()|{{html}} $escapetool.xml($recentDoc.plainTitle) <$recentDoc.getURL()> {{/html}} #end {{/velocity}}
Thank You!