[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] Import/Include mess


Subject: [xsl] Import/Include mess
From: Steve <subsume@xxxxxxxxx>
Date: Fri, 30 Jun 2006 15:08:17 -0400

I have three xsl's, A, B, C. While they can be accessed separately for
screen viewing, when A is printed, I want B and C to appear using css.

My problem is that I can't include/import B and C within A because
each uses an fxsl library and, since that library contains includes, I
get a parse error that doesn't like the fact that two sheets are
including the same file without import preference.

Obviously, one reason you start using xsl is the mutability of design
for things like this, but I must have something organized incorrectly.

See below for general idea. Any comments/opinions welcome.

-Steve

--Stylesheet A below---

<xsl:stylesheet version='1.0' xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:import href="B.xsl" />
	<xsl:import href="C.xsl" />
	<xsl:include href="../../Includes/fxsl-MS-1.1/strSplit-to-Words.xsl" />
      	<xsl:template match="/">

       <div id="printOnly">
              <xsl:apply-imports />
       </div>
       </xsl:template>
</xsl:stylesheet>

--- B & C ---

<xsl:stylesheet version='1.0' xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:include href="../../Includes/fxsl-MS-1.1/strSplit-to-Words.xsl" />
      	<xsl:template match="/">
              <div>Nonsense</div>
       </xsl:template>
</xsl:stylesheet>


Current Thread
Keywords
xsl