Re: [xwiki-users] Get the TEXT of a property instead of the value

2014-09-04 Thread Jason Clemons
Such a simple solution, thank you so much for the response. > On Sep 4, 2014, at 12:07 AM, "Jason Clemons" wrote: > > Thanks, I'll give that a go in the morning and post back > >> On Sep 4, 2014, at 12:05 AM, "Jean SIMARD" wrote: >> >> Try this. >> >> Instead of doing >> >> {{velocity}} >>

Re: [xwiki-users] Report - testing 6.2-milestone-2

2014-09-04 Thread vinc...@massol.net
Hi Andrea, On 3 Sep 2014 at 09:26:34, Andreea Popescu (andreea.pope...@xwiki.com(mailto:andreea.pope...@xwiki.com)) wrote: > Greetings, > > During the last few days we have conducted smoke testing (on Firefox 31 and > in several instances on IE8 and IE9, within the “Fixed for” section) as > we

Re: [xwiki-users] LDAP GROUPS

2014-09-04 Thread Jason Clemons
Our corporate AD policy prevents nesting groups..so I'll just have to create a single group to add everyone to, not complex. Thanks for response :) > On Sep 4, 2014, at 12:09 AM, "Thomas Mortagne" > wrote: > > Note that it's not a very complex contribution if you are motivated ;) > >> On Thu

Re: [xwiki-users] LDAP GROUPS

2014-09-04 Thread Thomas Mortagne
Note that it's not a very complex contribution if you are motivated ;) On Thu, Sep 4, 2014 at 9:03 AM, Jason Clemons wrote: > Bummer, thanks anyway for the answer :) > >> On Sep 4, 2014, at 12:02 AM, "Thomas Mortagne" >> wrote: >> >> No that specific property supports only one group (see >> htt

Re: [xwiki-users] Get the TEXT of a property instead of the value

2014-09-04 Thread Jason Clemons
Thanks, I'll give that a go in the morning and post back > On Sep 4, 2014, at 12:05 AM, "Jean SIMARD" wrote: > > Try this. > > Instead of doing > > {{velocity}} > #set($d = $xwiki.getDocument('Sandbox.YourDocument')) > #set($obj = $d.getObject('Sandbox.YourClass')) > $obj.getProperty('fiel

Re: [xwiki-users] Get the TEXT of a property instead of the value

2014-09-04 Thread Jean SIMARD
Try this. Instead of doing {{velocity}} #set($d = $xwiki.getDocument('Sandbox.YourDocument')) #set($obj = $d.getObject('Sandbox.YourClass')) $obj.getProperty('field1').getValue() {{/velocity}} do this {{velocity}} #set($d = $xwiki.getDocument('Sandbox.YourDocument')) $d.display(

Re: [xwiki-users] LDAP GROUPS

2014-09-04 Thread Jason Clemons
Bummer, thanks anyway for the answer :) > On Sep 4, 2014, at 12:02 AM, "Thomas Mortagne" > wrote: > > No that specific property supports only one group (see > http://jira.xwiki.org/browse/XWIKI-2518). Usually the workaround is to > have a group in LDAP side containing other LDAP groups and put

Re: [xwiki-users] LDAP GROUPS

2014-09-04 Thread Thomas Mortagne
No that specific property supports only one group (see http://jira.xwiki.org/browse/XWIKI-2518). Usually the workaround is to have a group in LDAP side containing other LDAP groups and put this meta group in xwiki.cfg. On Wed, Sep 3, 2014 at 9:32 PM, Jason Clemons wrote: > Hello all, > > Is it po