Re: [NTG-context] Howto use the lua io.read() function only in the first context run?

2016-03-19 Thread Hans Hagen
On 3/16/2016 10:47 PM, Romain Diss wrote: Hi, Le 15/03/2016, Hans Hagen a écrit On 3/15/2016 9:04 PM, Romain Diss wrote: I want to write a cld document with some data read on the standard input. I'm using the lua io.read() function but it's launched at every context passes (depending on the

Re: [NTG-context] Howto use the lua io.read() function only in the first context run?

2016-03-19 Thread Andreas Schneider
Am 2016-03-16 22:47, schrieb Romain Diss: Hi, Thank you Hans... but it doesn't fully work. Now I only enter the input once (that's ok) but on the second run, the variable is not defined anymore. How can I keep it in the conTeXt memory? -- Minimum still not working example local name if

Re: [NTG-context] Howto use the lua io.read() function only in the first context run?

2016-03-19 Thread Romain Diss
Hi, Le 15/03/2016, Hans Hagen a écrit > On 3/15/2016 9:04 PM, Romain Diss wrote: > >I want to write a cld document with some data read on the standard > >input. I'm using the lua io.read() function but it's launched at every > >context passes (depending on the case, it is launched 2 to 3 times).

Re: [NTG-context] Howto use the lua io.read() function only in the first context run?

2016-03-15 Thread Hans Hagen
On 3/15/2016 9:04 PM, Romain Diss wrote: Hi all, I want to write a cld document with some data read on the standard input. I'm using the lua io.read() function but it's launched at every context passes (depending on the case, it is launched 2 to 3 times). -- Minimum not working example local

[NTG-context] Howto use the lua io.read() function only in the first context run?

2016-03-15 Thread Romain Diss
Hi all, I want to write a cld document with some data read on the standard input. I'm using the lua io.read() function but it's launched at every context passes (depending on the case, it is launched 2 to 3 times). -- Minimum not working example local name = io.read() context.startdocument()