xsl-list
[Top] [All Lists]

Re: [xsl] problem defining param value

2013-01-08 14:53:51
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(_at_)CraneSoftwrights(_dot_)com
Google+ profile: https://plus.google.com/116832879756988317389/about
Legal business disclaimers:    http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
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>