Re: [xwiki-users] Livetable macro, custom classes, sorting

2010-03-08 Thread Jeremie BOUSQUET
Hi, I think I found it, at least a way to have it work in most cases ... In the $columnProperties parameter of the #livetable macro, you should now add explicitely a parameter class:MyClass for each column, where MyClass is the name of the class of the objects you want to show (the same as the

Re: [xwiki-users] Creating user using XML RPC....

2010-03-08 Thread Dilipkumar Jadhav
Hi Nithya, As Sergiu rightly said, an XWiki user is just another document/Page with a XWiki.XWikiUser object associated to it. Hope the following example helps you in creating users using XMLRPC. Please note that I have only been able to create a user. Setting the password is something I did not

[xwiki-users] How to add/ register a new user in xwiki through xmlrpc??

2010-03-08 Thread Nithya Vembu
Hi All, I am struggling in the user creation part of xwiki through xml rpc. This is my code snippet to create a new user in xwiki.. String url = http://sso.isupport.com/xwiki/xmlrpc/confluence;; String user = Admin; String

[xwiki-users] calendar plugin in myexwiki

2010-03-08 Thread Rune Hylleberg
Is the calendar plugin installed in myxwiki. If not are there any chance it might happen? I tried to install the calendar application but gets this output: $cparams.put(categories, $rqcategories) $cview.getHTMLCalendar($cparams, ) I hope someone can help me -Rune

Re: [xwiki-users] Problems logigging in

2010-03-08 Thread 2smart4u
hi there, found out what the problem was. so in case anyone else is caught in the same pitfall, here's the receipe to avoid the hassel: - precondition: you're installing xwiki as a war-file being deployed in your servlet-container in the docs is mentioned, that you have to use the

Re: [xwiki-users] Problems logigging in

2010-03-08 Thread 2smart4u
On Mon, Mar 8, 2010 at 2:51 PM, Vincent Massol vinc...@massol.net wrote: Actually you don't have to be logged in (unless a regression was introduced recently). I've always imported without being logged in in the past. I don't know what magic you're doing, but seems I'm not the only one

Re: [xwiki-users] Problems logigging in

2010-03-08 Thread Vincent Massol
On Mar 8, 2010, at 3:03 PM, 2smart4u wrote: On Mon, Mar 8, 2010 at 2:51 PM, Vincent Massol vinc...@massol.net wrote: Actually you don't have to be logged in (unless a regression was introduced recently). I've always imported without being logged in in the past. I don't know what

Re: [xwiki-users] Problems logigging in

2010-03-08 Thread 2smart4u
On Mon, Mar 8, 2010 at 3:30 PM, Vincent Massol vinc...@massol.net wrote: Just talked to Thomas Mortagne who confirmed we have a regression and it's not working any more. So this will get fixed ASAP (I guess in XE 2.2.3). Thanks and sorry about the problem well, no problem, at least there's

[xwiki-users] How to add/ register a new user in xwiki through xmlrpc??

2010-03-08 Thread Dilipkumar Jadhav
Hi Nithya, Looks like in your example you are using Apache XMLRPC directly. In the example that I provided I have used the client side proxy for Java which is much easier and less verbose than the other method. Please run this example and let me know if it works out for you... I am quite