|
Subject: Re: [xsl] Creating nested output from <xsl:if>'s From: George Cristian Bina <george@xxxxxxx> Date: Sat, 04 Dec 2004 16:02:05 +0200 |
<xsl:template name="checkPitch">
<xsl:if test="@pitch='x-high'">
<xsl:text><PITCH BASE="70%"></xsl:text>
<xsl:call-template name="checkRate"/>
<xsl:text></PITCH></xsl:text>
</xsl:if>
</xsl:template>
<xsl:template name="checkRate">
<xsl:if test="@rate='slow'">
<xsl:text><RATE SPEED="-40%"></xsl:text>
<xsl:apply-templates/>
<xsl:text></RATE></xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="//prosody">
<xsl:call-template name="checkPitch"/>
</xsl:template>Best Regards, George --------------------------------------------------------------------- George Cristian Bina <oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger http://www.oxygenxml.com
On Saturday 04 December 2004 13:45, George Cristian Bina wrote:
Hi,
You can do something like below:
<xsl:if test="@pitch='x-high'"> <xsl:text><PITCH BASE="70%"></xsl:text> <xsl:if test="@rate='slow'"> <xsl:text><RATE SPEED="-40%"></xsl:text> <xsl:apply-templates/> <xsl:text></RATE></xsl:text> </xsl:if> <xsl:text></PITCH></xsl:text> </xsl:if>
That would work, but would not be very practical. There are quite a few options and this would force me to have to write a _very_ long nested if statement. Any other solutions?
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Creating nested output fr, Paul Giannaros | Thread | Re: [xsl] Creating nested output fr, Paul Giannaros |
| Re: [xsl] Creating nested output fr, George Cristian Bina | Date | Re: [xsl] Creating nested output fr, Kevin Jones |
| Month |