[xwiki-users] Upgrade Groovy Version?

2008-03-26 Thread Frank Haefemeier
Hi there, I am still testing my migration from 0.9 to 1.3. During this test I got an exception in a groovy code part. This exception is described in http://jira.codehaus.org/browse/GROOVY-1406. Are there any plans to upgrade to a newer version? As I can see xwiki use 1.0-rc6. I upgrade by mysel

Re: [xwiki-users] special rights

2008-03-26 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Hi Gabriela, Gabriela Radu wrote: > i was talking about a menu that i create inside...some links actually. and i > don't want the user to be able to edit anything there. I more or less can figure out what you need. Our take was to use a space as metaphor for a what we could call a "document" (a

Re: [xwiki-users] Categories or Tags

2008-03-26 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
[EMAIL PROTECTED] wrote: > I am looking for the ability to categorize entries in xwiki. Has anyone > done this? How do I go about making this happen? > > Thanks! > Jose > ___ > users mailing list > users@xwiki.org > http://lists.xwiki.org/mailman/listi

Re: [xwiki-users] Help with custom display

2008-03-26 Thread [Ricardo Rodriguez] Your EPEC Network ICT Team
Hi! JavaCupiX wrote: > Thanks a lot... I start getting the whole thing Thus, please, could you create this FAQ entry? I am afraid that I am far beyond you are! Thanks. Cheers, Ricardo -- Ricardo Rodríguez Your EPEC Network ICT Team ___ users mailin

[xwiki-users] Categories or Tags

2008-03-26 Thread JLarrazabal
I am looking for the ability to categorize entries in xwiki. Has anyone done this? How do I go about making this happen? Thanks! Jose ___ users mailing list users@xwiki.org http://lists.xwiki.org/mailman/listinfo/users

Re: [xwiki-users] Help with custom display

2008-03-26 Thread JavaCupiX
Thanks a lot... I start getting the whole thing On 3/26/08, Sergiu Dumitriu <[EMAIL PROTECTED]> wrote: > > JavaCupiX wrote: > > Yes, this is what I was looking for, but how do I bring up the editor? > For > > example in the case of a Wysiwyg edit. > > > You shouldn't... You should call $doc.displa

Re: [xwiki-users] Help with custom display

2008-03-26 Thread Sergiu Dumitriu
JavaCupiX wrote: > Yes, this is what I was looking for, but how do I bring up the editor? For > example in the case of a Wysiwyg edit. You shouldn't... You should call $doc.display($name, "edit", $object) > On 3/26/08, Guillaume Lerouge <[EMAIL PROTECTED]> wrote: >> Hi, >> >> >> Thanks to Sergui

Re: [xwiki-users] Help with custom display

2008-03-26 Thread JavaCupiX
Yes, this is what I was looking for, but how do I bring up the editor? For example in the case of a Wysiwyg edit. On 3/26/08, Guillaume Lerouge <[EMAIL PROTECTED]> wrote: > > Hi, > > > Thanks to Sergui who pointed out the different states (edit, view,...) I > > made the following changes to my cod

Re: [xwiki-users] Help with custom display

2008-03-26 Thread Guillaume Lerouge
Hi, Thanks to Sergui who pointed out the different states (edit, view,...) I > made the following changes to my code so that you still be able to edit a > property with a custom display so here it is for the String property type. > I'm wondering if there is such a thing like $object.getEditor() bu

Re: [xwiki-users] Help with custom display

2008-03-26 Thread JavaCupiX
Thanks to Sergui who pointed out the different states (edit, view,...) I made the following changes to my code so that you still be able to edit a property with a custom display so here it is for the String property type. I'm wondering if there is such a thing like $object.getEditor() but couldn't

Re: [xwiki-users] special rights

2008-03-26 Thread Gabriela Radu
i was talking about a menu that i create inside...some links actually. and i don't want the user to be able to edit anything there. Take care , Gabriela Radu :) www.gabrielaradu.com - Original Message From: Sergiu Dumitriu <[EMAIL PROTECTED]> To: XWiki Users Sent: Wednesday,

Re: [xwiki-users] Help with custom display

2008-03-26 Thread javacupix
Sure, feel free to use it, as I consider myself as a big noob in the xwiki universe I wasn't sure about giving it a FAQ entry [Ricardo Rodríguez] wrote: > > Thanks! Don't you think is worth a FAQ entry for this issue? I will create > one based on your example if you don't mind. Thanks! > > Bes

Re: [xwiki-users] special rights

2008-03-26 Thread Sergiu Dumitriu
Gabriela Radu wrote: > hi. > i was wondering if xwiki can be managed in that way that i can give users > rights for some part of the page. for instance : they can edit the text but > not the menu in the page. > Thank you. > What menu? There's no menu inside the page... -- Sergiu Dumitriu htt

Re: [xwiki-users] Help with custom display

2008-03-26 Thread [Ricardo Rodríguez]
Thanks! Don't you think is worth a FAQ entry for this issue? I will create one based on your example if you don't mind. Thanks! Best, Ricardo javacupix wrote: > > Ok, I got it, you can use Velocity Scripting in the Custom Display > Property to render the display in the way you want it... >

Re: [xwiki-users] Help with custom display

2008-03-26 Thread Sergiu Dumitriu
javacupix wrote: > Ok, I got it, you can use Velocity Scripting in the Custom Display Property > to render the display in the way you want it... > > For example here is the code to a "custom display" so the value of the > property is displayed in bold and red. > color=red>$doc.getValue

[xwiki-users] [ANN] Skypecast about the new XWiki Rendering Architecture (31st March, 14:00 GMT+1)

Hi everyone, I'd like to present to everyone the work I've been doing on the new rendering architecture for XWiki. Since this is going to be integrated soon in the XWiki Core I'd like to get some feedback first. Note that it's a technical discussion but open to everyone interested. It's best

Re: [xwiki-users] comments improvement

Joao Henrique Silva Santos wrote: > I would like to implement the possibility to reply to comments, and > the corresponding cascading display. > > I assume this change, if possible, should be made on > templates/comments2.vm and/or templates/commentsinline.vm, but I'm a > bit lost. Has anything si

Re: [xwiki-users] comments improvement

Hi Joao, I would like to implement the possibility to reply to comments, and > the corresponding cascading display. > > I assume this change, if possible, should be made on > templates/comments2.vm and/or templates/commentsinline.vm, but I'm a > bit lost. Has anything similar been done? Where can

[xwiki-users] comments improvement

I would like to implement the possibility to reply to comments, and the corresponding cascading display. I assume this change, if possible, should be made on templates/comments2.vm and/or templates/commentsinline.vm, but I'm a bit lost. Has anything similar been done? Where can I learn more on how

Re: [xwiki-users] Help with custom display

Ok, I got it, you can use Velocity Scripting in the Custom Display Property to render the display in the way you want it... For example here is the code to a "custom display" so the value of the property is displayed in bold and red. $doc.getValue("DataName") Where DataName is the name of my pr

[xwiki-users] special rights

hi. i was wondering if xwiki can be managed in that way that i can give users rights for some part of the page. for instance : they can edit the text but not the menu in the page. Thank you. Never

[xwiki-users] Poll Application

Is anybody working on Poll Application? As a user, I'll describe what would be nice to modify: 1) To add also select, text boxes and checkboxes, not "checkbox-like-links"to poll. If options would be a true select/check/text boxes, it wouldn't be neccessary to reload a page each time option is sele

Re: [xwiki-users] Custom Default Skin Everywhere, Except Login Page

On Mar 26, 2008, at 1:18 PM, [Ricardo Rodríguez] wrote: > > Hi Andrew, > > > Andrew Hughes-5 wrote: >> >> Thanks for this guys >> >> I'm happy to give this a go, and I will do so. What I am wondering >> for the >> greater community, is how this is reproducable over new versions of >> xwik

Re: [xwiki-users] Custom Default Skin Everywhere, Except Login Page

Hi Andrew, Andrew Hughes-5 wrote: > > Thanks for this guys > > I'm happy to give this a go, and I will do so. What I am wondering for the > greater community, is how this is reproducable over new versions of xwiki? > It seems that this is bound to the source vm. If I was to re-deploy xwiki

Re: [xwiki-users] Help with custom display

Hi! javacupix wrote: > > I'm pretty confused with the documentation around xWiki and struggle to > find infos on the "custom display" field in the property editor. A simple > example could clarify my questions: how do you (for example) use the > "custom display" field to display the content of

Re: [xwiki-users] Xwiki jmeter test

Hi! Sergiu Dumitriu-2 wrote: > > - if it can handle cookies, then visit > /xwiki/bin/login/XWiki/XWikiLogin?j_username=Admin&j_password=admin&j_rememberme=true > Sorry, I don't know what "to handle cookies" means here and I have no experience with jmeter, so perhaps this question is absurd.

Re: [xwiki-users] Synchronize two instances of XWiki Enterprise

Hi! Vitantonio Messa wrote: > > Hi, > > I'm pretty sure just a copy of the database is enough ;) > > Vito > Yeap! But be aware that some "information" could be stored in xwiki.cfg, templates or skins' folders. This information doesn't concern "contents", but if what you want is to have two

Re: [xwiki-users] Severe problem, can't login as admin, neither as superadmin

On Mar 26, 2008, at 11:07 AM, Joao Henrique Silva Santos wrote: > Since I'm not the administrator of my server, I cannot go and make > tomcat downgrades like that. I tried to download the jar you posted on > jira > (http://maven.xwiki.org/snapshots/com/xpn/xwiki/platform/xwiki-core/1.3-SNAPSHOT/

Re: [xwiki-users] Severe problem, can't login as admin, neither as superadmin

Since I'm not the administrator of my server, I cannot go and make tomcat downgrades like that. I tried to download the jar you posted on jira (http://maven.xwiki.org/snapshots/com/xpn/xwiki/platform/xwiki-core/1.3-SNAPSHOT/xwiki-core-1.3-20080313.231229-42.jar), but I got a 404. Is that jar stil

[xwiki-users] Google Summer of Code 2008

Hi everyone, If you're a student or if you know a good student then please consider joining the XWiki project for the Google Summer of Code 2008. All information and proposed projects are listed on http://tinyurl.com/332gep Pass the word around! Thanks -Vincent ___

Re: [xwiki-users] Synchronize two instances of XWiki Enterprise

Hi, I'm pretty sure just a copy of the database is enough ;) Vito uwesbr wrote: > Hi, > what is the best way to keep two instances (two different pc) synchronized. > Will it be enough to copy only the database= > > Regards, Uwe ___ users mailing li

[xwiki-users] Synchronize two instances of XWiki Enterprise

Hi, what is the best way to keep two instances (two different pc) synchronized. Will it be enough to copy only the database= Regards, Uwe -- View this message in context: http://www.nabble.com/Synchronize-two-instances-of-XWiki-Enterprise-tp16297082p16297082.html Sent from the XWiki- Users mai