Hello friends.
It looks that you forgot to replace some links to old library
(LibXMLSupport).
medlib# svn diff
Index: lib/Apache/AxKit/Language/LibXSLT.pm
===================================================================
--- lib/Apache/AxKit/Language/LibXSLT.pm (revision 437177)
+++ lib/Apache/AxKit/Language/LibXSLT.pm (working copy)
@@ -66,7 +66,7 @@
my $parser = Apache::AxKit::LibXML->new();
$parser->expand_entities(1);
$parser->expand_xinclude(1);
- local $Apache::AxKit::LibXMLSupport::provider_cb =
+ local $Apache::AxKit::LibXMLCallbacks::provider_cb =
sub {
my $r = shift;
my $provider =
Apache::AxKit::Provider->new_content_provider($r);
@@ -110,7 +110,7 @@
my $xslt = XML::LibXSLT->new();
$xslt->input_callbacks(
Apache::AxKit::LibXMLCallbacks->input_callbacks() );
- local $Apache::AxKit::LibXMLSupport::provider_cb =
+ local $Apache::AxKit::LibXMLProviders::provider_cb =
sub {
my $r = shift;
my $provider =
Apache::AxKit::Provider->new_style_provider($r);
Index: lib/Apache/AxKit/Provider.pm
===================================================================
--- lib/Apache/AxKit/Provider.pm (revision 437177)
+++ lib/Apache/AxKit/Provider.pm (working copy)
@@ -161,7 +161,8 @@
sub get_dom {
my ($self, $str) = @_;
- require Apache::AxKit::LibXMLSupport;
+ require Apache::AxKit::LibXML;
+ require Apache::AxKit::LibXMLCallbacks;
AxKit::Debug(8, "Provider::get_dom");
my $parser = Apache::AxKit::LibXML->new();
Best regards,
Alexey A. Ukhov