Re: [xsl] Providing a value for the 'select' attribute

Subject: Re: [xsl] Providing a value for the 'select' attribute
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 03 Oct 2011 17:26:57 -0400
At 2011-10-03 14:19 -0700, Mark wrote:
I have been using the following idiom when
providing a value for bselectb in statements
like <xsl:param>, <xsl:variable>, etc., when the
value provided is not an xsl object. Is this
correct or is some other form preferred?

<xsl:param name="file-type">
   <xsl:text>.htm</xsl:text>
</xsl:param>

The above is a text node, as is this:


<xsl:param name="file-type">.htm</xsl:param>

This is slightly different in that it is a string:

<xsl:param name="file-type" select="'.htm'"/>

But for your use that difference is nuanced based
only on how the item is stored in memory.

I hope this helps.

. . . . . . Ken


-- Contact us for world-wide XML consulting and instructor-led training 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

Current Thread