Re: [xwiki-users] Problem showing Menu Application on XE6.3

2014-12-18 Thread Ecaterina Moraru (Valica)
Hi Ramon, I've just installed the Menu Application 6.3 on a XWiki Enterprise 6.3 and it worked without a problem. On Menu space, I've created a new menu entry, kept the default structure and it worked. Just make sure that for the 'Menu Display Location' property you set 'After the Page Header'

Re: [xwiki-users] Line wrapping in Code Macro

2014-12-18 Thread vinc...@massol.net
Hi, On 17 Dec 2014 at 19:59:53, Jamal (ram...@gmail.com(mailto:ram...@gmail.com)) wrote: Hi, Is there a way to force line wrapping in the Code macro? Right now, long lines simply extend outside the bounds of the box. The code macros displays the code exactly as it is. However you can

[xwiki-users] Using a local class within a wiki page

2014-12-18 Thread Bryn Jeffries
Why does a page containing just the following produce no output?: {{groovy}} class Callee { void hello() { println hello, world } } c = new Callee() c.hello() {{/groovy}} I have programming rights, and running scripts in general works fine. It's just when I try to invoke a method from

Re: [xwiki-users] Line wrapping in Code Macro

2014-12-18 Thread Jamal
Thanks for the reply, Vincent. That was my first thought, but here's the weird thing: when I add CSS styles that way, the code block ends up getting rendered as a paragraph (P tag) with the style applied in a SPAN, instead of being rendered in a DIV as it normally is. This changes the look

Re: [xwiki-users] Using a local class within a wiki page

2014-12-18 Thread vinc...@massol.net
On 18 Dec 2014 at 22:10:54, Bryn Jeffries (bryn.jeffr...@sydney.edu.au(mailto:bryn.jeffr...@sydney.edu.au)) wrote: Why does a page containing just the following produce no output?: {{groovy}} class Callee { void hello() { println hello, world } } c = new Callee() c.hello()

Re: [xwiki-users] Using a local class within a wiki page

2014-12-18 Thread vinc...@massol.net
Ok I think I know... Actually the message is printed in the console. You see something in the page only if you print in the global scope because this is what gets returned by script evaluation. Calling “println” in a class doesn’t return anything in the evaluation and thus you don’t see

Re: [xwiki-users] Run external script to generate data for wiki page

2014-12-18 Thread Jason Clemons
Bump... :) Hello all, I'm wondering if anyone has done anything like this before so, I thought I'd ask it here. Essentially, what I want to do is have a page / form that my users fill out and then submit. Upon submit I need to invoke an external script (e.g..Perl, Python, VBScript, Batch

Re: [xwiki-users] Using a local class within a wiki page

2014-12-18 Thread Bryn Jeffries
Vincent Massol said: Ok I think I know... Actually the message is printed in the console. You see something in the page only if you print in the global scope because this is what gets returned by script evaluation. Calling “println” in a class doesn’t return anything in the evaluation and

[xwiki-users] [ANN] XWiki 6.4 Milestone 2 released

2014-12-18 Thread Eduard Moraru
The XWiki development team is proud to announce the availability of XWiki 6.4 Milestone 2. This version brings mainly UI improvements in the Menu application, Mail application and Flamingo skin, while offering developers the ability to write LESS in Skin Extensions, a cool icon picker and new

Re: [xwiki-users] Run external script to generate data for wiki page

2014-12-18 Thread Bryn Jeffries
How external is the external script? Couldn't you wrap the script into a cgi script on the same server and invoke it from the client with an AJAX call? From: Jason Clemons [jason.clem...@live.com] Sent: 19 December 2014 10:00 To: 'XWiki Users' Subject: Re:

Re: [xwiki-users] Run external script to generate data for wiki page

2014-12-18 Thread Jason Clemons
I have control over the script..so it can be in the CGI bin...would I then be able to invoke it through velocity? On Dec 18, 2014, at 6:01 PM, Bryn Jeffries bryn.jeffr...@sydney.edu.au wrote: How external is the external script? Couldn't you wrap the script into a cgi script on the