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: Forming a Table


<?xml version="1.0" encoding="ISO-8859-1"?> 
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="text" />

<xsl:template match="XEX-data">
  <xsl:text>progressive_velocity  Corresponding time&#xA;</xsl:text>
  <xsl:for-each select="output">
    <xsl:value-of select="concat('        ', progressive_vel, '
', corresp_time, '&#xA;')" />
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

Jarno

 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]