You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Isabelle Lussier <il...@logisil.com> on 2000/02/18 21:29:44 UTC

xsl:import

I wonder if I do something wrong with the xsl:import  because the "code 1" display in PDF only the result of base.xsl, the "code 2" the result of bill-4.xsl (OK) so why in the "code 1" it doesn't display the both result?  I did the same thing with xsl:include and I've got the same result.


CODE 1:

<?xml version="1.0"?>
 <!-- definition of the namespace -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                       xmlns:fo="http://www.w3.org/1999/XSL/Format">  


<xsl:import href="bill-4.xsl"/>
<xsl:import href="base.xsl"/>

</xsl:stylesheet>


CODE 2:

<?xml version="1.0"?>
 <!-- definition of the namespace -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                       xmlns:fo="http://www.w3.org/1999/XSL/Format">  


<xsl:import href="bill-4.xsl"/>


</xsl:stylesheet>