Re: [xwiki-users] listing online users

2008-11-03 Thread Sergiu Dumitriu
BrianJones wrote: > This is quite an old post and has never been answered, but I would think that > this functionality would be beneficial to many users of XWiki. Is there > some sort of method of acheiving this result? Or are there plans on > developing a plugin/macro/application to utilize this

Re: [xwiki-users] drop down edit menu

2008-11-03 Thread Sergiu Dumitriu
[EMAIL PROTECTED] wrote: > thank you very much! i'm back in advanced mode... > > i was wondering about this button. since it is in my profile bar i was > thinking > this will effect my "profile edit mode". now it's clear to me why there is no > "real" response clicking on this button. > I gues

Re: [xwiki-users] ApplicationResources file

2008-11-03 Thread Sergiu Dumitriu
Gerritjan Koekkoek wrote: > Hi Sergiu, > > Does this Alpha-2 mean I can not use "au" for australian language > (like ApplicationResources_au.properties)? > How should I bring in nl, au, etc languages that are not out of the > box supported? It means that you cannot use ApplicationResources_en

Re: [xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread Sergiu Dumitriu
BrianJones wrote: > Sergiu, > > Thanks again, but just to clarify things, does TRUE==0 and FALSE==1? > --- = -1 False = 0 True = 1 And to answer another of your questions, --- means something like unselected, not answered, neither. I know it doesn't quite fit in the boolean logic, but otherwise

Re: [xwiki-users] drop down edit menu

2008-11-03 Thread mail
thank you very much! i'm back in advanced mode... i was wondering about this button. since it is in my profile bar i was thinking this will effect my "profile edit mode". now it's clear to me why there is no "real" response clicking on this button. eike On [Mon, 03.11.2008 18:28], Sergiu Dumitr

Re: [xwiki-users] listing online users

2008-11-03 Thread BrianJones
I thought this was the archive... :-/ Can you provide me with a link to what you're referring to? vmassol wrote: > > I have answered it in the past AFAIR. Please check the mailing list > archives > > Thanks > -Vincent > > -- View this message in context: http://n2.nabble.com/listing-onli

Re: [xwiki-users] listing online users

2008-11-03 Thread Vincent Massol
I have answered it in the past AFAIR. Please check the mailing list archives Thanks -Vincent On Nov 3, 2008, at 9:43 PM, BrianJones wrote: > > This is quite an old post and has never been answered, but I would > think that > this functionality would be beneficial to many users of XWiki. Is

Re: [xwiki-users] ApplicationResources file

2008-11-03 Thread Gerritjan Koekkoek
Hi Sergiu, Does this Alpha-2 mean I can not use "au" for australian language (like ApplicationResources_au.properties)? How should I bring in nl, au, etc languages that are not out of the box supported? On 1 nov 2008, at 22:59, Sergiu Dumitriu wrote: > Marius Dumitru Florea wrote: >> http://

Re: [xwiki-users] listing online users

2008-11-03 Thread BrianJones
This is quite an old post and has never been answered, but I would think that this functionality would be beneficial to many users of XWiki. Is there some sort of method of acheiving this result? Or are there plans on developing a plugin/macro/application to utilize this feature? emil-3 wrote:

Re: [xwiki-users] DocumentTree Plugin (Solution)

2008-11-03 Thread BrianJones
Helmut, Could you provide some examples of how you (or anyone) is using this plugin. I've downloaded and installed it, but can't seem to get it to do anything (mainly the .getSpaceDocumentTree() method). I've used the few examples on the the http://code.xwiki.org/xwiki/bin/view/Plugins/Documen

Re: [xwiki-users] Xwiki list

2008-11-03 Thread Vincent Massol
Hi, On Nov 3, 2008, at 3:52 PM, Mike A. wrote: > Hi! > How can I prevent a list-item from being breaked? I mean, if I want > to place some text, then an image and, finally, some message (#info(), > #alert() etc.) in a list-time, all would appear as the whole > list-item. > For now, I can only get

Re: [xwiki-users] DocumentTree Plugin (Solution)

2008-11-03 Thread Vincent Massol
Hi Helmut, I had already fixed that but you changed it so I reverted it back to the change I had done since the way you did it wasn't the correct way (the correct way is to edit in inline mode and specify the download page name). Thanks for helping anyway! :) Cheers, -Vincent On Nov 3, 20

Re: [xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread BrianJones
Sergiu, Thanks again, but just to clarify things, does TRUE==0 and FALSE==1? Sergiu Dumitriu-2 wrote: > > #if (!$object.getProperty("example_bool").value == 1) > > The property value is an integer, not a boolean. > -- View this message in context: http://n2.nabble.com/Trouble-assessing-bo

Re: [xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread Sergiu Dumitriu
Jerome Velociter wrote: > Hi, > > See below: > > BrianJones wrote: >> Hi all, >> >> I'm having trouble using Velocity to analyze the boolean value of a property >> of a class. >> >> For example, I have class X, with a property Y (I'll call this property >> 'example_bool' in the lower example code

Re: [xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread BrianJones
Jerome, Thanks for your suggestion, but it didn't seem to work... Jerome Velociter-2 wrote: > > Try to replace > > #if (!$object.get("example_bool")) > > by > > #if (!$object.getProperty("example_bool").value) > > Hope this helps (haven't tested, I admit) > > Jerome. > I tried using: #

Re: [xwiki-users] How to use SpaceManager Plugin

2008-11-03 Thread Jerome Velociter
Hello Ramon, Ramon Gomes Brandão wrote: > Hi friends, > > I'm running xwiki 1.6 last snapshot, on Jboss and Postgres. I've activated > on xwiki.cfg the SpaceManager plugin, simple adding the spacemanager > implementation on the plugins section of config file: > > xwiki.plugins=[...],com.xpn.xwiki.

Re: [xwiki-users] Issue on Registration

2008-11-03 Thread Jerome Velociter
Hello, syam_kg wrote: > Hi > I am facing a problem with user registration. An user registers by putting > all the required fields and he gets a page saying that 'Registration is > successfull'. A validation email is also been send to him. If he tries to > login without activation, XWiki logs him i

Re: [xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread Jerome Velociter
Hi, See below: BrianJones wrote: > Hi all, > > I'm having trouble using Velocity to analyze the boolean value of a property > of a class. > > For example, I have class X, with a property Y (I'll call this property > 'example_bool' in the lower example code) which is of type 'Boolean'. I've > con

Re: [xwiki-users] drop down edit menu

2008-11-03 Thread Sergiu Dumitriu
[EMAIL PROTECTED] wrote: > Hi, > > i'm working with xwiki 1.5 and i always used the ajax drop down menu to edit > access rights on a photo album page (i found no other way to get to the rights > editor). > > after i changed some rights (but to a different user) the drop down menu > disappeared.

[xwiki-users] Trouble assessing boolean property value of an object

2008-11-03 Thread BrianJones
Hi all, I'm having trouble using Velocity to analyze the boolean value of a property of a class. For example, I have class X, with a property Y (I'll call this property 'example_bool' in the lower example code) which is of type 'Boolean'. I've configured this property to use radio buttons so th

[xwiki-users] Xwiki list

2008-11-03 Thread Mike A.
Hi! How can I prevent a list-item from being breaked? I mean, if I want to place some text, then an image and, finally, some message (#info(), #alert() etc.) in a list-time, all would appear as the whole list-item. For now, I can only get text + image or text + message. I do use a macro for an imag

[xwiki-users] Excel Plugin not working

2008-11-03 Thread hel-o
Hi, trying to get the Excel-Plugin to work. I followed the intructions (hope so) but I it doesn't seem to work. XWiki-Enterprises 1.6.1 Java-Version 1.6.0-b09 Excel Plugin 1.0-jdk16 Java Excel API 2.6.9 The Excel file was created with Office 2007 and saved http://n2.nabble.com/file/n1449684/er

Re: [xwiki-users] DocumentTree Plugin (Solution)

2008-11-03 Thread hel-o
The Documentation has been updated and the Plugin-Download-Page is linked now. http://code.xwiki.org/xwiki/bin/view/Plugins/DocumentTreePluginDownloads The Plugin you can download there is working. Helmut Florian Rhomberg wrote: > > Hi! > I have the same problem when I tried to install the p

Re: [xwiki-users] Attachments in a new window

2008-11-03 Thread Marius Dumitru Florea
If you really want to, then edit templates/attachmentsinline.vm, search for the line that contains "download" and add to the anchor target="_blank". Hope this helps, Marius Edward Laptop wrote: > Dear All > > I want to set my xwiki so that when you press on an attachment it opens in a > new win

[xwiki-users] drop down edit menu

2008-11-03 Thread mail
Hi, i'm working with xwiki 1.5 and i always used the ajax drop down menu to edit access rights on a photo album page (i found no other way to get to the rights editor). after i changed some rights (but to a different user) the drop down menu disappeared. I reverted my changes but i could not m

[xwiki-users] Attachments in a new window

2008-11-03 Thread Edward Laptop
Dear All I want to set my xwiki so that when you press on an attachment it opens in a new window. How would I do this please? thanks Edward ___ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users

[xwiki-users] Issue on Registration

2008-11-03 Thread syam_kg
Hi I am facing a problem with user registration. An user registers by putting all the required fields and he gets a page saying that 'Registration is successfull'. A validation email is also been send to him. If he tries to login without activation, XWiki logs him in and gives a message 'Your acco