[Templates] Argh!! Concat and array, errors! - emergency

2010-02-24 Thread Summer
Hello, I am having a devil of a time. When I do this: [% somvar = "Testing a string: " _ pageItems.section %] [% somvar %] It works. I get what I am expecting to print to screen. BUT This WILL NOT work and I constantly get an error of: unexpected token (_) [% someArray = [] %] [% someArray =

Re: [Templates] Argh!! Concat and array, errors! - emergency

2010-02-24 Thread Clayton Scott
On Wed, Feb 24, 2010 at 4:43 PM, Summer wrote: > > Hello, > This works: > [% someArray = ["Item1","item2: $pageItems.section","color"] %] > > The problem with the latter is sometimes my data structures are complex and I > then get errors when I try to do something like: > > "item2: $pageItems.se

Re: [Templates] Argh!! Concat and array, errors! - emergency

2010-02-24 Thread Kelly Thompson
use single quotes: When the parser reaches this: [% someArray = [] %] [% someArray = ["Item1","item2: " _ pageItems.section,"color"] %] After the double quote in itme2 BEFORE the concat it's looking for a comma. Try this: [% someArray = [] %] [% someArray = ["Item1"," 'item2: ' _ pageItems.sectio

Re: [Templates] Argh!! Concat and array, errors! - emergency

2010-02-24 Thread Tom Molesworth
On 24/02/10 21:43, Summer wrote: This WILL NOT work and I constantly get an error of: unexpected token (_) [% someArray = [] %] [% someArray = ["Item1","item2: " _ pageItems.section,"color"] %] You could put the complex expression inside a vmethod. It's not pretty and I'm sure there's a bett