xsl-list
[Top] [All Lists]

xsl:attributes as parameter to a template

2005-05-03 02:36:37
Hello,
I am not understanding why the following xslt snipped produces an empty 'someElement' element (XSLT 1.0):

   <xsl:template match="/">
       <xsl:call-template name="printSomeAttributes">
           <xsl:with-param name="attributes">
               <xsl:attribute name="juhu">Hello World!</xsl:attribute>
           </xsl:with-param>
       </xsl:call-template>
   </xsl:template>
<xsl:template name="printSomeAttributes">
       <xsl:param name="attributes"/>
       <xsl:element name="someElement">
           <xsl:value-of select="$attributes"/>
       </xsl:element>
   </xsl:template>

Thank you for your answer(s).

Best regards,

--
Jan Tietjens

Gentleware AG
www.gentleware.com

Free evaluation of UML tools

Looking for a convenient entry into the unified modeling language?
Check out what the modeling tool Poseidon for UML can do for you
by evaluating the edition of your choice.
http://www.gentleware.com?redirect=evaluate




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