I'm using AxKit from CVS, checked out today. I'm trying to use axkit:
URIs to create a component-based system.

My files:
----- a.xml ----
<?xml version="1.0" encoding="utf-8"?>
<page>
 <title>Prova di AxKit</title>
 <p>Vediamo quanto funziona...</p>
</page>
----- b.xml ----
<?xml version="1.0"?>
<page>
 <title>Componente</title>
 <p>qualcos'altro</p>
</page>
----- t.xml ----
<?xml version="1.0"?>
<page>
 <title>inclusione</title>
 <p>vediamo un po'</p>
</page>
----- b.xsl ----
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

 <xsl:template match="/page">
  <html>
   <head>
    <title><xsl:value-of select="title"/></title>
   </head>
   <body>
    <xsl:copy-of select="p"/>
   </body>
  </html>
 </xsl:template>
</xsl:stylesheet>
----- t.xsl ----
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

 <xsl:variable name="a" select="document('axkit:a.xml',/)"/>
 <xsl:variable name="b" select="document('axkit:b.xml',/)"/>

 <xsl:template match="/page">
  <html>
   <head>
    <xsl:copy-of select="title"/>
   </head>
   <body>
    <div id="a">
     <h3><xsl:copy-of select="$a//head/title/node()"/></h3>
     <xsl:copy-of select="$a//body/node()"/>
    </div>
    <div id="b">
     <h3><xsl:copy-of select="$b//head/title/node()"/></h3>
     <xsl:copy-of select="$b//body/node()"/>
    </div>
    <div id="t">
     <xsl:copy-of select="p"/>
    </div>
   </body>
  </html>
 </xsl:template>
</xsl:stylesheet>
---- .htaccess ----
AddHandler axkit .xml
AddHandler axkit .html

AxAddStyleMap text/xsl Apache::AxKit::Language::LibXSLT
AxNoCache On
AxCacheDir /tmp/axkit-trace
AxTraceIntermediate /tmp/axkit-trace
AxStackTrace On

AxIgnoreStylePI On
AxDebugLevel 10

<Files a.xml>
 AxAddProcessor text/xsl stylesheet/b.xsl
</Files>

<Files b.xml>
 AxAddProcessor text/xsl stylesheet/b.xsl
</Files>

<Files t.xml>
 AxAddProcessor text/xsl stylesheet/t.xsl
</Files>
------------

When I access a.xml or b.xml, all works. When I try to access t.xml, I
get the following in the log:
------------
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] fast handler called for 
/~dakkar/myax/t.xml
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Content Provider 
Override: Apache::AxKit::Provider::File
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] decoding from UTF-8
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [req] File Provider given 
$r: /home/dakkar/public_html/myax/t.xml
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] checking if we process 
this resource
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] media: screen, preferred 
style: #default
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Cache: key = 
874e044529d2bebe655124b6a77e4cc2
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] getting styles and 
external entities from the XML
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] styles cached
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] cache doesn't exist
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] some condition failed. 
recreating output
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] styles: 
Apache::AxKit::Language::LibXSLT(stylesheet/t.xsl)
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Style Provider Override: 
Apache::AxKit::Provider::File
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider 
looking up uri stylesheet/t.xsl
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] encoding to UTF-8
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider set 
filename to /home/dakkar/public_html/myax/stylesheet/t.xsl
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] about to execute: 
Apache::AxKit::Language::LibXSLT::handler
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting the XML
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet /~dakkar/myax/stylesheet/t.xsl
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] performing 
transformation
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT match_uri: 
axkit:a.xml
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT open_content_uri: 
axkit:a.xml
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri(axkit:a.xml)
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Content Provider 
Override: Apache::AxKit::Provider::File
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] decoding from UTF-8
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [req] File Provider given 
$r: /home/dakkar/public_html/myax/a.xml
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] media: screen, preferred 
style: #default
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Cache: key = 
39217f3e477404efc94103768b16c063
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] getting styles and 
external entities from the XML
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] styles cached
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] cache doesn't exist
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] some condition failed. 
recreating output
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] styles: 
Apache::AxKit::Language::LibXSLT(stylesheet/b.xsl)
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Style Provider Override: 
Apache::AxKit::Provider::File
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider 
looking up uri stylesheet/b.xsl
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] encoding to UTF-8
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider set 
filename to /home/dakkar/public_html/myax/stylesheet/b.xsl
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] about to execute: 
Apache::AxKit::Language::LibXSLT::handler
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting the XML
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] checking if 
stylesheet is cached
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] stylesheet 
cached
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] performing 
transformation
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] transformation 
finished, creating XML::LibXML::Document=SCALAR(0x8782ed4)
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] storing results 
in pnotes(dom_tree) (AxKit::Apache=SCALAR(0x841bd08))
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] 
Apache::AxKit::Language::LibXSLT::handler finished with code 0
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] execution of: 
Apache::AxKit::Language::LibXSLT::handler finished
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri returning 
(dom): '<?xml version="1.0" standalone="yes"?>
<html><head><title>Prova di AxKit</title></head><body><p>Vediamo quanto funziona... 
c�n l� ��c�ntate</p></body></html>
'
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] transformation 
finished, creating XML::LibXML::Document=SCALAR(0x875cdc0)
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] outputting to $r
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] storing results 
in pnotes(dom_tree) (AxKit::Apache=SCALAR(0x875cb2c))
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] 
Apache::AxKit::Language::LibXSLT::handler finished with code 0
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] execution of: 
Apache::AxKit::Language::LibXSLT::handler finished
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] delivering to browser
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] Delivering xml_string
[Tue Jan 21 15:43:34 2003] [warn] [client 127.0.0.1] [AxKit] writing xml string to 
browser
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] fast handler called for 
/~dakkar/myax/t.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Content Provider 
Override: Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] decoding from UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [req] File Provider given 
$r: /home/dakkar/public_html/myax/t.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] checking if we process 
this resource
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] media: screen, preferred 
style: #default
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Cache: key = 
874e044529d2bebe655124b6a77e4cc2
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] getting styles and 
external entities from the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] cache doesn't exist
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] some condition failed. 
recreating output
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles: 
Apache::AxKit::Language::LibXSLT(stylesheet/t.xsl)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Style Provider Override: 
Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider 
looking up uri stylesheet/t.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] encoding to UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider set 
filename to /home/dakkar/public_html/myax/stylesheet/t.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] about to execute: 
Apache::AxKit::Language::LibXSLT::handler
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet /~dakkar/myax/stylesheet/t.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] performing 
transformation
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT match_uri: 
axkit:b.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT open_content_uri: 
axkit:b.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri(axkit:b.xml)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Content Provider 
Override: Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] decoding from UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [req] File Provider given 
$r: /home/dakkar/public_html/myax/b.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] media: screen, preferred 
style: #default
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Cache: key = 
924ee309ab111e275d2a5a64e48253ae
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] getting styles and 
external entities from the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] cache doesn't exist
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] some condition failed. 
recreating output
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles: 
Apache::AxKit::Language::LibXSLT(stylesheet/b.xsl)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Style Provider Override: 
Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider 
looking up uri stylesheet/b.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] encoding to UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider set 
filename to /home/dakkar/public_html/myax/stylesheet/b.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] about to execute: 
Apache::AxKit::Language::LibXSLT::handler
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] checking if 
stylesheet is cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] stylesheet 
cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] performing 
transformation
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] transformation 
finished, creating XML::LibXML::Document=SCALAR(0x87830cc)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] storing results 
in pnotes(dom_tree) (AxKit::Apache=SCALAR(0x876c7d0))
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] 
Apache::AxKit::Language::LibXSLT::handler finished with code 0
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] execution of: 
Apache::AxKit::Language::LibXSLT::handler finished
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri returning 
(dom): '<?xml version="1.0" standalone="yes"?>
<html><head><title>Componente</title></head><body><p>qualcos'altro</p></body></html>
'
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT match_uri: 
axkit:a.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] LibXSLT open_content_uri: 
axkit:a.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri(axkit:a.xml)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Content Provider 
Override: Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] decoding from UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [req] File Provider given 
$r: /home/dakkar/public_html/myax/a.xml
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] media: screen, preferred 
style: #default
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Cache: key = 
39217f3e477404efc94103768b16c063
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] getting styles and 
external entities from the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] cache doesn't exist
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] some condition failed. 
recreating output
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] styles: 
Apache::AxKit::Language::LibXSLT(stylesheet/b.xsl)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Style Provider Override: 
Apache::AxKit::Provider::File
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider 
looking up uri stylesheet/b.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] encoding to UTF-8
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [uri] File Provider set 
filename to /home/dakkar/public_html/myax/stylesheet/b.xsl
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] about to execute: 
Apache::AxKit::Language::LibXSLT::handler
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] getting the XML
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] parsing 
stylesheet
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] checking if 
stylesheet is cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] stylesheet 
cached
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] performing 
transformation
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] transformation 
finished, creating XML::LibXML::Document=SCALAR(0x8783114)
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] [LibXSLT] storing results 
in pnotes(dom_tree) (AxKit::Apache=SCALAR(0x8782ee0))
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] 
Apache::AxKit::Language::LibXSLT::handler finished with code 0
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] execution of: 
Apache::AxKit::Language::LibXSLT::handler finished
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] get_axkit_uri returning 
(dom): '<?xml version="1.0" standalone="yes"?>
Componentequalcos'altro
'
[Tue Jan 21 15:43:42 2003] [warn] [client 127.0.0.1] [AxKit] Caught an exception
[Tue Jan 21 15:43:42 2003] [error] [client 127.0.0.1] [AxKit] [Error] Can't coerce 
UNKNOWN to string in entersub at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/Apache/AxKit/Language/LibXSLT.pm
 line 120.

[Tue Jan 21 15:43:42 2003] [error] [client 127.0.0.1] [AxKit] From: 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/Apache/AxKit/Exception.pm : 9
[Tue Jan 21 15:43:42 2003] [error] [client 127.0.0.1] [AxKit] [Backtrace] Can't coerce 
UNKNOWN to string in entersub at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/Apache/AxKit/Language/LibXSLT.pm
 line 120.
        
Apache::AxKit::Exception::new('Apache::AxKit::Exception::Error','-text','Can\'t coerce 
UNKNOWN to string in entersub at /usr/lib/perl5...') called at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 910
        AxKit::prep_exception('Can\'t coerce UNKNOWN to string in entersub at 
/usr/lib/perl5...') called at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 163
        AxKit::__ANON__('Can\'t coerce UNKNOWN to string in entersub at 
/usr/lib/perl5...') called at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/Apache/AxKit/Language/LibXSLT.pm
 line 120
        
Apache::AxKit::Language::LibXSLT::handler('Apache::AxKit::Language::LibXSLT','AxKit::Apache=SCALAR(0x8454d78)','Apache::AxKit::Provider::File=HASH(0x8454d84)','Apache::AxKit::Provider::File=HASH(0x841be64)',1)
 called at /usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 661
        
AxKit::process_request('AxKit::Apache=SCALAR(0x8454d78)','Apache::AxKit::Provider::File=HASH(0x8454d84)','ARRAY(0x8782de4)','undef')
 called at /usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 462
        
AxKit::run_axkit_engine('AxKit::Apache=SCALAR(0x8454d78)','Apache::AxKit::Provider::File=HASH(0x8454d84)')
 called at /usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 289
        eval {...} called at 
/usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 280
        
AxKit::main_handler('AxKit::Apache=SCALAR(0x8454d78)','Apache::AxKit::Provider::File=HASH(0x8454d84)')
 called at /usr/lib/perl5/site_perl/5.8.0/i686-linux-thread-multi-ld/AxKit.pm line 194
        AxKit::fast_handler('AxKit::Apache=SCALAR(0x8454d78)') called at /dev/null 
line 0
        eval {...} called at /dev/null line 0
-----------
Note the line
  get_axkit_uri returning (dom): '<?xml version="1.0" 
standalone="yes"?>Componentequalcos'altro'
this is *wrong*. That is what you get if you apply b.xsl to the
previous output, not to b.xml.

If I remove one of the two references to axkit: URIs in t.xsl, it
works correctly. I've tried to look into the sources, but with little
success. At a glance the problem seems to be that a value is reused
when it shouldn't.

Hope this helps to improve AxKit.

-- 

        Dakkar - <Mobilis in mobile>
        GPG public key fingerprint = A071 E618 DD2C 5901 9574
                                     6FE2 40EA 9883 7519 3F88
                            key id = 0x75193F88

It is inconceivable that a judicious observer from another solar system
would see in our species -- which has tended to be cruel, destructive,
wasteful, and irrational -- the crown and apex of cosmic evolution.
Viewing us as the culmination of *anything* is grotesque; viewing us
as a transitional species makes more sense -- and gives us more hope.
- Betty McCollister, "Our Transitional Species", 
  Free Inquiry magazine, Vol. 8, No. 1

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to