XML::Saxon::XSLT2(3pm) | User Contributed Perl Documentation | XML::Saxon::XSLT2(3pm) |
XML::Saxon::XSLT2 - process XSLT 2.0 using Saxon 9.x.
use XML::Saxon::XSLT2; # make sure to open filehandle in right encoding open(my $input, '<:encoding(UTF-8)', 'path/to/xml') or die $!; open(my $xslt, '<:encoding(UTF-8)', 'path/to/xslt') or die $!; my $trans = XML::Saxon::XSLT2->new($xslt, $baseurl); my $output = $trans->transform($input); print $output; my $output2 = $trans->transform_document($input); my @paragraphs = $output2->getElementsByTagName('p');
This module implements XSLT 1.0 and 2.0 using Saxon 9.x via Inline::Java.
It expects Saxon to be installed in either '/usr/share/java/saxon9he.jar' or '/usr/local/share/java/saxon9he.jar'. Future versions should be more flexible. The saxon9he.jar file can be found at <http://saxon.sourceforge.net/> - just dowload the latest Java release of Saxon-HE 9.x, open the Zip archive, extract saxon9he.jar and save it to one of the two directories above.
use XML::Saxon::XSLT2;
You can include additional parameters which will be passed straight on to Inline::Java, like this:
use XML::Saxon::XSLT2 EXTRA_JAVA_ARGS => '-Xmx256m';
The "import" function must be called. If you load this module without importing it, it will not work. (Don't worry, it won't pollute your namespace.)
Each key is a parameter name.
Each value is the parameter value. This may be a scalar, in which case it's treated as an xs:string; a DateTime object, which is treated as an xs:dateTime; a URI object, xs:anyURI; a Math::BigInt, xs:long; or an arrayref where the first element is the type and the second the value. For example:
$trans->parameters( now => DateTime->now, madrid_is_capital_of_spain => [ boolean => 1 ], price_of_fish => [ decimal => '1.99' ], my_link => URI->new('http://example.com/'), your_link => [ uri => 'http://example.net/' ], );
The following types are supported via the arrayref notation: float, double, long (alias int, integer), decimal, bool (alias boolean), string, qname, uri, date, datetime. These are case-insensitive.
$doc may be a string, a file handle or an XML::LibXML::Document.
$output_method may be 'xml', 'xhtml', 'html' or 'text' to override the XSLT output method; or 'default' to use the output method specified in the XSLT file. 'default' is the default. In the current release, 'default' is broken. :-(
This method is slower than "transform".
If the transformation doesn't specify an output type, returns the default.
If the transformation doesn't specify a doctype, returns the default.
If the transformation doesn't specify a doctype, returns the default.
If the transformation doesn't specify a version, returns the default.
If the transformation doesn't specify an encoding, returns the default.
Please report any bugs to <http://rt.cpan.org/>.
XML::LibXSLT is probably more reliable in terms of easy installation on a variety of platforms, and it allows you to define your own XSLT extension functions. However, the libxslt library that it's based on only supports XSLT 1.0.
This module uses Inline::Java.
<http://saxon.sourceforge.net/>.
Toby Inkster <tobyink@cpan.org>.
Copyright 2010-2012, 2014 Toby Inkster
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2021-09-11 | perl v5.32.1 |