xsl-list
[Top] [All Lists]

Re: How to call a stylesheet from a stylesheet

2005-12-19 13:56:01
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(_at_)EO(_dot_)Kollmorgen(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
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


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>