Re: [xsl] How to call a stylesheet from a stylesheet

Subject: Re: [xsl] How to call a stylesheet from a stylesheet
From: "Jay Bryant" <jay@xxxxxxxxxxxx>
Date: Mon, 19 Dec 2005 14:56:01 -0600
Hi, Chris,

abc.xsl:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:template name="abc">
    <xsl:message>Hi, Chris!</xsl:message>
  </xsl:template>
</xsl:stylesheet>

xyz.xsl

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:include href="abc.xsl"/>
  <xsl:template match="/">
    <!-- To test it, apply this stylesheet to itself -->
    <xsl:call-template name="abc"/>
  </xsl:template>
</xsl:stylesheet>

HTH

Jay Bryant
Bryant Communication Services

----- Original Message ----- 
From: "Woods, Christopher" <cwoods@xxxxxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Monday, December 19, 2005 2:03 PM
Subject: [xsl] How to call a stylesheet from a stylesheet


Can anyone give an example of how to call a stylesheet from within a
style sheet?  For example, how would one call a template named 'abc'
within a stylesheet named 'abc.xsl' from another stylesheet named
'xyz.xsl'.  It seems like this should be possible but I haven't figured
it out thus far.  Thanks very much.

Chris Woods

Current Thread