From: Jan T. <de...@us...> - 2003-06-01 13:34:10
|
Update of /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries In directory sc8-pr-cvs1:/tmp/cvs-serv27129/NetScript/Libraries Modified Files: XSLTLibrary.pm Log Message: * some small fixes for 5.6.0 compatibility Index: XSLTLibrary.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries/XSLTLibrary.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XSLTLibrary.pm 31 May 2003 22:39:33 -0000 1.1 --- XSLTLibrary.pm 1 Jun 2003 13:34:04 -0000 1.2 *************** *** 13,18 **** # The XSLT library serves the purpose of applying XSLT stylesheets to the # processed NetScript. The XSLT-library depends on a DAL capable of performing ! # XSLT statements. If you try to use the library with a DAL not capable of ! # no processing will be done. To use this library in your scripts put the # following statements into your NetScript. # <pre> --- 13,18 ---- # The XSLT library serves the purpose of applying XSLT stylesheets to the # processed NetScript. The XSLT-library depends on a DAL capable of performing ! # XSLT statements. If you try to use the library with a DAL not capable of doing ! # xslt, this library will fail. To use this library in your scripts put the # following statements into your NetScript. # <pre> *************** *** 106,110 **** } else { ! warn( "XSLT is not supported by the DAL!" ); } } --- 106,112 ---- } else { ! $this -> interpreter() -> getEventRelay() -> createAndRaiseEvent( ! $NetScript::Interpreter::FATAL_EVENT, ! "XSLT is not supported by the current DAL!" ); } } |