You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Olivier Billard <ob...@jouve.fr> on 2004/07/27 09:34:02 UTC

Re: how to avoid 'generator already set' error in flowscript loop ? RE POST

Did you try the javascript debugger ?
You should be able to trace the execution flow, look at the variables 
values and test conditions.

--
Olivier

H.vanderLinden@MI.unimaas.nl wrote:
> Guys, 
> 
> thanks for thinking along, but what I'd really like to do is:
> 
> myFunction() {
> 	success = false;
> 	errmsg = "";
> 	while (!success) {
> 		try {
> 			[something that also displays errmsg]
> 			[check and throw error if necessary]
> 			success = true;
> 		}
> 		catch (error) {
> 			errmsg = "some error message"
> 			success = false;
> 		}
> 	}
> 	cocoon.sendPage([result]);
> }
> 
> rather than:
> 
> 
>>>myFunction(){
>>>    try{
>>>        [something]
>>>    }
>>>    catch(error){
>>>        cocoon.sendPage([error message]);
>>>        return;
>>>    }
>>>    cocoon.sendPage([result]);
>>>}
> 
> 
> so basically I want to redisplay the page with an error message on it until
> the user has done everything right.
> 
> Bye and thanks, Helma


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org