This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Wendell Piez untest xsl for lookup (1039)


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@unisvr.net.tw


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]