Paul Libbrecht wrote:
hello,
what would be the query to obtain all the documents that a user has
been editing, at any revision?
thanks
paul
Hi Paul
Could the code in My Recent Modifications panel help you?
#set($recentDocs = $xwiki.searchDocuments("where 1=1 and
doc.author='$context.user' order by doc.date desc", 5, 0))
#if($recentDocs.size() > 0 || $showEmptyPanels)
#panelheader($msg.get("My Recent Modifications"))
#set($first = true)
#foreach($docname in $recentDocs)
#set($rdoc = $xwiki.getDocument($docname).getTranslatedDocument())
#if($first == true)
#set($first = false)
#else
<span class="pitemseparator"> | </span>
#end
<span class="panelitem"><a
href="$rdoc.getURL("view")">$rdoc.displayTitle</a></span>
#end
#panelfooter()
#end
HTH,
Ricardo
--
Ricardo RodrÃguez
Your EPEC Network ICT Team