Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] data translation => descendants appear side by side inHTML-table

From: Joerg Heinicke <joerg.heinicke@------>
To:
Date: 5/4/2002 5:20:00 AM
I searched for a different and more general approach (not limited to 2 
base elements). The stylesheet is quite short:



<xsl:template match="root">

  <html>

    <head><title>Descriptions</title></head>

    <body>

      <table border="1">

        <xsl:apply-templates 
select="base[not(count(following-sibling::base//description) > 
count(.//description))]//description"/>

      </table>

    </body>

  </html>

</xsl:template>



<xsl:template match="description">
  <xsl:variable name="pos" select="position()"/>
  <tr>
    <xsl:for-each select="/root/base">
      <td>
        <xsl:value-of select="(.//description)[$pos]"/>
      </td>
    </xsl:for-each>
  </tr>
</xsl:template>

But I found a bug in Xalan: When using <xsl:value-of 
select=".//description[$pos]"/>, I already get the wanted result.



But when I read in the spec



"For example

  appendix//ulist/item[position()=1]

matches a node if and only if all of the following are true:

* ...

* evaluating the PredicateExpr position()=1 with the node as context 
node and the *siblings* of the node that are item elements as the 
context node list yields true

* ..."



I suspect this behaviour is wrong, isn't it?



Regards,



Joerg



should be transformed into:



<table>
    <tr>
        <td>some_desc1</td>
        <td>some_desc1</td>
    </tr>
    <tr>
        <td>some_desc2</td>
        <td>some_add_desc2</td>
    </tr>
    <tr>
        <td>some_add_desc3</td>
        <td>some_desc3</td>
    </tr>
    <tr>
        <td>some_add_desc4</td>
        <td>some_desc4</td>
    </tr>
    <tr>
        <td></td>
        <td>some_add_desc5</td>
    </tr>
</table>




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


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent