xsl-list
[Top] [All Lists]

Re: newbie problem

2005-09-20 05:48:14
Hi,

Tempore 14:43:50, die 09/20/2005 AD, hinc in 
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit Laing 
<laing(_dot_)duncan(_at_)gmail(_dot_)com>:

My first MEASURE template:
<xsl:template match="MEASURE">
    <xsl:for-each select=".">
         <xsl:choose>
                   <xsl:when test="BOOLEAN">
                            <xsl:apply-templates select="BOOLEAN"/>
                    </xsl:when>
                     <xsl:when test="CHOICE">
                            <xsl:apply-templates select="CHOICE"/>
                      </xsl:when>
                      <xsl:when test="MULTI_CHOICE">
                            <xsl:apply-templates select="MULTI_CHOICE"/>
                      </xsl:when>
                      <xsl:when test="TEXT">
                            <xsl:apply-templates select="TEXT"/>
                      </xsl:when>
           </xsl:choose>
   </xsl:for-each>
</xsl:template>

My next attempt:
<xsl:template match="MEASURE">
          <xsl:for-each select=".">
                  <xsl:if test="BOOLEAN">
                       <xsl:apply-templates select="BOOLEAN"/>
                  </xsl:if>
                  <xsl:if test="CHOICE">
                       <xsl:apply-templates select="CHOICE"/>
                   </xsl:if>
                    <xsl:if test="MULTI_CHOICE">
                       <xsl:apply-templates select="MULTI_CHOICE"/>
                    </xsl:if>
                    <xsl:if test="TEXT">
                       <xsl:apply-templates select="TEXT"/>
                    </xsl:if>
      </xsl:for-each>
</xsl:template>


Your third attempt:

<xsl:template match="MEASURE">
  <xsl:apply-templates select="BOOLEAN|CHOICE|MULTI_CHOICE|TEXT"/>
</xsl:template>

Your fourth attempt:

<xsl:template match="MEASURE">
  <xsl:apply-templates/>
</xsl:template>

Your fifth attempt:

nothing


regards,
--
Joris Gillis (http://users.telenet.be/root-jg/me.html)
Keep it simple.

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