e.g. <your_script>.pl
$ZOOM::IRSpy::xslt_max_depth = 500;
our @ISA = qw();
our $VERSION = '1.01';
our $irspy_to_zeerex_xsl = dirname(__FILE__) . '/../../xsl/irspy2zeerex.xsl';
+our $xslt_max_depth = 250;
# Enumeration for callback functions to return
my $xslt = new XML::LibXSLT;
# raise the maximum number of nested template calls and variables/params (default 250)
- $xslt->max_depth(250);
+ $xslt->max_depth($xslt_max_depth);
$xslt->register_function($ZOOM::IRSpy::Utils::IRSPY_NS, 'strcmp',
\&ZOOM::IRSpy::Utils::xslt_strcmp);