You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2006/03/09 17:49:36 UTC

svn commit: r384554 - /lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl

Author: andreas
Date: Thu Mar  9 08:49:34 2006
New Revision: 384554

URL: http://svn.apache.org/viewcvs?rev=384554&view=rev
Log:
Replaced <xsl:attribute> with string function in menu2xslt.xsl. This solves a Xalan problem.

Modified:
    lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl

Modified: lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl?rev=384554&r1=384553&r2=384554&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl (original)
+++ lenya/trunk/src/webapp/lenya/xslt/menu/menu2xslt.xsl Thu Mar  9 08:49:34 2006
@@ -82,8 +82,7 @@
       </xso:template>
       
       <xso:template match="xhtml:*">
-        <xso:element>
-          <xsl:attribute name="name">{local-name()}</xsl:attribute>
+        <xso:element name="{string('{local-name()}')}">
           <xso:apply-templates select="@*|node()"/>
         </xso:element>
       </xso:template>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org