Re: [xwiki-users] Macro Parameter as Array

2016-04-03 Thread Thomas Mortagne
What you need to keep in mind is that {{test}} is wiki syntax, it's not a Velocity/Java API. You print it with Velocity, you don't call it. So this is all text until the wiki parser parses it, to pass an array you need to serialize it with the right syntax. A good way to understand and debug that

Re: [xwiki-users] Macro Parameter as Array

2016-04-03 Thread Thomas Mortagne
On Sun, Apr 3, 2016 at 11:20 AM, Thomas Mortagne wrote: > What you need to keep in mind is that {{test}} is wiki syntax, it's > not a Velocity/Java API. You print it with Velocity, you don't call > it. So this is all text until the wiki parser parses it, to pass an > array you need to serialize it

[xwiki-users] DBLists and Relational Storage

2016-04-03 Thread Peter Huisman
Hi, A few short questions: What is the storage limit when NOT using Relational Storage for each selected item? - I assume this is 255 but I’m not sure. What is the storage limit when NOT using Relational Storage for all selected items in total? - I do not know what to make of this. The only re

Re: [xwiki-users] Macro Parameter as Array

2016-04-03 Thread Vincent Massol
> On 03 Apr 2016, at 02:02, Personal wrote: > > Is it possible to pass an array as a macro parameter? So far my attempts have > failed. no, it’s not really possible to pass typed parameters to macros in wiki syntax. However, if the macro is written in Java and it expects a List, and you pass