[xsl] Re: Wendell Piez untest xsl for lookup (1039)

Subject: [xsl] Re: Wendell Piez untest xsl for lookup (1039)
From: "Yang" <sfyang@xxxxxxxxxxxxx>
Date: Sun, 24 Jun 2001 09:59:32 +0800
Hi,

I test Wendell Peiz xsl document proposed for Ben's loopup solution(1039)
and  did something shown below to get it work right,

**   corrected portions of xsl and tested **
     <xsl:for-each select="*">
       <xsl:element
name="{$lookup/*[local-name()=$whichfile]/abbr[.=local-name(current())]/foll
owing-sibling::name}"/>  <!--major one, need {}  for name attr -->
         <xsl:apply-templates/>   <!--minor one , add/ -->
       </xsl:element>
     </xsl:for-each>
   </xsl:copy>
</xsl:template><!--minor one , add/ -->


***   original untest xsl **
     <xsl:for-each select="*">
       <xsl:element
name="$lookup/*[local-name()=$whichfile]/abbr[.=local-name(current())]/follo
wing-sibling::name"/>
         <xsl:apply-templates>
       </xsl:element>
     </xsl:for-each>
   </xsl:copy>
<xsl:template>

Hope it is useful to someone interested in Piez solution.

Sun-Fu Yang

sfyang@xxxxxxxxxxxxx


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread