in reply to SVG TT Graph

Template -> http://search.cpan.org/grep?cpanid=ABW&release=Template-Toolkit-2.26&string=iterations&i=1&n=1&C=0 -> https://metacpan.org/pod/Template::Manual::Directives#WHILE
The Template Toolkit uses a failsafe counter to prevent runaway WHILE +loops which would otherwise never terminate. If the loop exceeds 1000 + iterations then an undef exception will be thrown, reporting the err +or: WHILE loop terminated (> 1000 iterations) The $Template::Directive::WHILE_MAX variable controls this behaviour a +nd can be set to a higher value if necessary.
  • Comment on Re: SVG TT Graph ( Template error: undef error - WHILE loop terminated (> 1000 iterations) )
  • Download Code

Replies are listed 'Best First'.
Re^2: SVG TT Graph ( Template error: undef error - WHILE loop terminated (> 1000 iterations) )
by artperl (Acolyte) on Apr 21, 2015 at 02:02 UTC
    great!... got it!... thanks much for the reply!... much appreciated!..