This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Selecting stylesheet at runtime?


You cannot conditionally include .xsl stylesheets
but conceivable you could use modes to solve
this problem where templates with mode="smoke"
would be used when you did a conditional:

<xsl:apply-templates mode="smoke"/>


_________________________________________________________
Steve Muench, Consulting Product Manager & XML Evangelist
Business Components for Java Development Team

----- Original Message ----- 
From: "Martin Rothschink, AxoNet Software" <Martin.Rothschink@axonet.de>
To: <xsl-list@mulberrytech.com>
Sent: Thursday, February 03, 2000 2:37 AM
Subject: Selecting stylesheet at runtime?


| Hi,
| 
| I need to select the stylesheet at runtime, depending on my XML data.
| I tried to use something like
| 
| <xsl:template match="/">
| <xsl:apply-templates select="/RESULTS/RESULT" mode="switch"/>
| </xsl:template>
| 
| <xsl:template match="RESULT" mode="switch">
| <xsl:choose>
| <xsl:when test="@OBJECT='EMISSION' and @METHOD != 'SMOKE'">
| <xsl:include href="gas.xsl"/>
| </xsl:when>
| <xsl:when test="@OBJECT='EMISSION' and @METHOD = 'SMOKE'">
| <xsl:include href="smoke.xsl"/>
| </xsl:when>
| <xsl:otherwise>
| <xsl:include href="generic.xsl"/>
| </xsl:otherwise>
| </xsl:choose>
| </xsl:template>
| 
| But the xsl:include doesn't work. 
| 
| Regards
| Martin Rothschink
| 
| 
|  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
| 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]