I'm pretty sure newlines in a string is not valid JSON (or Javascript,
for that matter).
David Rose
On Sat, Feb 26, 2011 at 10:08 AM, hp lw <ipaq.lw@gmail.com> wrote:
> Hi!
> I have a trouble with creating lists functions in Futon. When I write it in
> readable form like
> {
> "test": "function(head,req){
> start({ headers:{'Content-type':'text/html'}});
> while(row=getRow()){
> send('<div>');
> send(row.value['created_at']+' :
> '+row.value['member_id']);
> send('</div>');
> }"
> }
>
> I'm always getting error about sintax, and Fields(Design) function is shown
> as a text without highlighting function name. but when I write
> all-in-one-line it works ok.
> {
> "test": "function(head,req){ start({ headers:{'Content-type':'text/
> html'}});while(row=getRow()){send('<div>');send(row.value['created_at']
> +' : '+row.value['member_id']);send('</div>');}"
> }
>
> What am I doing wrong?
> P.S. everthing was fine until I upgrade from 0.8 to 1.02
>
|