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]
Other format: [Raw text]

RE: data translation => descendants appear side by side in HTML-table


Here is a stylesheet that does the trick. The idea I've used here is to
create a pair of variables to hold copies of the description elements
from each base element. Then we can figure out the number of rows in the
table, and generate the rows using recursion. As an optimization, the
variables containing the description elements are top-level (or global)
elements so they don't have to be passed as parameters on each recursive
template call.

I've used the msxsl:node-set extension element from MSXML 4.0, you will
have to replace that with the appropriate extension element for the XSLT
processor you are using.

Cheers,
Stuart

----- Answer -----
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
    xmlns:msxsl="urn:schemas-microsoft-com:xslt">

  <xsl:output method="html"/>

  <!--
    Variables containing description elements in each base element.
    Use top-level variables for efficiency, so they don't have to be
passed into templates
  -->
  <xsl:variable name="desc1">
    <xsl:apply-templates select="/root/base[1]"/>
  </xsl:variable>
  <xsl:variable name="desc2">
    <xsl:apply-templates select="/root/base[2]"/>
  </xsl:variable>

  <!-- Create -->
  <xsl:template match="/">
    <html>
      <head><title>Descriptions</title></head>
      <body>
        <table border="1">
          <!-- find number of rows, i.e., maximum number of description
element in either variable -->
          <xsl:variable name="count1"
select="count(msxsl:node-set($desc1)/description)"/>
          <xsl:variable name="count2"
select="count(msxsl:node-set($desc2)/description)"/>
          <xsl:variable name="count"><xsl:choose>
            <xsl:when test="$count1 &gt;= $count2"><xsl:value-of
select="$count1"/></xsl:when>
            <xsl:otherwise><xsl:value-of
select="$count2"/></xsl:otherwise>
          </xsl:choose></xsl:variable>
          
          <xsl:call-template name="description-row">
            <xsl:with-param name="count" select="$count"/>
          </xsl:call-template>
          
        </table>
      </body>
    </html>
  </xsl:template>

  <!-- make copy of all description elements within base -->
  <xsl:template match="base">
    <xsl:copy-of select=".//description"/>
  </xsl:template>  
  
  <!-- add description row and recurse until index = count -->
  <xsl:template name="description-row">
    <xsl:param name="index" select="1"/>
    <xsl:param name="count" />
    <tr>
      <td><xsl:value-of
select="msxsl:node-set($desc1)/description[$index]"/></td>
      <td><xsl:value-of
select="msxsl:node-set($desc2)/description[$index]"/></td>
    </tr>
    
    <!-- recurse -->
    <xsl:if test="$index &lt; $count">
      <xsl:call-template name="description-row">
        <xsl:with-param name="index" select="$index + 1"/>
        <xsl:with-param name="count" select="$count"/>
      </xsl:call-template>
    </xsl:if>
  </xsl:template>

</xsl:stylesheet>

----- End of Answer -----


 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]