Scott,

It would appear to be something to do with importing another stylesheet.

in propmaker the problem is (at-this line) from these parts:

<xsl:import href="elements.xsl"/>

--------
<xsl:attribute name="family">
this line --- >   <xsl:call-template name="capall"><xsl:with-param
name="str" select="$prefixVal"/></xsl:call-template>
</xsl:attribute>
---------

in elements.xsl is this:

<xsl:variable name="prefixVal">
<xsl:value-of select="//elements/@prefix"/>
</xsl:variable>

and
<xsl:template name="capall">
  <xsl:param name="str"/>
  <xsl:variable name="lcletters" select="'abcdefghijklmnopqrstuvwxyz'" />
  <xsl:variable name="ucletters" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
     <xsl:value-of select="translate($str,
              $lcletters, $ucletters)"/>
</xsl:template>

So has something changed with importing variables and templates?


On Fri, 10 Aug 2001 18:23:14 [EMAIL PROTECTED] wrote:
> 
> I don't think so, though I could be wrong.  Can someone send me
> propmaker.xsl, since I'm too lazy to go digging for it?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to