[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: math calculations between successive siblings

Subject: RE: math calculations between successive siblings
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 11 Oct 2000 15:18:55 +0100
math calculations
> I would like to insert
> filler rows of the appropriate height between the 'event' rows so that
> the resulting table scales appropriately. 

> fillheight = propconstant*(node[i].starttime - (node[i-1].starttime +
> node[i-1].duration))

<xsl:variable name="fillheight">
  <xsl:choose>
  <xsl:when test="preceding-sibling::event">
    <xsl:value-of select="starttime - (preceding-sibling::event/starttime +
preceding-sibling::event/duration)"/>
  </xsl:when>
  <xsl:otherwise>0</xsl:otherwise>
</xsl:variable>

Mike Kay

> I have XML like the following:
> 
> <event>
>     <starttime>9</starttime>
>     <duration>3</duration>
> </event>
> <event>
>     <starttime>13</starttime>
>     <duration>1</duration>
> </event>
> 
> 
> How do I get a template to communicate with future instantiations of
> itself

You don't, you write a function that does a calculation taking its input
from nodes of the source tree.

> I haven't been able to get variables to work

You're not yet another Microsoft victim, are you?

Mike Kay
> 


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.