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

Re: [xsl] problem defining param value


Subject: Re: [xsl] problem defining param value
From: Jonina Dames <jdames@xxxxxxxxx>
Date: Tue, 08 Jan 2013 16:44:44 -0500

Hi Ken,

When I step through the NEW_STYLESHEET.xsl with some sample xml, $fork1 definitely returns FORK, which then causes $OUTSIDE_PARAM to return VALUE1, as expected. The problem is getting the first stylesheet to realize that $OUTSIDE_PARAM has actually been defined as not empty.

Thanks,
Joni

On 1/8/13 3:53 PM, G. Ken Holman wrote:
At 2013-01-08 15:32 -0500, Jonina Dames wrote:
used the following syntax in the NEW_STYLESHEET.xsl:

<xsl:variable name="fork1">
<xsl:value-of select="string that returns either 'FORK' or 'SPOON'"/>
</xsl:variable>

<xsl:param name="OUTSIDE_PARAM">
<xsl:if test="$fork1 = 'FORK'">
<xsl:value-of select="string that returns 'VALUE1'"/>
</xsl:if>
<xsl:if test="$fork1 = 'SPOON'">
<xsl:value-of select="string that returns 'VALUE2'"/>
</xsl:if>
</xsl:param>

Unfortunately, the stylesheet is no longer recognizing that a param has been defined at all, and is always defaulting to VALUE3, as determined by the "otherwise" section. It seems to think that $OUTSIDE_PARAM is always empty, even though it's not. Am I missing something completely obvious?

Have you confirmed that $fork1 is being set correctly?


Sounds like an opportunity to throw some diagnostics to the error port:

<xsl:message>Fork: <xsl:value-of select="$fork1"/></xsl:message>
<xsl:message>Param: <xsl:value-of select="$OUTSIDE_PARAM"/></xsl:message>

If in your environment you don't have an error port, then you might be able to put diagnostic information into the output using a comment:

<xsl:comment>Fork: <xsl:value-of select="$fork1"/>
  Param: <xsl:value-of select="$OUTSIDE_PARAM"/></xsl:comment>

(but be careful if this is in the middle of adding attributes to an element as it will choke off the ability to add attributes after adding the comment)

I hope this helps.

. . . . . . . Ken


-- Contact us for world-wide XML consulting and instructor-led training Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Google+ profile: https://plus.google.com/116832879756988317389/about Legal business disclaimers: http://www.CraneSoftwrights.com/legal



--
Jonina Dames
Customer Support Specialist
Inera Inc.
+1 617 932 1932
jdames@xxxxxxxxx

-------------------------------------------------------------------
This email message and any attachments are confidential. If you are not the intended recipient, please immediately reply to the sender or call 617-932-1932 and delete the message from your email system. Thank you.
-------------------------------------------------------------------


Current Thread
Keywords
xml