[xwiki-users] Scheduler not working on virtual Wiki

2010-08-31 Thread Thomas Hoeschele
Hallo, I encountered a problem with the scheduler application. I call a groovy skript which should create a new Document. It works fine with the Main Wiki for the scheduler application, it works for virtual wiki's if I call the script from a Document. However, when I create a scheduler job

Re: [xwiki-users] FWD: TAG Application with international characters

2010-08-31 Thread Alex Busenius
Hi, Could you provide more details? OS, XWiki version (and whether it was upgraded from later version), browser version, which DB... Standard Jetty+HSQLDB on FF works fine for me with índio as tag. Regards, Alex On 08/30/2010 09:36 PM, Ramon Gomes Brandão - SERINT wrote: Hi, In

[xwiki-users] XWiki Variable's list

2010-08-31 Thread abrante
Where can I see the name of all the default variables used by xwiki, for example, the user name, e mail, etc. Thanks a lot -- View this message in context: http://xwiki.475771.n2.nabble.com/XWiki-Variable-s-list-tp5481740p5481740.html Sent from the XWiki- Users mailing list archive at

Re: [xwiki-users] Help needed with customizing of Toucan skin

2010-08-31 Thread Kaya Saman
Many thanks for all the advise and tips Raluca!! I really appreciate that :-) Best regards, Kaya On 30/08/2010 10:50, Raluca Stavro wrote: Hello, On Sat, Aug 28, 2010 at 4:21 PM, Kaya Samankayasa...@gmail.com wrote: Ok I actually managed to sort this out First up I played

[xwiki-users] How do I for order a data list in xwiki?

2010-08-31 Thread abrante
I have the following data that I recover from the XWiki data base, but I need order it. Thanks in advance #set ($list = $xwiki.tag.getDocumentsWithTag($tag)) div div id=dashboardleft div id=dashboardleftcontent #displayDocumentList($list true

[xwiki-users] Mindmap macro

2010-08-31 Thread Maxime Mathieu
I just discovered the Freemind macro and I'm very happy. This macro displays an attached freemind file in a wiki page using a flash component. It works fine, and the installation is straightforward. Thank you Fabio Mancinelli. A valuable enhancement would be to specify the height of the map as a

Re: [xwiki-users] XWiki Variable's list

2010-08-31 Thread Caleb James DeLisle
The user name is available through $xcontext.getUser() The other user information is not stored in variables, you can get it by loading the user's document and getting the user object from it: #set($userObj = $xwiki.getDocument($xcontext.getUser()).getObject('XWiki.XWikiUsers'))

Re: [xwiki-users] How do I for order a data list in xwiki?

2010-08-31 Thread Caleb James DeLisle
You may want to look at the velocity SortTool. http://velocity.apache.org/tools/releases/1.4/javadoc/org/apache/velocity/tools/generic/SortTool.html Depending on what value you want to sort by, you might need to replace getDocumentsWithTag with a custom query. Caleb abrante wrote: I have

[xwiki-users] administering users in a XWiki Farm

2010-08-31 Thread [Ricardo Rodriguez] eBioTIC.
Hi, xwikiers! I am sure I am missing some clear point, but I am not able to find documentation on how administer users in a XWiki Farm. My basic concern relates with global users being included in virtual wikis' groups. I've reached this document...

Re: [xwiki-users] Help needed with customizing of Toucan skin

2010-08-31 Thread Raluca Stavro
On Tue, Aug 31, 2010 at 12:27 PM, Kaya Saman kayasa...@gmail.com wrote: Many thanks for all the advise and tips Raluca!! You're welcome! :) Raluca. I really appreciate that :-) Best regards, Kaya On 30/08/2010 10:50, Raluca Stavro wrote: Hello, On Sat, Aug 28, 2010 at 4:21 PM, Kaya

[xwiki-users] RES: FWD: TAG Application with international characters

2010-08-31 Thread Ramon Gomes Brandão - SERINT
Hi Alex, Sorry, I forgot to mention this information. I'm using a clean install of the latest build of XWiki Enterprise (2.4.30451), running on JBoss 4.3 and MySQL 5.0, with Apache 2.0. Using Firefox 3.6.8 and IE 8. Something related to char encoding of DB/JBoss/Apache? Which one? Regards,

[xwiki-users] SOLVED: RES: FWD: TAG Application with internationalcharacters

2010-08-31 Thread Ramon Gomes Brandão - SERINT
Hi all, I've found the issue: it's na Apache/JBoss charset configuration: on JBoss, just add URIEncoding=UTF-8 to Connector section and on Apache, add AddDefaultCharset utf-8 to the VirtualHost section. It's working now. Thanks anyway. Ramon Gomes Brandão -Mensagem original-

Re: [xwiki-users] SOLVED: RES: FWD: TAG Application with internationalcharacters

2010-08-31 Thread Thomas Mortagne
Hi, Would be great if you could add something about it on http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Encoding#HTomcat. 2010/8/31 Ramon Gomes Brandão - SERINT ramon.bran...@tjdft.jus.br: Hi all, I've found the issue: it's na Apache/JBoss charset configuration: on JBoss, just add

Re: [xwiki-users] XWiki Variable's list

2010-08-31 Thread Raluca Stavro
Hello, The XWiki default variables are defined in 'xwikivars.vm' template under '/xwiki/templates/' directory ( http://servername/xwiki/templates/xwikivars.vm ). You can also check out the 'macros.vm' template. You'll find there a lot of useful Velocity macros. And there is also the XWiki

Re: [xwiki-users] How do I for order a data list in xwiki?

2010-08-31 Thread Raluca Stavro
Hello, An addition to Caleb's indications is the following link: http://platform.xwiki.org/xwiki/bin/view/DevGuide/Scripting#HVelocitySpecificInformation . So, this is what you need to do: #set ($sortedList = $sorttool.sort($list)) ... #displayDocumentList($sortedList true $blacklistedSpaces)