Hi,

The script works fine;
One modification required (#if($counter > 0) ==> #if($counter == 0)

But this only works when user login is on homepage, in our use cases there are 
also other pages where a guest can decide to login
Is there a vm script that is always triggered when user does login?

Gerritjan

Op 24 okt 2010, om 01:52 heeft [Ricardo Rodriguez] eBioTIC. het volgende 
geschreven:

Hi,

Gerritjan Koekkoek wrote:
> Hi,
> 
> We would like to, conditionally,  redirect users who log in to their profile 
> page. (in our case; XWiki.<username>)
> The condition is: User is not in ANY OTHER GROUP then XWikiAllGroup.
> 
> How can I do this most elegantly, modifying as little as possible of the 
> standard pages that come with a distribution of XWIKI
> 
> 
> 
This is not elegant, but I think it works:

#set($counter = 0)
#set($user = $xwiki.getUser())
#set($userContext = $context.user)

#set($query = ", BaseObject as obj, StringProperty as prop where 
doc.fullName = obj.name and obj.className='XWiki.XWikiGroups' and 
doc.fullName <> 'XWiki.XWikiGroupTemplate' and doc.fullName <> 
'XWiki.XWikiAllGroup' order by doc.fullName asc")

#set($results=$xwiki.searchDocuments($query))
<p/>
#foreach($item in $results)
 #if($user.isUserInGroup($item))
   #set($counter = $counter+1)
 #end
#end

#if($counter > 0) 
$response.sendRedirect($xwiki.getURL($userContext))
#end

You could copy and paste in your WebHome or create an ad hoc document 
and use #includeInContext('YourSpace.YourDocument') to include it in 
your WebHome.

HTH,

Ricardo

-- 
Ricardo Rodríguez
CTO
eBioTIC.
Life Sciences, Data Modeling and Information Management Systems

_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to